We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bb9f0f commit fa5d16cCopy full SHA for fa5d16c
scripts/build-packed.js
@@ -4,12 +4,13 @@ var pack = spawn('make', ['package']);
4
pack.stderr.setEncoding("utf8");
5
6
pack.stderr.on('data', function (data) {
7
- console.error(data);
+ if (data != "Failed to find module: core/ide") // we can ignore this from dryice
8
+ console.error(data);
9
});
10
11
pack.on('exit', function (code) {
- if (code !== 0) {
12
- console.error('pack process exited with code ' + code);
13
- process.exit(code);
14
- }
+ if (code !== 0) {
+ console.error('pack process exited with code ' + code);
+ process.exit(code);
15
+ }
16
0 commit comments