Skip to content

Commit

Permalink
chore: update lerna
Browse files Browse the repository at this point in the history
Update's lerna to latest supported release to see what the impact
is on dependabot issues.
  • Loading branch information
bryans99 committed Oct 13, 2023
1 parent b136e55 commit b97a2cb
Show file tree
Hide file tree
Showing 6 changed files with 1,714 additions and 1,735 deletions.
1 change: 0 additions & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
node-version: 14.x
- uses: c-hive/gha-yarn-cache@v1
- run: yarn
- run: yarn lerna bootstrap
- run: yarn lint
- run: yarn tsc
- run: yarn clean
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ To build the uber extension block follow the following instructions:
1. Create a directory adjacent to the directory this repo resides in called `uberext` (you can use a different directory name but you need to use the `-t` option when running the script).
2. Run `git init` in the directory.
3. Create a remote repo and associate the repo created in step 2 with it.
4. Run `yarn bootstrap` in this repo's root directory. This will initialize all of the example projects.
4. Run `yarn` in this repo's root directory. This will initialize all of the example projects.
5. Run `yarn build` in this repo's root directory. This will build all of the example projects.
6. Run `yarn uberext` in this repo's root directory. This will create the extension block in the directory created in step 1.
7. Navigate to the `uberext` directory.
Expand Down
3 changes: 1 addition & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"packages": ["react/javascript/*", "react/typescript/*", "vanilla/*"],
"npmClient": "yarn",
"version": "independent",
"useWorkspaces": true
"version": "independent"
}
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"vanilla/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"lerna": "lerna",
"clean": "lerna run --parallel clean",
"build": "lerna run --parallel build",
Expand Down Expand Up @@ -42,7 +41,7 @@
"devDependencies": {
"@types/node": "^15.3.0",
"@types/yargs": "^16.0.2",
"lerna": "^4.0.0"
"lerna": "^7.3.0"
},
"dependencies": {
"ts-node": "^9.1.1",
Expand Down
2 changes: 1 addition & 1 deletion scripts/create_uber_extension_project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* of all of the extensions in this repo. To use do the following:
*
* 1. Run yarn - to initialize this project.
* 2. Run yarn bootstrap (to initialize all of the extension projects).
* 2. Run yarn (to initialize all of the extension projects).
* 3. Run yarn build (to compile all of extension projects).
* 4. Create the target directory, the default is ../uberext.
* 5. Run yarn uberext (to create the uber extension project).
Expand Down
Loading

0 comments on commit b97a2cb

Please sign in to comment.