You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.5 KiB
52 lines
1.5 KiB
const { resolve } = require("path"); |
|
const { existsSync, mkdirSync, readFileSync, writeFileSync } = require("fs"); |
|
const rimraf = require("rimraf"); |
|
const concat = require("concat"); |
|
const glob = require("glob"); |
|
const { config } = require("../../webpack/attachments"); |
|
|
|
const dest = resolve(__dirname, '../../dist'); |
|
|
|
const $dest = resolve(dest, './2.0'); |
|
|
|
if (!existsSync($dest)) { |
|
mkdirSync($dest); |
|
} |
|
|
|
const deleteList = [ |
|
"fineui_without_jquery_polyfill.css", |
|
"font.js", |
|
"font.js.map", |
|
"resource.js", |
|
"resource.js.map", |
|
"2.0/fineui_without_normalize.js", |
|
"2.0/fineui_without_normalize.js.map", |
|
"2.0/fineui_without_normalize.min.js", |
|
"2.0/fineui_without_normalize.min.js.map", |
|
"fineui_without_normalize.min.js", |
|
"fineui_without_normalize.min.js.map", |
|
].concat(glob.sync("dist/**/*.css.map").map(name => name.replace("dist/", ""))); |
|
|
|
deleteList.forEach(filename => { |
|
const sourcefile = resolve(dest, `./${filename}`); |
|
|
|
rimraf(sourcefile, () => { |
|
console.log(`${sourcefile} deleted`); |
|
}); |
|
}); |
|
|
|
const fileList = ['demo.js', 'fineui.js', '2.0/fineui.js', 'core.js']; |
|
fileList.forEach(filename => { |
|
const sourcefile = resolve(dest, `./${filename}`); |
|
|
|
const paths = filename.split("/"); |
|
|
|
const name = paths[paths.length - 1]; |
|
|
|
const content = `${readFileSync(sourcefile, { encoding: 'utf8' })} |
|
//# sourceMappingURL=./${name}.map`; |
|
|
|
writeFileSync(sourcefile, content); |
|
}); |
|
|
|
concat(config, resolve(dest, "resource.js"));
|
|
|