We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Step 2 of the deployment instructions states the following:
Install npm and run npm install via command line then run npm run build.
The only commands define for run in package.json are the following:
package.json
"scripts": { "start": "npm-run-all --parallel watch:sass watch:ts", "copy:node_modules": "./node_modules/.bin/cpx './node_modules/@esri/**/*.js' app", "watch:ts": "tsc --watch", "build:ts": "tsc", "build:sass": "./node_modules/.bin/node-sass styles/main.scss styles/main.css", "watch:sass": "./node_modules/.bin/node-sass --watch styles/main.scss styles/main.css", "deploy": "npm run build:sass & npm run build:ts & npm run copy:node_modules" },
Is that safe to assume that the command to run should be npm run deploy, which run all the build commands?
npm run deploy
The text was updated successfully, but these errors were encountered:
Fixes Esri#8
af3b160
6a831b8
No branches or pull requests
Step 2 of the deployment instructions states the following:
The only commands define for run in
package.json
are the following:Is that safe to assume that the command to run should be
npm run deploy
, which run all the build commands?The text was updated successfully, but these errors were encountered: