Cleaned up repo and separated both bots into their respective folders
This commit is contained in:
parent
5414de60ca
commit
a9fda1fcb7
3134 changed files with 382980 additions and 31 deletions
117
sidBot-js/node_modules/axios/rollup.config.js
generated
vendored
Normal file
117
sidBot-js/node_modules/axios/rollup.config.js
generated
vendored
Normal file
|
|
@ -0,0 +1,117 @@
|
|||
import resolve from '@rollup/plugin-node-resolve';
|
||||
import commonjs from '@rollup/plugin-commonjs';
|
||||
import {terser} from "rollup-plugin-terser";
|
||||
import json from '@rollup/plugin-json';
|
||||
import { babel } from '@rollup/plugin-babel';
|
||||
import autoExternal from 'rollup-plugin-auto-external';
|
||||
import bundleSize from 'rollup-plugin-bundle-size'
|
||||
import path from 'path';
|
||||
|
||||
const lib = require("./package.json");
|
||||
const outputFileName = 'axios';
|
||||
const name = "axios";
|
||||
const namedInput = './index.js';
|
||||
const defaultInput = './lib/axios.js';
|
||||
|
||||
const buildConfig = ({es5, browser = true, minifiedVersion = true, ...config}) => {
|
||||
const {file} = config.output;
|
||||
const ext = path.extname(file);
|
||||
const basename = path.basename(file, ext);
|
||||
const extArr = ext.split('.');
|
||||
extArr.shift();
|
||||
|
||||
|
||||
const build = ({minified}) => ({
|
||||
input: namedInput,
|
||||
...config,
|
||||
output: {
|
||||
...config.output,
|
||||
file: `${path.dirname(file)}/${basename}.${(minified ? ['min', ...extArr] : extArr).join('.')}`
|
||||
},
|
||||
plugins: [
|
||||
json(),
|
||||
resolve({browser}),
|
||||
commonjs(),
|
||||
minified && terser(),
|
||||
minified && bundleSize(),
|
||||
...(es5 ? [babel({
|
||||
babelHelpers: 'bundled',
|
||||
presets: ['@babel/preset-env']
|
||||
})] : []),
|
||||
...(config.plugins || []),
|
||||
]
|
||||
});
|
||||
|
||||
const configs = [
|
||||
build({minified: false}),
|
||||
];
|
||||
|
||||
if (minifiedVersion) {
|
||||
configs.push(build({minified: true}))
|
||||
}
|
||||
|
||||
return configs;
|
||||
};
|
||||
|
||||
export default async () => {
|
||||
const year = new Date().getFullYear();
|
||||
const banner = `// Axios v${lib.version} Copyright (c) ${year} ${lib.author} and contributors`;
|
||||
|
||||
return [
|
||||
// browser ESM bundle for CDN
|
||||
...buildConfig({
|
||||
input: namedInput,
|
||||
output: {
|
||||
file: `dist/esm/${outputFileName}.js`,
|
||||
format: "esm",
|
||||
preferConst: true,
|
||||
exports: "named",
|
||||
banner
|
||||
}
|
||||
}),
|
||||
|
||||
// Browser UMD bundle for CDN
|
||||
...buildConfig({
|
||||
input: defaultInput,
|
||||
es5: true,
|
||||
output: {
|
||||
file: `dist/${outputFileName}.js`,
|
||||
name,
|
||||
format: "umd",
|
||||
exports: "default",
|
||||
banner
|
||||
}
|
||||
}),
|
||||
|
||||
// Browser CJS bundle
|
||||
...buildConfig({
|
||||
input: defaultInput,
|
||||
es5: false,
|
||||
minifiedVersion: false,
|
||||
output: {
|
||||
file: `dist/browser/${name}.cjs`,
|
||||
name,
|
||||
format: "cjs",
|
||||
exports: "default",
|
||||
banner
|
||||
}
|
||||
}),
|
||||
|
||||
// Node.js commonjs bundle
|
||||
{
|
||||
input: defaultInput,
|
||||
output: {
|
||||
file: `dist/node/${name}.cjs`,
|
||||
format: "cjs",
|
||||
preferConst: true,
|
||||
exports: "default",
|
||||
banner
|
||||
},
|
||||
plugins: [
|
||||
autoExternal(),
|
||||
resolve(),
|
||||
commonjs()
|
||||
]
|
||||
}
|
||||
]
|
||||
};
|
||||
Reference in a new issue