chore(starters): unify npm scripts in starters (#11285)

This commit is contained in:
GatsbyJS Bot
2019-01-31 15:56:22 +00:00
parent 917ba66bd6
commit cc4803de00
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -48,7 +48,6 @@ A quick look at the top-level files and directories you'll see in a Gatsby proje
├── node_modules
├── src
├── .gitignore
├── .prettierrc
├── gatsby-browser.js
├── gatsby-config.js
├── gatsby-node.js
+1 -1
View File
@@ -5,9 +5,9 @@
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
},