This repository was archived by the owner on Oct 4, 2023. It is now read-only.
This repository was archived by the owner on Oct 4, 2023. It is now read-only.
run build error #1085
Open
Description
Found an issue or bug with electron-vue? Tell me all about it!
Questions regarding how to use electron
or vue
are likely to be closed as they are not direct issues with this boilerplate. Please seek solutions from official documentation or their respective communities.
Describe the issue / bug.
/Users/xxx/my-project/.electron-vue/build.js:45
const tasks = new Listr (
^
Syntax Error: Identifier 'tasks' has already been declared
How can I reproduce this problem?
npm install -g vue-cli
vue init simulatedgreg/electron-vue my-project
cd my-project
npm install
npm run build
If visual, provide a screenshot.
#
Tell me about your development environment.
- Node version: v14.15.4
- NPM version: v6.14.10
- vue-cli version: 2.9.6
- Operating System: darwin
If you are looking to suggest an enhancement or feature, then feel free to remove everything above.
variable tasks declared twice in bulid.js
Activity
igo9go commentedon May 26, 2021
the same error
gigouni commentedon Jun 2, 2021
Temp solution may be found in #1089 (comment)
happy-func commentedon Jun 11, 2021
its seems because this
you can remove this code from 37 to 41
then your project will be successful build
gigouni commentedon Jun 18, 2021
I change from node 12 to node 14.17.1 and now it works for the same generated electron-vue project, without removing the tasks @happy-func
happy-func commentedon Jun 21, 2021
its Grammatical errors,need fix it anyway
andotorg commentedon Aug 15, 2021
https://github.com/andotorg/electron-vue-app-template
这种方式才是最好用的方式
alex-jaimes commentedon Oct 14, 2021
it works by commenting the code as @happy-func said
Node v14.15.4