Skip to content

Commit

Permalink
feat: v12
Browse files Browse the repository at this point in the history
  • Loading branch information
bennymeg committed Feb 4, 2022
1 parent 753997a commit f420430
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"build": "nx run nx-electron:build",
"link": "npm link ./dist/packages/nx-electron/",
"test": "nx run nx-electron:test",
"publish": "cd dist/packages/nx-electron && npm publish --tag beta",
"publish": "cd dist/packages/nx-electron && npm publish",
"publish:alpha": "cd dist/packages/nx-electron && npm publish --tag alpha",
"publish:beta": "cd dist/packages/nx-electron && npm publish --tag beta",
"release": "cd packages/nx-electron && npm run release"
},
"private": true,
Expand Down
8 changes: 6 additions & 2 deletions packages/nx-electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nx-electron",
"version": "12.0.0-beta.4",
"version": "12.0.0",
"main": "src/index.js",
"description": "Electron Plugin for Nx",
"author": "Benny Megidish",
Expand All @@ -26,7 +26,11 @@
"test": "nx test nx-electron",
"build": "nx build nx-electron",
"release": "standard-version",
"postrelease": "git push --follow-tags && npm run build && cd ../../dist/packages/nx-electron && npm publish --tag beta"
"release:alpha": "standard-version",
"release:beta": "standard-version",
"postrelease": "git push --follow-tags && npm run build && cd ../../dist/packages/nx-electron && npm publish",
"postrelease:alpha": "git push --follow-tags && npm run build && cd ../../dist/packages/nx-electron && npm publish --tag alpha",
"postrelease:beta": "git push --follow-tags && npm run build && cd ../../dist/packages/nx-electron && npm publish --tag beta"
},
"keywords": [
"nx",
Expand Down
4 changes: 2 additions & 2 deletions packages/nx-electron/src/utils/versions.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const nxVersion = '^12.10.0';
export const nxElectronVersion = '^12.0.0-beta.4';
export const electronVersion = '^16.0.2';
export const nxElectronVersion = '^12.0.0';
export const electronVersion = '^17.0.0';
export const electronBuilderVersion = '^22.14.5';
export const rimrafVersion = '^3.0.2';
export const exitZeroVersion = '^1.0.1';

0 comments on commit f420430

Please sign in to comment.