Markus Kramer
9c5c6df64f
replaced calls to Object.assign with objectAssign to support node 0.12.x ( #3080 )
2016-09-30 09:24:05 -05:00
Tobias Koppers
ec262a4007
refactoring: moved parser instancation into NormalModuleFactory
...
breaking change: compiler.parser must no longer be used. Use this instead:
``` js
compiler.plugin("compilation", function(compilation, params) {
params.normalModuleFactory.plugin("parser", function(parser, parserOptions) {
parser.plugin(/* ... */);
});
});
```
required for #2978
2016-09-15 00:22:10 +02:00
Tobias Koppers
ce642eced6
reverted module.e to module.exports
...
because it causes issues with modules that define
exports on the module object
2016-04-21 23:50:40 +02:00
Tobias Koppers
902220a0ea
smaller bundles by using module.e instead of module.exports
...
same for module.loaded and module.id
2016-02-13 13:11:34 +01:00
Tobias Koppers
1c961afe7b
fixed small issues with new loader-runner
2015-12-30 16:39:10 +01:00
Tobias Koppers
805f558cc6
Merge branch 'webpack-1'
...
Conflicts:
package.json
2015-11-24 08:28:39 +01:00
曹柯
f770eaebda
change space to tab
2015-11-21 01:10:39 +08:00
曹柯
4fe6145f8c
fix windows cross driver path not found issue
2015-11-21 01:07:43 +08:00
Tobias Koppers
3201dc333d
Merge branch 'webpack-1'
...
Conflicts:
lib/NormalModuleFactory.js
package.json
2015-11-13 21:58:38 +01:00
Tobias Koppers
8d10b228a0
force relative path for "module" require
...
fixes #1596
2015-11-10 21:26:47 +01:00
Tobias Koppers
72e8dd0147
Merge pull request #861 from webpack/webpack-2
...
Webpack 2
2015-11-06 01:12:38 +01:00
WuCY
83143d69ca
Null case
2015-10-05 23:32:20 -07:00
WuCY
7eb3555844
Fix the absolute path used in NodeStuffPlugin
2015-08-08 15:32:33 -07:00
Tobias Koppers
431a4c791c
Merge branch 'master' into webpack-2
...
Conflicts:
hot/dev-server.js
hot/only-dev-server.js
hot/poll.js
hot/signal.js
lib/ChunkTemplate.js
lib/HotModuleReplacement.runtime.js
lib/HotModuleReplacementPlugin.js
lib/JsonpMainTemplatePlugin.js
lib/MainTemplate.js
lib/NormalModule.js
lib/Parser.js
lib/RecordIdsPlugin.js
lib/WebpackOptionsApply.js
lib/dependencies/RequireEnsureDependency.js
lib/node/OldNodeWatchFileSystem.js
lib/optimize/OccurrenceOrderPlugin.js
package.json
2015-07-17 09:30:37 +02:00
Tobias Koppers
f7d799adb4
rebeautify without spacing after keyword
2015-07-16 00:19:23 +02:00
Avi Haiat
0a340f2b1a
feat(app): Beautify all lib files
2015-07-13 01:20:09 +03:00
Avi Haiat
daff7440a6
feat(app): Fix some obvious lint errors and warnings
2015-07-08 15:52:41 +03:00
Tobias Koppers
2245c4acca
Promise based chunk loading API
...
don't flag entry module with `0` id anymore
use extra argument in chunk instead
this allows to require entry points
2015-06-13 11:45:28 +02:00
Tobias Koppers
cebd3b9722
added linting
2015-04-23 23:55:50 +02:00
Taylor Brown
d661eb199d
Fix: setConstant and setModuleConstant now function correctly again.
...
Previously, __filename, __dirname, and other constants were broken. This was due to
the refactor of setConstant and setModuleConstant, and the reuse of the variable name "expr"
2014-07-04 12:13:44 +02:00
Tobias Koppers
d80cdcefac
Code Quality
2014-06-24 18:53:32 +02:00
Tobias Koppers
a70f91499a
Allow mixing different webpack versions
2014-06-18 10:59:54 +02:00
Tobias Koppers
a134fae430
require.extension should translate to undefined
...
fixes #209
2014-03-19 23:27:18 +01:00
Tobias Koppers
0fea43b4cb
rename generated require to __webpack_require__
...
fixes #141
fixes RubenVerborgh/N3.js#18
2014-03-03 14:56:17 +01:00
Tobias Koppers
3170b76b22
webpack 1.0 beta
...
moved many options to plugins
#113
2013-12-17 23:21:49 +01:00
Tobias Koppers
392c6db063
more useful error when using require.extensions #104
2013-10-11 10:42:25 +02:00
Tobias Koppers
55149353d4
fixed little bug
2013-05-14 13:55:06 +02:00
Tobias Koppers
c4140aac51
moved ConsolePlugin into NodeSourcePlugin
2013-02-26 13:31:05 +01:00
Tobias Koppers
2183f05db8
added __resourceQuery, __dir/__filename compile time constant
2013-02-16 22:23:22 +01:00
Tobias Koppers
3dc62749a2
moved webworker template, added node.js template #57
2013-02-13 17:00:07 +01:00