mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
fix: 修复 jssdk 异步加载 input-color 问题
This commit is contained in:
parent
5301cac8ee
commit
14afe96bb8
34
fis-conf.js
34
fis-conf.js
@ -37,24 +37,24 @@ Resource.extend({
|
||||
const pkgNode = self.getNode(item.pkg, 'pkg');
|
||||
item.pkg = `${versionHash}-${item.pkg}`;
|
||||
|
||||
if (Array.isArray(item.deps) && pkgNode) {
|
||||
item.deps = item.deps.filter(
|
||||
dep =>
|
||||
!pkgNode.has.find(id => {
|
||||
const node = self.getNode(id);
|
||||
const file = self.getFileById(id);
|
||||
const moduleId =
|
||||
(node.extras && node.extras.moduleId) ||
|
||||
(file && file.moduleId) ||
|
||||
id.replace(/\.js$/i, '');
|
||||
// if (Array.isArray(item.deps) && pkgNode) {
|
||||
// item.deps = item.deps.filter(
|
||||
// dep =>
|
||||
// !pkgNode.has.find(id => {
|
||||
// const node = self.getNode(id);
|
||||
// const file = self.getFileById(id);
|
||||
// const moduleId =
|
||||
// (node.extras && node.extras.moduleId) ||
|
||||
// (file && file.moduleId) ||
|
||||
// id.replace(/\.js$/i, '');
|
||||
|
||||
return moduleId === dep;
|
||||
})
|
||||
);
|
||||
if (!item.deps.length) {
|
||||
delete item.deps;
|
||||
}
|
||||
}
|
||||
// return moduleId === dep;
|
||||
// })
|
||||
// );
|
||||
// if (!item.deps.length) {
|
||||
// delete item.deps;
|
||||
// }
|
||||
// }
|
||||
}
|
||||
});
|
||||
Object.keys(map.pkg).forEach(function (key) {
|
||||
|
Loading…
Reference in New Issue
Block a user