Skip to content

Commit

Permalink
2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewp committed Sep 14, 2018
1 parent f65d33b commit ff4841f
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 11 deletions.
3 changes: 2 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,8 @@ addStealExtension(function(loader) {
babelPlugins.push(treeShakePlugin.bind(null, loader, load));
}
var code = babel.transform(load.source, {
plugins: babelPlugins
plugins: babelPlugins,
compact: false
}).code;

// If everything is tree shaken still mark as ES6
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "steal",
"description": "Gets JavaScript.",
"version": "2.1.2",
"version": "2.1.3",
"author": {
"name": "Bitovi",
"email": "[email protected]",
Expand Down
3 changes: 2 additions & 1 deletion steal-with-promises.js
Original file line number Diff line number Diff line change
Expand Up @@ -7381,7 +7381,8 @@ addStealExtension(function(loader) {
babelPlugins.push(treeShakePlugin.bind(null, loader, load));
}
var code = babel.transform(load.source, {
plugins: babelPlugins
plugins: babelPlugins,
compact: false
}).code;

// If everything is tree shaken still mark as ES6
Expand Down
4 changes: 2 additions & 2 deletions steal-with-promises.production.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion steal.js
Original file line number Diff line number Diff line change
Expand Up @@ -6111,7 +6111,8 @@ addStealExtension(function(loader) {
babelPlugins.push(treeShakePlugin.bind(null, loader, load));
}
var code = babel.transform(load.source, {
plugins: babelPlugins
plugins: babelPlugins,
compact: false
}).code;

// If everything is tree shaken still mark as ES6
Expand Down
4 changes: 2 additions & 2 deletions steal.production.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion test/steal-with-promises.js
Original file line number Diff line number Diff line change
Expand Up @@ -7381,7 +7381,8 @@ addStealExtension(function(loader) {
babelPlugins.push(treeShakePlugin.bind(null, loader, load));
}
var code = babel.transform(load.source, {
plugins: babelPlugins
plugins: babelPlugins,
compact: false
}).code;

// If everything is tree shaken still mark as ES6
Expand Down
4 changes: 2 additions & 2 deletions test/steal-with-promises.production.js

Large diffs are not rendered by default.

0 comments on commit ff4841f

Please sign in to comment.