-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vue create
does only create package.json & package-lock.json
#3669
Labels
Comments
Possibly related to #3664 |
baermathias
changed the title
vue create does only create package.json & package-lock.json
Mar 19, 2019
vue create
does only create package.json & package-lock.json
Setting NODE_ENV to development solves the issue: But then another error appears:
|
Solved it by changing the following setting in
to:
|
FYI it's due to the release of babel v7.4.0 and is fixed in v7.4.1 |
This was referenced Aug 18, 2021
This was referenced Sep 12, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Version
3.5.1
Environment info
Steps to reproduce
Install vue:
npm install -g @vue/cli
create project:
vue create projectname
go to project dir and run:
cd projectname
npm run serve
What is expected?
A running project
What is actually happening?
Getting error message:
npm ERR! missing script: serve
vue has only created 3 files after
vue create projectname
: package.json, package-lock.json, README.mdIf I try to create the project with
vue ui
, the same files are being created but a different error message in the browser:NO_MODULES
The text was updated successfully, but these errors were encountered: