Pārlūkot izejas kodu

Remove unnecessary paths to executables in npm scripts

npm scripts will use the executables in `node_modules/.bin` by default: https://docs.npmjs.com/misc/scripts
Mohsen Azimi 9 gadi atpakaļ
vecāks
revīzija
9fecd471a8
1 mainītis faili ar 3 papildinājumiem un 3 dzēšanām
  1. 3 3
      package.json

+ 3 - 3
package.json

@@ -6,9 +6,9 @@
   "author": "Microsoft Corporation",
   "license": "MIT",
   "scripts": {
-    "simpleserver": "node_modules/.bin/http-server -c-1 ../",
-    "release": "node_modules/.bin/gulp release",
-    "website": "node_modules/.bin/gulp website"
+    "simpleserver": "http-server -c-1 ../",
+    "release": "gulp release",
+    "website": "gulp website"
   },
   "repository": {
     "type": "git",