Skip to content

Commit 6db88dd

Browse files
committed
update README to note requirement of @vue/[email protected] or greater
1 parent c36f54d commit 6db88dd

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

README.md

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A Vue Cli 3 plugin for Electron with no required configuration that uses [Electr
44

55
**IMPORTANT: Your app must be created with Vue-CLI 3 (vue create my-app), will not work with Vue-CLI 2 (vue init webpack my-app)!**
66

7-
**IMPORTANT: This plugin only works with @vue/cli-service@3.0.0-beta.9 or lower, not with beta.10 or greater. Set @vue/cli-service to 3.0.0-beta.9 in the devDependencies of your package.json.**
7+
**IMPORTANT: This plugin only works with @vue/cli-service@3.0.0-beta.10 or greater, not with beta.9 or lower. Set @vue/cli-service to ^3.0.0-beta.10 in the devDependencies of your package.json if build/serve:electron fails. If you still need beta.9 support, use v0.2.5 of vue-cli-plugin-electron-builder.**
88

99
## Quick Start:
1010

@@ -40,33 +40,19 @@ or with NPM:
4040

4141
```
4242
├── dist/ # where electron-webpack outputs compiled files (this will overwrite normal build files)
43-
4443
│ └── ...
45-
4644
├── dist_electron/
47-
4845
│ ├── [target platform]-unpacked # unpacked Electron app (main exe and supporting files)
49-
5046
│ ├── [application name] setup [version].[target binary (exe|dmg|rpm...)] # installer for Electron app
51-
5247
│ └── ...
53-
5448
├── src/
55-
5649
│ ├─── main/
57-
5850
│ │ └── [main|index].[js|ts] # Electron entry file (for Electron's main process)
59-
6051
│ ├── [main|index].[js|ts] # your app's entry file (for Electron's render process)
61-
6252
│ └── ...
63-
6453
├── electron-builder.[json|yml] # electron-builder configuration options (can also be placed in package.json under the "build" key)
65-
6654
├── electron-webpack.[json|yml] # electron-webpack configuration options (can also be placed in package.json under the "electronWebpack" key)
67-
6855
├── package.json # your app's package.json file
69-
7056
├── ...
7157
```
7258

0 commit comments

Comments
 (0)