Skip to content

Commit

Permalink
Merge pull request #142 from xg-wang/master
Browse files Browse the repository at this point in the history
remove debugger
  • Loading branch information
rwjblue authored May 28, 2018
2 parents e6614c8 + b3ed06f commit b1ae0c8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ Babel.prototype.baseDir = function() {
};

Babel.prototype.transform = function(string, options) {
debugger;
return transformString(string, options, {
throwUnlessParallelizable: this.throwUnlessParallelizable
});
Expand Down
2 changes: 0 additions & 2 deletions lib/parallel-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,6 @@ function serializeOptions(options) {

function transformString(string, babelOptions, buildOptions) {
const isParallelizable = transformIsParallelizable(babelOptions);
debugger;

if (buildOptions !== null && typeof buildOptions === 'object' && buildOptions.throwUnlessParallelizable && !isParallelizable) {
throw new Error('BroccoliBabelTranspiler was configured to `throwUnlessParallelizable` and was unable to parallelize an plugin. Please see: https://github.com/babel/broccoli-babel-transpiler#parallel-transpilation for more details');
}
Expand Down

0 comments on commit b1ae0c8

Please sign in to comment.