Skip to content

Commit

Permalink
v12 beta 0
Browse files Browse the repository at this point in the history
  • Loading branch information
bennymeg committed Dec 28, 2021
1 parent d7fa2fa commit 2292270
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Nx Electron provides a set of power ups on [Nx](https://nx.dev) for developing c
This module is based on Nx, you will need to [set up an Nx workspace](https://nx.dev/web/getting-started/getting-started) before you can use nx-electron.

```bash
npx create-nx-workspace@11
npx create-nx-workspace@12
```

You should also create a frontend project in you workspace (in any nx supported framework you like) for you electron app.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"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 alpha",
"publish": "cd dist/packages/nx-electron && npm publish --tag beta",
"release": "cd packages/nx-electron && npm run release"
},
"private": true,
Expand Down
4 changes: 2 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-alpha.7",
"version": "12.0.0-beta.0",
"main": "src/index.js",
"description": "Electron Plugin for Nx",
"author": "Benny Megidish",
Expand All @@ -24,7 +24,7 @@
"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 alpha"
"postrelease": "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-alpha.4';
export const electronVersion = '^16.0.0';
export const nxElectronVersion = '^12.0.0-beta.0';
export const electronVersion = '^16.0.2';
export const electronBuilderVersion = '^22.14.5';
export const rimrafVersion = '^3.0.2';
export const exitZeroVersion = '^1.0.1';

0 comments on commit 2292270

Please sign in to comment.