Skip to content

Commit

Permalink
Include -O3 to gulp-utils
Browse files Browse the repository at this point in the history
Fixes #33
  • Loading branch information
vgrichina committed May 2, 2019
1 parent 12b8f63 commit f8a9661
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gulp-utils.js
Expand Up @@ -12,6 +12,7 @@ function compile(inputFile, outputFile, callback) {
const asc = getAsc();
asc.main([
inputFile,
"-O3",
"--baseDir", "assembly",
"--binaryFile", outputFile,
"--sourceMap",
Expand Down Expand Up @@ -74,4 +75,4 @@ function getAsc() {
return asc;
}

module.exports = { generateBindings, compile };
module.exports = { generateBindings, compile };

0 comments on commit f8a9661

Please sign in to comment.