Skip to content
This repository has been archived by the owner on Jul 9, 2021. It is now read-only.

Commit

Permalink
[removed] an optimization that could result in errors for negligible …
Browse files Browse the repository at this point in the history
…gains
  • Loading branch information
thealjey committed Jan 8, 2016
1 parent 3b9ec58 commit 18ba82f
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion docs/JSCompiler.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,6 @@ <h1 class="page-title">Source: JSCompiler.js</h1>
entry: inPath,
output: {path: dirname(outPath), filename: basename(outPath)},
module: {
noParse: /browser/,
loaders: [{
test: /\.js$/,
exclude: /node_modules/,
Expand Down
2 changes: 1 addition & 1 deletion docs/quicksearch.html

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion lib/JSCompiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,6 @@ var JSCompiler = exports.JSCompiler = function (_Compiler) {
entry: inPath,
output: { path: (0, _path.dirname)(outPath), filename: (0, _path.basename)(outPath) },
module: {
noParse: /browser/,
loaders: [{
test: /\.js$/,
exclude: /node_modules/,
Expand Down
1 change: 0 additions & 1 deletion src/JSCompiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ export class JSCompiler extends Compiler {
entry: inPath,
output: {path: dirname(outPath), filename: basename(outPath)},
module: {
noParse: /browser/,
loaders: [{
test: /\.js$/,
exclude: /node_modules/,
Expand Down
1 change: 0 additions & 1 deletion test/JSCompiler.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ describe('JSCompiler', () => {
entry: '/path/to/the/input/file.js',
output: {path: '/path/to/the/output', filename: 'file.js'},
module: {
noParse: /browser/,
loaders: [{
test: /\.js$/,
exclude: /node_modules/,
Expand Down

0 comments on commit 18ba82f

Please sign in to comment.