RequireJS优化器并不像我在模块上定义包定义,但如果我没有定义包,也找不到模块。
尝试使用requirejs优化器时出现以下错误:
Error: Module loading did not complete for: scripts/simulation.bundle, app_mini, testservice
The following modules share the same URL. This could be a misconfiguration if that URL only has one anonymous module in it:
.../web/dist/scripts/app.bundle.js: app_mini, testservice
我实际上正在使用grunt-contrib-requirejs来优化我的js脚本以进行生产。在添加simulator.bundle
我有3个捆绑包:
这是requirejs grunt任务的modules
选项
[{
name: 'scripts/vendor.bundle',
exclude: [],
override: {
paths: {
angular: 'bower/angular/angular',
jquery: 'bower/jquery/dist/jquery',
ngRoute: "bower/angular-route/angular-route"
},
shim: {
angular: {
exports: 'angular',
deps: ['jquery'] // make jquery dependency - angular will replace jquery lite with full jquery
},
bundles: {
'scripts/app.bundle': ['app_mini', 'testservice'],
},
}
}
},
{
name: 'scripts/simulation.bundle',
exclude: [],
override: {
paths: {},
shim: {},
bundles: {
'scripts/vendor.bundle': ['angular', 'jquery'],
'scripts/app.bundle': ['app_mini', 'testservice']
}
}
},
{
name: 'scripts/app.bundle',
exclude: ['scripts/vendor.bundle'],
override: {
paths: {
app_mini: 'scripts/app.mini',
testservice: 'scripts/features/test.service'
},
shim: {},
bundles: {
'scripts/vendor.bundle': ['angular', 'jquery']
}
}
}
]
simulation.bundle
中的捆绑似乎是问题所在。但是,如果我删除它们,则无法找到文件:
>> Error: ENOENT: no such file or directory, open
>> '...\web\dist\app_mini.js'
>> In module tree:
>> scripts/simulation.bundle
simulation.bundle
只是一个虚拟模块,正在加载angular
和app_mini
:
define(['app_mini', 'angular'], function(app_mini, angular) {
// nothing here
}
无论哪种方式,优化器都无法处理依赖项。如何配置它才能使其正常工作?
答案 0 :(得分:1)
好的,我再次回答我自己的问题,我希望其他人能从我的错误中受益;)
所以我发现的是:
Bundle config仅适用于requireJS而不适用于优化器!
我在配置中定义的捆绑包导致共享相同网址的模块出错。
正确的方法是为所有模块定义所有路径,并明确地按名称排除模块,不应包含在模块中。
例如,app_mini
应该进入app.bundle
,但因为simulation.bundle
中需要它,所以它会被包含在那里,因为排除app.bundle
是不可能的(此时尚未对其进行优化),我们需要直接排除app_mini
。
所以工作配置看起来像这样:(未经测试)
paths: {
angular: 'bower/angular/angular',
jquery: 'bower/jquery/dist/jquery',
ngRoute: "bower/angular-route/angular-route"
app_mini: 'scripts/app.mini',
testservice: 'scripts/features/test.service'
},
shim: {
angular: {
exports: 'angular',
deps: ['jquery'] // make jquery dependency - angular will replace jquery lite with full jquery
}
},
modules: [
{
name: 'scripts/vendor.bundle',
exclude: [],
},
{
name: 'scripts/simulation.bundle',
exclude: [`app_mini`],
},
{
name: 'scripts/app.bundle',
exclude: ['scripts/vendor.bundle'],
}
}]