mirror of https://github.com/ColorlibHQ/AdminLTE
🐛 paths.dist.js
parent
b4b31e16a8
commit
a83b521bda
|
@ -31,6 +31,7 @@ const paths = {
|
||||||
dist: {
|
dist: {
|
||||||
base: './dist/',
|
base: './dist/',
|
||||||
css: './dist/css',
|
css: './dist/css',
|
||||||
|
js: './dist/js',
|
||||||
html: './dist/pages',
|
html: './dist/pages',
|
||||||
assets: './dist/assets',
|
assets: './dist/assets',
|
||||||
vendor: './dist/vendor'
|
vendor: './dist/vendor'
|
||||||
|
@ -188,7 +189,7 @@ const minifyDistJs = () =>
|
||||||
rollupTypescript()
|
rollupTypescript()
|
||||||
]
|
]
|
||||||
}).then(bundle => bundle.write({
|
}).then(bundle => bundle.write({
|
||||||
file: paths.temp.js + '/adminlte.js',
|
file: paths.dist.js + '/adminlte.js',
|
||||||
format: 'umd',
|
format: 'umd',
|
||||||
name: 'adminlte',
|
name: 'adminlte',
|
||||||
sourcemap: true
|
sourcemap: true
|
||||||
|
@ -226,7 +227,7 @@ const copyDistJs = () =>
|
||||||
rollupTypescript()
|
rollupTypescript()
|
||||||
]
|
]
|
||||||
}).then(bundle => bundle.write({
|
}).then(bundle => bundle.write({
|
||||||
file: paths.temp.js + '/adminlte.js',
|
file: paths.dist.js + '/adminlte.js',
|
||||||
format: 'umd',
|
format: 'umd',
|
||||||
name: 'adminlte',
|
name: 'adminlte',
|
||||||
sourcemap: true
|
sourcemap: true
|
||||||
|
|
Loading…
Reference in New Issue