mirror of https://github.com/webpack/webpack.git
ignore require.config
This commit is contained in:
parent
b26910f654
commit
a04dbc9b04
|
|
@ -13,6 +13,7 @@ function amdRequireFactory(req) {
|
|||
for(var name in req)
|
||||
amdRequire[name] = req[name];
|
||||
amdRequire.amd = amdRequireFactory.amd;
|
||||
amdRequire.config = function() {/* config is ignored, use webpack options */};
|
||||
return amdRequire;
|
||||
}
|
||||
amdRequireFactory.amd = {};
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "webpack",
|
||||
"version": "0.5.4",
|
||||
"version": "0.5.5",
|
||||
"author": "Tobias Koppers @sokra",
|
||||
"description": "Packs CommonJs/AMD Modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loading of js, json, jade, coffee, css, ... out of the box and more with custom loaders.",
|
||||
"dependencies": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue