Skip to content

Commit

Permalink
Merge pull request #54 from bantic/bantic/add-debug-info-to-compile-m…
Browse files Browse the repository at this point in the history
…essage

Add message indicating when crate is compiled in development mode
  • Loading branch information
xtuc authored Mar 6, 2019
2 parents b26fc43 + 27c024d commit ec51e56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class WasmPackPlugin {
}

_compile() {
info('ℹ️ Compiling your crate...\n');
info(`ℹ️ Compiling your crate in ${this.isDebug ? 'development' : 'release'} mode...\n`);

return spawnWasmPack({
isDebug: this.isDebug,
Expand Down

0 comments on commit ec51e56

Please sign in to comment.