Explorar el Código

Removing echos as npm (already) shows the commands being executed

Kevin van Zonneveld hace 9 años
padre
commit
b7bc3a4fb9
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      package.json

+ 2 - 2
package.json

@@ -17,8 +17,8 @@
     "watch:css": "nodemon -e src/scss -x \"npm run build:css\"",
     "watch:examples": "cd website && node watch.js",
     "watch:js": "nodemon --watch src -e js --ignore src/scss -x \"npm run build:lib\"",
-    "website:build": "echo \"--> Building site..\" && cd website && node update.js && ./node_modules/.bin/hexo generate",
-    "website:install": "echo \"--> Installing dependencies\" && cd website && npm install",
+    "website:build": "cd website && node update.js && ./node_modules/.bin/hexo generate",
+    "website:install": "cd website && npm install",
     "website:deploy": "./bin/website-deploy",
     "website:preview": "npm run website:build && cd website && ./node_modules/.bin/hexo server --debug"
   },