|
|
@ -9,6 +9,7 @@ function sync(patterns) { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const fixJs = "./dist/fix/fix.js"; |
|
|
|
const fixJs = "./dist/fix/fix.js"; |
|
|
|
|
|
|
|
const fixProxyJs = './dist/fix/fix.proxy.js'; |
|
|
|
const fixIEJs = "./dist/fix/fix.ie.js"; |
|
|
|
const fixIEJs = "./dist/fix/fix.ie.js"; |
|
|
|
const fixCompact = "./dist/fix/fix.compact.js"; |
|
|
|
const fixCompact = "./dist/fix/fix.compact.js"; |
|
|
|
const fixIECompact = './dist/fix/fix.compact.ie.js'; |
|
|
|
const fixIECompact = './dist/fix/fix.compact.ie.js'; |
|
|
@ -82,6 +83,7 @@ const basicAttachmentMap = { |
|
|
|
"src/data/**/*.js", |
|
|
|
"src/data/**/*.js", |
|
|
|
]), |
|
|
|
]), |
|
|
|
fix: [fixJs], |
|
|
|
fix: [fixJs], |
|
|
|
|
|
|
|
fixProxy: [fixProxyJs], |
|
|
|
fixIE: [fixIEJs], |
|
|
|
fixIE: [fixIEJs], |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
@ -153,6 +155,18 @@ const fineui = [].concat( |
|
|
|
basicAttachmentMap.ts, |
|
|
|
basicAttachmentMap.ts, |
|
|
|
); |
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const fineuiProxy = [].concat( |
|
|
|
|
|
|
|
basicAttachmentMap.core, |
|
|
|
|
|
|
|
basicAttachmentMap.fixProxy, |
|
|
|
|
|
|
|
basicAttachmentMap.base, |
|
|
|
|
|
|
|
basicAttachmentMap.case, |
|
|
|
|
|
|
|
basicAttachmentMap.widget, |
|
|
|
|
|
|
|
basicAttachmentMap.router, |
|
|
|
|
|
|
|
[fixCompact, workerCompact], |
|
|
|
|
|
|
|
basicAttachmentMap.ui, |
|
|
|
|
|
|
|
basicAttachmentMap.ts, |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
const fineuiIE = [].concat( |
|
|
|
const fineuiIE = [].concat( |
|
|
|
basicAttachmentMap.polyfillIE, |
|
|
|
basicAttachmentMap.polyfillIE, |
|
|
|
basicAttachmentMap.core, |
|
|
|
basicAttachmentMap.core, |
|
|
@ -202,6 +216,7 @@ const demo = [].concat( |
|
|
|
|
|
|
|
|
|
|
|
module.exports = { |
|
|
|
module.exports = { |
|
|
|
fix: fixJs, |
|
|
|
fix: fixJs, |
|
|
|
|
|
|
|
fixProxy: fixProxyJs, |
|
|
|
fixIE: fixIEJs, |
|
|
|
fixIE: fixIEJs, |
|
|
|
lodash: lodashJs, |
|
|
|
lodash: lodashJs, |
|
|
|
font: basicAttachmentMap.font, |
|
|
|
font: basicAttachmentMap.font, |
|
|
@ -209,6 +224,7 @@ module.exports = { |
|
|
|
bundleIE: uniq(bundleIE), |
|
|
|
bundleIE: uniq(bundleIE), |
|
|
|
bundleWithoutNormalize: uniq(bundleWithoutNormalize), |
|
|
|
bundleWithoutNormalize: uniq(bundleWithoutNormalize), |
|
|
|
fineui: uniq(fineui), |
|
|
|
fineui: uniq(fineui), |
|
|
|
|
|
|
|
fineuiProxy: uniq(fineuiProxy), |
|
|
|
fineuiIE: uniq(fineuiIE), |
|
|
|
fineuiIE: uniq(fineuiIE), |
|
|
|
fineuiWithoutJqueryAndPolyfillJs: uniq(fineuiWithoutJqueryAndPolyfillJs), |
|
|
|
fineuiWithoutJqueryAndPolyfillJs: uniq(fineuiWithoutJqueryAndPolyfillJs), |
|
|
|
utils: uniq(basicAttachmentMap.utils), |
|
|
|
utils: uniq(basicAttachmentMap.utils), |
|
|
|