193 lines
4.9 KiB
JavaScript
193 lines
4.9 KiB
JavaScript
import path from 'path'
|
|
import ts from 'rollup-plugin-typescript2'
|
|
import replace from '@rollup/plugin-replace'
|
|
import resolve from '@rollup/plugin-node-resolve'
|
|
import commonjs from '@rollup/plugin-commonjs'
|
|
import postcss from 'rollup-plugin-postcss'
|
|
|
|
const pkg = require('./package.json')
|
|
const name = pkg.name
|
|
|
|
const banner = `/*!
|
|
* ${pkg.name} v${pkg.version}
|
|
* (c) ${new Date().getFullYear()} Georges KABBOUCHI
|
|
* @license MIT
|
|
*/`
|
|
|
|
// ensure TS checks only once for each build
|
|
let hasTSChecked = false
|
|
|
|
const outputConfigs = {
|
|
// each file name has the format: `dist/${name}.${format}.js`
|
|
// format being a key of this object
|
|
'esm-bundler': {
|
|
file: pkg.module,
|
|
format: `es`,
|
|
},
|
|
cjs: {
|
|
file: pkg.main,
|
|
format: `cjs`,
|
|
},
|
|
global: {
|
|
file: pkg.unpkg,
|
|
format: `iife`,
|
|
},
|
|
esm: {
|
|
file: pkg.browser,
|
|
format: `es`,
|
|
},
|
|
}
|
|
|
|
const allFormats = Object.keys(outputConfigs)
|
|
// in vue-router there are not that many
|
|
const packageFormats = allFormats
|
|
const packageConfigs = packageFormats.map(format =>
|
|
createConfig(format, outputConfigs[format])
|
|
)
|
|
|
|
// only add the production ready if we are bundling the options
|
|
packageFormats.forEach(format => {
|
|
if (format === 'cjs') {
|
|
packageConfigs.push(createProductionConfig(format))
|
|
} else if (format === 'global') {
|
|
packageConfigs.push(createMinifiedConfig(format))
|
|
}
|
|
})
|
|
|
|
export default packageConfigs
|
|
|
|
function createConfig(format, output, plugins = []) {
|
|
if (!output) {
|
|
console.log(require('chalk').yellow(`invalid format: "${format}"`))
|
|
process.exit(1)
|
|
}
|
|
|
|
output.sourcemap = !!process.env.SOURCE_MAP
|
|
output.banner = banner
|
|
output.externalLiveBindings = false
|
|
output.globals = { vue: 'Vue' }
|
|
output.exports = 'named'
|
|
|
|
const isProductionBuild = /\.prod\.js$/.test(output.file)
|
|
const isGlobalBuild = format === 'global'
|
|
const isRawESMBuild = format === 'esm'
|
|
const isNodeBuild = format === 'cjs'
|
|
const isBundlerESMBuild = /esm-bundler/.test(format)
|
|
|
|
if (isGlobalBuild) output.name = 'VueTippy'
|
|
|
|
const shouldEmitDeclarations = !hasTSChecked
|
|
|
|
const tsPlugin = ts({
|
|
check: !hasTSChecked,
|
|
tsconfig: path.resolve(__dirname, 'tsconfig.json'),
|
|
cacheRoot: path.resolve(__dirname, 'node_modules/.rts2_cache'),
|
|
tsconfigOverride: {
|
|
compilerOptions: {
|
|
sourceMap: output.sourcemap,
|
|
declaration: shouldEmitDeclarations,
|
|
declarationMap: shouldEmitDeclarations,
|
|
},
|
|
exclude: [],
|
|
},
|
|
})
|
|
// we only need to check TS and generate declarations once for each build.
|
|
// it also seems to run into weird issues when checking multiple times
|
|
// during a single build.
|
|
hasTSChecked = true
|
|
|
|
const external = ['vue']
|
|
|
|
const nodePlugins = [resolve(), commonjs()]
|
|
|
|
return {
|
|
input: `src/index.ts`,
|
|
// Global and Browser ESM builds inlines everything so that they can be
|
|
// used alone.
|
|
external,
|
|
plugins: [
|
|
tsPlugin,
|
|
createReplacePlugin(
|
|
isProductionBuild,
|
|
isBundlerESMBuild,
|
|
// isBrowserBuild?
|
|
isGlobalBuild || isRawESMBuild || isBundlerESMBuild,
|
|
isGlobalBuild,
|
|
isNodeBuild
|
|
),
|
|
...nodePlugins,
|
|
...plugins,
|
|
postcss(),
|
|
],
|
|
output,
|
|
// onwarn: (msg, warn) => {
|
|
// if (!/Circular/.test(msg)) {
|
|
// warn(msg)
|
|
// }
|
|
// },
|
|
}
|
|
}
|
|
|
|
function createReplacePlugin(
|
|
isProduction,
|
|
isBundlerESMBuild,
|
|
isBrowserBuild,
|
|
isGlobalBuild,
|
|
isNodeBuild
|
|
) {
|
|
const replacements = {
|
|
__COMMIT__: `"${process.env.COMMIT}"`,
|
|
__VERSION__: `"${pkg.version}"`,
|
|
__DEV__: isBundlerESMBuild
|
|
? // preserve to be handled by bundlers
|
|
`(process.env.NODE_ENV !== 'production')`
|
|
: // hard coded dev/prod builds
|
|
!isProduction,
|
|
// this is only used during tests
|
|
__TEST__: isBundlerESMBuild ? `(process.env.NODE_ENV === 'test')` : false,
|
|
// If the build is expected to run directly in the browser (global / esm builds)
|
|
__BROWSER__: isBrowserBuild,
|
|
// is targeting bundlers?
|
|
__BUNDLER__: isBundlerESMBuild,
|
|
__GLOBAL__: isGlobalBuild,
|
|
// is targeting Node (SSR)?
|
|
__NODE_JS__: isNodeBuild,
|
|
'process.env.NODE_ENV': JSON.stringify('production'),
|
|
}
|
|
// allow inline overrides like
|
|
//__RUNTIME_COMPILE__=true yarn build
|
|
Object.keys(replacements).forEach(key => {
|
|
if (key in process.env) {
|
|
replacements[key] = process.env[key]
|
|
}
|
|
})
|
|
return replace(replacements)
|
|
}
|
|
|
|
function createProductionConfig(format) {
|
|
return createConfig(format, {
|
|
file: `dist/${name}.${format}.prod.js`,
|
|
format: outputConfigs[format].format,
|
|
})
|
|
}
|
|
|
|
function createMinifiedConfig(format) {
|
|
const { terser } = require('rollup-plugin-terser')
|
|
return createConfig(
|
|
format,
|
|
{
|
|
file: `dist/${name}.${format}.prod.js`,
|
|
format: outputConfigs[format].format,
|
|
},
|
|
[
|
|
terser({
|
|
module: /^esm/.test(format),
|
|
compress: {
|
|
ecma: 2015,
|
|
pure_getters: true,
|
|
},
|
|
}),
|
|
]
|
|
)
|
|
}
|