代码拉取完成,页面将自动刷新
同步操作将从 欲饮琵琶码上催/AdminLTS 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import json from '@rollup/plugin-json';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import {babel} from '@rollup/plugin-babel';
import terser from '@rollup/plugin-terser';
import eslint from '@rollup/plugin-eslint';
import pkg from './package.json'
const year = new Date().getFullYear()
const banner = `/*!
* bootstrap-admin v${pkg.version} (${pkg.homepage})
* Copyright 2021-${year} ${pkg.author}
* license ${pkg.license} (https://gitee.com/ajiho/bootstrap-admin/blob/2.x/LICENSE)
*/`
export default [
{
input: 'build/js/bootstrap-admin.js',
output: [
{
banner,
file: 'dist/js/bootstrap-admin.js',
format: 'umd',
globals: {
jquery: 'jQuery',
'bootstrap-quicktab': 'Quicktab',
},
name: 'BootstrapAdmin',
sourcemap: true,
},
{
banner,
file: 'dist/js/bootstrap-admin.min.js',
format: 'umd',
globals: {
jquery: 'jQuery',
'bootstrap-quicktab': 'Quicktab',
},
name: 'BootstrapAdmin',
plugins: [
terser({compress: {drop_console: false}})
],
sourcemap: true,
}
],
external: ['jquery', 'bootstrap-quicktab'],
//使用json插件
plugins: [
json(),
resolve(),
commonjs(),
eslint({
throwOnError: true,
throwOnWarning: true,
include: ['build/**'],
exclude: ['node_modules/**'],
fix: true
}),
babel({
exclude: 'node_modules/**',
// 用于指定 Babel 在转换 ES6+ 代码时使用的辅助函数的路径
babelHelpers: 'bundled'
})
]
},
//mock打包
{
input: 'build/mock/index.js',
output: [
{
file: 'dist/js/bootstrap-admin.mock.js',
format: 'iife',
globals: {
jquery: 'jQuery'
},
sourcemap: false, // 不生成 sourcemap 文件
}
],
external: ['jquery'],
plugins: [
json(),
resolve(),
commonjs(),
eslint({
throwOnError: true,
throwOnWarning: true,
include: ['build/**'],
exclude: ['node_modules/**'],
fix: true
}),
babel({
exclude: 'node_modules/**',
// 用于指定 Babel 在转换 ES6+ 代码时使用的辅助函数的路径
babelHelpers: 'bundled'
}),
terser({compress: {drop_console: false}})
],
onwarn: function (message) {//避免打包mock.js的时候会报错
if (message.code === 'EVAL') {
return;
}
console.error(message);
}
},
]
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。