-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate to Lerna and Yarn and improve examples (#3)
* Delete pnpm-lock.yaml * Migrate to yarn and lerna * Create yarn.lock * Fix breaking changes * Add routing and create chat page * Improve initialization * Improve example * Add more use cases * Update README.md
- Loading branch information
Showing
35 changed files
with
10,485 additions
and
10,081 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"$schema": "node_modules/lerna/schemas/lerna-schema.json", | ||
"version": "0.0.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "@genexus/chameleon-integrations", | ||
"private": true, | ||
"scripts": { | ||
"start.react-mercury": "cd packages/react-mercury/react && yarn && yarn start", | ||
"start.react-mercury.build": "yarn build.react-mercury.components && cd packages/react-mercury/react && yarn && yarn start", | ||
"build.react-mercury": "yarn && yarn build.react-mercury.components && yarn build.react-mercury.app", | ||
"build.react-mercury.app": "cd packages/react-mercury/react && yarn && yarn build", | ||
"build.react-mercury.components": "cd packages/react-mercury/web-components && yarn && yarn build", | ||
"build.react-mercury.components.watch": "yarn && yarn build.react-mercury.components --watch", | ||
"preview.react-mercury": "yarn build.react-mercury.components && yarn preview.react-mercury.app", | ||
"preview.react-mercury.app": "cd packages/react-mercury/react && yarn && yarn preview" | ||
}, | ||
"workspaces": [ | ||
"packages/config/*", | ||
"packages/react-mercury/*" | ||
], | ||
"devDependencies": { | ||
"@types/node": "^22.7.5", | ||
"lerna": "^8.1.9", | ||
"typescript": "~5.6.3" | ||
}, | ||
"resolutions": { | ||
"@types/react": "18.2.79" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.