diff options
author | eric thul <thul.eric@gmail.com> | 2016-05-24 07:46:39 -0400 |
---|---|---|
committer | eric thul <thul.eric@gmail.com> | 2016-05-24 07:47:27 -0400 |
commit | cfa924ef0cc802a4187ed0a76b8aa668551f052c (patch) | |
tree | 1ce4712a58f6539e22e6388895a76443a12064c9 /src/index.js | |
parent | ca6262710e2ed6ce6815acd9fe729a0ec5bba1b6 (diff) | |
download | purs-loader-cfa924ef0cc802a4187ed0a76b8aa668551f052c.tar.gz purs-loader-cfa924ef0cc802a4187ed0a76b8aa668551f052c.tar.zst purs-loader-cfa924ef0cc802a4187ed0a76b8aa668551f052c.zip |
Use cross-spawn for windows support
Resolves #50
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js index bd2a35d..6bf1e09 100644 --- a/src/index.js +++ b/src/index.js | |||
@@ -6,7 +6,7 @@ const loaderUtils = require('loader-utils') | |||
6 | const globby = require('globby') | 6 | const globby = require('globby') |
7 | const Promise = require('bluebird') | 7 | const Promise = require('bluebird') |
8 | const fs = Promise.promisifyAll(require('fs')) | 8 | const fs = Promise.promisifyAll(require('fs')) |
9 | const spawn = require('child_process').spawn | 9 | const spawn = require('cross-spawn') |
10 | const path = require('path') | 10 | const path = require('path') |
11 | const retryPromise = require('promise-retry') | 11 | const retryPromise = require('promise-retry') |
12 | 12 | ||