ソースを参照

Support Windows in gulpfile.js

Nikolai Vavilov 9 年 前
コミット
7ff229fa4e
2 ファイル変更6 行追加2 行削除
  1. 5 1
      js/gulpfile.js
  2. 1 1
      js/package.json

+ 5 - 1
js/gulpfile.js

@@ -1,7 +1,11 @@
 var gulp = require('gulp');
-var exec = require('child_process').exec;
+var execFile = require('child_process').execFile;
 var glob = require('glob');
 
+function exec(command, cb) {
+  execFile('sh', ['-c', command], cb);
+}
+
 var protoc = process.env.PROTOC || '../src/protoc';
 
 gulp.task('genproto_closure', function (cb) {

+ 1 - 1
js/package.json

@@ -13,7 +13,7 @@
     "glob": "~6.0.4"
   },
   "scripts": {
-    "test": "./node_modules/gulp/bin/gulp.js test"
+    "test": "node ./node_modules/gulp/bin/gulp.js test"
   },
   "repository": {
     "type": "git",