mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 15:48:11 -05:00
Fix dev server (npm run dev
) on Windows, fixes #3219
Reference: #3219 Also trim some trailing whitespace.
This commit is contained in:
parent
851e3a092e
commit
08143ce955
1 changed files with 3 additions and 2 deletions
|
@ -42,13 +42,14 @@ exports.config =
|
||||||
onCompile: (files) -> console.log "I feel the need, the need... for speed."
|
onCompile: (files) -> console.log "I feel the need, the need... for speed."
|
||||||
plugins:
|
plugins:
|
||||||
coffeelint:
|
coffeelint:
|
||||||
pattern: /\A\Z/
|
pattern: /\A\Z/
|
||||||
vagrant:
|
vagrant:
|
||||||
watcher:
|
watcher:
|
||||||
usePolling: true
|
usePolling: true
|
||||||
|
|
||||||
server:
|
server:
|
||||||
command: 'nodemon .'
|
# NOTE: This is a temporary workaround for https://github.com/nodejs/node-v0.x-archive/issues/2318
|
||||||
|
command: "#{if process.platform is 'win32' then 'node_modules\\.bin\\nodemon.cmd' else 'nodemon'} ."
|
||||||
|
|
||||||
files:
|
files:
|
||||||
javascripts:
|
javascripts:
|
||||||
|
|
Loading…
Reference in a new issue