You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 2, 2018. It is now read-only.
When I start duo build process with watching enabled, it correctly builds the final file:
λ duo -w index.js
building : index.js
using : compatibility
using : stoj
built : index.js
wrote : index.js
But as soon as I modify index.js, it builds twice, creating a duplicate file nested one level deeper:
building : index.js
using : compatibility
using : stoj
built : index.js
wrote : index.js
building : build\index.js
using : compatibility
using : stoj
built : build\index.js
wrote : index.js
So the file tree than looks like this:
build
├ index.js
└ build
└ index.js
index.js
The next change than creates yet another level, as if directed by Nolan. It doesn't go deeper afterwards tough.
The index.js is just a one line with console.log() and no dependencies.
Environment:
win 8.1
io.js v2.1.0
The text was updated successfully, but these errors were encountered:
@johnruddell index.js is the file being build, and as stated, it contains only a single line of code with console.log in it.
The file is being build with the
λ duo -w index.js
command.
Enabling the watch flag via the CLI (haven't tested it with API) is the key to the issue here. Any subsequent builds triggered by changes in index.js result in nesting.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I start duo build process with watching enabled, it correctly builds the final file:
But as soon as I modify
index.js
, it builds twice, creating a duplicate file nested one level deeper:So the file tree than looks like this:
The next change than creates yet another level, as if directed by Nolan. It doesn't go deeper afterwards tough.
The
index.js
is just a one line withconsole.log()
and no dependencies.Environment:
win 8.1
io.js v2.1.0
The text was updated successfully, but these errors were encountered: