cli:update config
This commit is contained in:
parent
b6f7588321
commit
b0c8a91f65
@ -13,9 +13,12 @@
|
|||||||
"doric": "0.2.3",
|
"doric": "0.2.3",
|
||||||
"reflect-metadata": "^0.1.13",
|
"reflect-metadata": "^0.1.13",
|
||||||
"rollup": "^1.27.14",
|
"rollup": "^1.27.14",
|
||||||
"@rollup/plugin-commonjs": "^11.0.0",
|
|
||||||
"@rollup/plugin-node-resolve": "^6.0.0",
|
|
||||||
"tslib": "^1.10.0",
|
"tslib": "^1.10.0",
|
||||||
"typescript": "^3.7.4"
|
"typescript": "^3.7.4"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@rollup/plugin-commonjs": "^11.0.1",
|
||||||
|
"@rollup/plugin-node-resolve": "^7.0.0",
|
||||||
|
"@rollup/plugin-buble": "^0.21.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -3,6 +3,7 @@ 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';
|
||||||
|
|
||||||
function readDirs(dirPath, files) {
|
function readDirs(dirPath, files) {
|
||||||
if (fs.statSync(dirPath).isDirectory()) {
|
if (fs.statSync(dirPath).isDirectory()) {
|
||||||
@ -34,25 +35,49 @@ 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: {
|
||||||
format: "cjs",
|
format: "cjs",
|
||||||
file: `bundle/${bundle}.js`,
|
file: `bundle/${bundle}.js`,
|
||||||
sourcemap: true,
|
sourcemap: true,
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
resolve({ mainFields: ["jsnext"] }),
|
resolve({ mainFields: ["jsnext"] }),
|
||||||
commonjs()
|
commonjs(),
|
||||||
],
|
],
|
||||||
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') { return; }
|
||||||
console.warn(warning.message);
|
console.warn(warning.message);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}).concat(
|
||||||
})
|
allFiles
|
||||||
|
.map(e => e.replace('.ts', ''))
|
||||||
|
.map(bundle => {
|
||||||
|
return {
|
||||||
|
input: `build/${bundle}.js`,
|
||||||
|
output: {
|
||||||
|
format: "cjs",
|
||||||
|
file: `bundle/${bundle}.es5.js`,
|
||||||
|
sourcemap: true,
|
||||||
|
},
|
||||||
|
plugins: [
|
||||||
|
resolve({ mainFields: ["jsnext"] }),
|
||||||
|
commonjs(),
|
||||||
|
buble({
|
||||||
|
transforms: { dangerousForOf: true }
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
external: ['reflect-metadata', 'doric'],
|
||||||
|
onwarn: function (warning) {
|
||||||
|
if (warning.code === 'THIS_IS_UNDEFINED') { return; }
|
||||||
|
console.warn(warning.message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}))
|
@ -35,28 +35,6 @@ const allFiles = []
|
|||||||
dirs.forEach(e => {
|
dirs.forEach(e => {
|
||||||
readDirs(e, allFiles)
|
readDirs(e, allFiles)
|
||||||
})
|
})
|
||||||
const outFile = allFiles
|
|
||||||
.map(e => e.replace('.ts', ''))
|
|
||||||
.map(bundle => {
|
|
||||||
return {
|
|
||||||
input: `build/${bundle}.js`,
|
|
||||||
output: {
|
|
||||||
format: "cjs",
|
|
||||||
file: `bundle/${bundle}.js`,
|
|
||||||
sourcemap: true,
|
|
||||||
},
|
|
||||||
plugins: [
|
|
||||||
resolve({ mainFields: ["jsnext"] }),
|
|
||||||
commonjs(),
|
|
||||||
],
|
|
||||||
external: ['reflect-metadata', 'doric'],
|
|
||||||
onwarn: function (warning) {
|
|
||||||
if (warning.code === 'THIS_IS_UNDEFINED') { return; }
|
|
||||||
console.warn(warning.message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
export default
|
export default
|
||||||
allFiles
|
allFiles
|
||||||
.map(e => e.replace('.ts', ''))
|
.map(e => e.replace('.ts', ''))
|
||||||
|
Reference in New Issue
Block a user