Skip to content

Commit 0c7675c

Browse files
committed
prep for v1 being default version
1 parent fbbb429 commit 0c7675c

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Open a terminal in the directory of your app created with Vue-CLI 3.
1414

1515
Then, install and invoke the generator of vue-cli-plugin-electron-builder by running:
1616

17-
`vue add electron-builder@alpha`
17+
`vue add electron-builder`
1818

1919
That's It! You're ready to go!
2020

@@ -56,11 +56,15 @@ or with NPM:
5656
├── ...
5757
```
5858

59+
### Is this plugin production ready?
60+
61+
This plugin is nearly production ready. It has test coverage for everything but the ui interface and proper logging of errors. It needs to be used a little bit more in large applications before it is considered safe to use in a large production environment. Please try it in your app and report any bugs or feature requests.
62+
5963
## Configuration:
6064

6165
### Configuring Electron Builder:
6266

63-
To see avalible options, check out [Electron Builder Configuration Options](https://www.electron.build/configuration/configuration)
67+
To see available options, check out [Electron Builder Configuration Options](https://www.electron.build/configuration/configuration)
6468

6569
They can be placed under the `builderOptions` key in vue-cli-plugin-electron-builder's plugin options in `vue.config.js`
6670

ui.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ module.exports = api => {
8686
match: /vue-cli-service build:electron/,
8787
description: 'Build your app for production with electron-builder',
8888
link:
89-
'https://github.com/nklayman/vue-cli-plugin-electron-builder/tree/v1-dev#build-command',
89+
'https://github.com/nklayman/vue-cli-plugin-electron-builder#build-command',
9090
prompts,
9191
onBeforeRun: ({ answers, args }) => {
9292
// Args
@@ -150,7 +150,7 @@ module.exports = api => {
150150
match: /vue-cli-service serve:electron/,
151151
description: 'Serve your app, launch electron',
152152
link:
153-
'https://github.com/nklayman/vue-cli-plugin-electron-builder/tree/v1-dev#serve-command',
153+
'https://github.com/nklayman/vue-cli-plugin-electron-builder#serve-command',
154154
onBeforeRun: ({ answers, args }) => {
155155
// Tell dev server to send status to dashboard
156156
args.push('--dashboard')

0 commit comments

Comments
 (0)