Update cli template file

This commit is contained in:
pengfei.zhou 2021-08-31 11:59:02 +08:00 committed by osborn
parent ac62a0f7fc
commit 612e5a4a07

View File

@ -1,87 +1,88 @@
import resolve from '@rollup/plugin-node-resolve' import resolve from "@rollup/plugin-node-resolve";
import commonjs from '@rollup/plugin-commonjs' import commonjs from "@rollup/plugin-commonjs";
import bundles from './build/index' import bundles from "./build/index";
import fs from 'fs' import fs from "fs";
import path from 'path' import path from "path";
import buble from '@rollup/plugin-buble' import buble from "@rollup/plugin-buble";
import json from "@rollup/plugin-json" import json from "@rollup/plugin-json";
import image from '@rollup/plugin-image' import image from "@rollup/plugin-image";
function searchImages(dir, images) { function searchImages(dir, images) {
const files = fs.readdirSync(dir) const files = fs.readdirSync(dir);
files.forEach((item, index) => { files.forEach((item, index) => {
var fullPath = path.join(dir, item) var fullPath = path.join(dir, item);
const stat = fs.statSync(fullPath) const stat = fs.statSync(fullPath);
if (stat.isDirectory()) { if (stat.isDirectory()) {
searchImages(path.join(dir, item), images) searchImages(path.join(dir, item), images);
} else { } else {
if(fullPath.endsWith('.png')) { if (fullPath.endsWith(".png")) {
images.push(fullPath) images.push(fullPath);
} }
} }
}) });
return images return images;
} }
const allImages = [] const allImages = [];
searchImages('src', allImages) searchImages("src", allImages);
function mkdirsSync(dirname) { function mkdirsSync(dirname) {
if (fs.existsSync(dirname)) { if (fs.existsSync(dirname)) {
return true return true;
} else { } else {
if (mkdirsSync(path.dirname(dirname))) { if (mkdirsSync(path.dirname(dirname))) {
fs.mkdirSync(dirname) fs.mkdirSync(dirname);
return true return true;
} }
} }
} }
allImages.forEach((value) => { allImages.forEach((value) => {
let path = __dirname + '/build/' + value let path = __dirname + "/build/" + value;
let index = path.lastIndexOf('/') let index = path.lastIndexOf("/");
mkdirsSync(path.substring(0, index)) mkdirsSync(path.substring(0, index));
fs.copyFile(__dirname + '/' + value, __dirname + '/build/' + value, error => {
console.log(error)
})
})
fs.copyFile(
__dirname + "/" + value,
__dirname + "/build/" + value,
(error) => {
console.log(error);
}
);
});
function readDirs(dirPath, files) { function readDirs(dirPath, files) {
if (fs.statSync(dirPath).isDirectory()) { if (fs.statSync(dirPath).isDirectory()) {
fs.readdirSync(dirPath).forEach(e => { fs.readdirSync(dirPath).forEach((e) => {
readDirs(path.join(dirPath, e), files) readDirs(path.join(dirPath, e), files);
}) });
} else { } else {
for (let bundle of bundles) { for (let bundle of bundles) {
if (dirPath.match(new RegExp(`^${bundle}`))) { if (dirPath.match(new RegExp(`^${bundle}`))) {
files.push(dirPath) files.push(dirPath);
break;
} }
} }
} }
} }
const dirs = fs.readdirSync(".").filter((e) => {
const dirs = fs.readdirSync('.')
.filter(e => {
for (let bundle of bundles) { for (let bundle of bundles) {
if (bundle.match(new RegExp(`^${e}/`))) { if (bundle.match(new RegExp(`^${e}/`))) {
return true return true;
} }
} }
return false return false;
}) });
const allFiles = [] const allFiles = [];
dirs.forEach(e => { dirs.forEach((e) => {
readDirs(e, allFiles) readDirs(e, allFiles);
}) });
export default export default allFiles
allFiles .map((e) => e.replace(".ts", ""))
.map(e => e.replace('.ts', '')) .map((bundle) => {
.map(bundle => {
return { return {
input: `build/${bundle}.js`, input: `build/${bundle}.js`,
output: { output: {
@ -95,13 +96,15 @@ export default
json(), json(),
image(), image(),
], ],
external: ['reflect-metadata', 'doric'], external: ["reflect-metadata", "doric"],
onwarn: function (warning) { onwarn: function (warning) {
if (warning.code === 'THIS_IS_UNDEFINED') { return } if (warning.code === "THIS_IS_UNDEFINED") {
console.warn(warning.message) return;
} }
} console.warn(warning.message);
}) },
};
});
// If need ES5 support enable following configs // If need ES5 support enable following configs
// .concat( // .concat(
// allFiles // allFiles