Skip to content

Commit

Permalink
fix(lerna): not using env, set explicitly (#1889)
Browse files Browse the repository at this point in the history
* fix(lerna): not using env, set explicitly

* chore(deps): bump

* chore(deps): bump

* chore(deps): bump
  • Loading branch information
nstuyvesant authored Sep 11, 2024
1 parent 52c6238 commit c47634a
Show file tree
Hide file tree
Showing 9 changed files with 176 additions and 191 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ jobs:
node scripts/update-angular-dependency-version.mjs
- name: Publish to npmjs registry and create Github release
run: npx lerna publish from-git --yes --force-publish
run: |
npm config set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }} -q
npx lerna publish from-git --yes --force-publish
- name: Deploy documentation to Github Pages 🚀
uses: JamesIves/github-pages-deploy-action@v4
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^4.2.19",
"svelte-eslint-parser": "^0.41.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0",
"vue-eslint-parser": "^9.4.3"
},
"release": {
Expand Down
4 changes: 2 additions & 2 deletions packages/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
"eslint": "^9.10.0",
"ng-packagr": "^18.2.1",
"prettier": "^3.3.3",
"typescript": "~5.5.4",
"typescript-eslint": "^8.4.0",
"typescript": "<5.6.0",
"typescript-eslint": "^8.5.0",
"zone.js": "~0.15.0"
},
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@
"publint": "^0.2.10",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.78.0",
"typescript": "^5.5.4",
"typescript": "^5.6.2",
"vite": "^5.4.3",
"vite-plugin-dts": "^4.1.1",
"vite-plugin-dts": "^4.2.1",
"vitest": "^2.0.5"
},
"publishConfig": {
Expand Down
6 changes: 3 additions & 3 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"highlight.js": "^11.10.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.1",
"react-router-dom": "^6.26.2",
"styled-components": "^6.1.13"
},
"devDependencies": {
Expand All @@ -40,8 +40,8 @@
"jsdom": "^25.0.0",
"prettier": "^3.3.3",
"sass": "^1.78.0",
"typedoc": "^0.26.6",
"typescript": "^5.5.4",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"vite": "^5.4.3"
},
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.4",
"typescript": "^5.6.2",
"vite": "^5.4.3",
"vite-plugin-dts": "^4.1.1"
"vite-plugin-dts": "^4.2.1"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"svelte": "^4.2.19",
"svelte-check": "^4.0.1",
"tslib": "^2.7.0",
"typescript": "^5.5.4",
"typescript": "^5.6.2",
"vite": "^5.4.3"
},
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@
"@vitejs/plugin-vue": "^5.1.3",
"eslint": "^9.10.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript": "^5.6.2",
"vite": "^5.4.3",
"vite-plugin-dts": "^4.1.1",
"vite-plugin-dts": "^4.2.1",
"vue": "^3.5.3",
"vue-tsc": "^2.1.6"
},
Expand Down
Loading

0 comments on commit c47634a

Please sign in to comment.