Skip to content

Commit

Permalink
Add additional missing dependencies
Browse files Browse the repository at this point in the history
- Add `@babel/core` and `@babel/preset-react` to match the webpack-config package
- Revert the `publish-next` workf flow to use `npm ci` since `npm install` did not seem to fix the build failure
  • Loading branch information
kvnlam committed May 6, 2024
1 parent c09e8f9 commit 467c6c8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
git config --local user.email "[email protected]"
git config --local user.name "Osp Rey [CI]"
- run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
- run: npm install
- run: npm ci
- run: npm test
- run: npm run build
- run: ./node_modules/.bin/lerna publish --conventional-commits --conventional-prerelease --pre-dist-tag next --yes
Expand Down
2 changes: 2 additions & 0 deletions packages/Chevron/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion packages/Chevron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
"cross-env": "^7.0.3",
"webpack-cli": "^5.1.4",
"webpack": "^5.91.0",
"@babel/preset-env": "^7.5.5"
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0"
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion packages/handleRichTextBoxKeyEventNavigation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
"devDependencies": {
"cross-env": "^7.0.3",
"webpack-cli": "^5.1.4",
"@babel/preset-env": "^7.5.5"
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0"
}
}

0 comments on commit 467c6c8

Please sign in to comment.