2021-04-03 23:55:44 +08:00
|
|
|
// @ts-check
|
2019-10-14 11:17:36 +08:00
|
|
|
import path from 'path'
|
|
|
|
import ts from 'rollup-plugin-typescript2'
|
2019-11-19 22:02:46 +08:00
|
|
|
import replace from '@rollup/plugin-replace'
|
|
|
|
import json from '@rollup/plugin-json'
|
2018-09-19 23:35:38 +08:00
|
|
|
|
|
|
|
if (!process.env.TARGET) {
|
|
|
|
throw new Error('TARGET package must be specified via --environment flag.')
|
|
|
|
}
|
|
|
|
|
2019-12-11 07:24:59 +08:00
|
|
|
const masterVersion = require('./package.json').version
|
2018-09-19 23:35:38 +08:00
|
|
|
const packagesDir = path.resolve(__dirname, 'packages')
|
|
|
|
const packageDir = path.resolve(packagesDir, process.env.TARGET)
|
|
|
|
const resolve = p => path.resolve(packageDir, p)
|
|
|
|
const pkg = require(resolve(`package.json`))
|
|
|
|
const packageOptions = pkg.buildOptions || {}
|
2021-04-03 23:55:44 +08:00
|
|
|
const name = packageOptions.filename || path.basename(packageDir)
|
2018-09-19 23:35:38 +08:00
|
|
|
|
|
|
|
// ensure TS checks only once for each build
|
|
|
|
let hasTSChecked = false
|
|
|
|
|
2019-12-18 07:24:01 +08:00
|
|
|
const outputConfigs = {
|
2019-12-11 11:14:02 +08:00
|
|
|
'esm-bundler': {
|
2018-09-20 00:46:55 +08:00
|
|
|
file: resolve(`dist/${name}.esm-bundler.js`),
|
2018-09-19 23:35:38 +08:00
|
|
|
format: `es`
|
|
|
|
},
|
2020-04-20 06:42:07 +08:00
|
|
|
'esm-browser': {
|
|
|
|
file: resolve(`dist/${name}.esm-browser.js`),
|
|
|
|
format: `es`
|
|
|
|
},
|
2018-09-19 23:35:38 +08:00
|
|
|
cjs: {
|
|
|
|
file: resolve(`dist/${name}.cjs.js`),
|
|
|
|
format: `cjs`
|
|
|
|
},
|
2018-09-20 00:46:55 +08:00
|
|
|
global: {
|
|
|
|
file: resolve(`dist/${name}.global.js`),
|
|
|
|
format: `iife`
|
2018-09-19 23:35:38 +08:00
|
|
|
},
|
2020-04-20 06:42:07 +08:00
|
|
|
|
|
|
|
// runtime-only builds, for main "vue" package only
|
2020-03-24 03:09:29 +08:00
|
|
|
'esm-bundler-runtime': {
|
|
|
|
file: resolve(`dist/${name}.runtime.esm-bundler.js`),
|
|
|
|
format: `es`
|
|
|
|
},
|
2020-04-20 06:42:07 +08:00
|
|
|
'esm-browser-runtime': {
|
|
|
|
file: resolve(`dist/${name}.runtime.esm-browser.js`),
|
|
|
|
format: 'es'
|
|
|
|
},
|
2020-03-24 03:09:29 +08:00
|
|
|
'global-runtime': {
|
|
|
|
file: resolve(`dist/${name}.runtime.global.js`),
|
|
|
|
format: 'iife'
|
2018-09-19 23:35:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-11 11:14:02 +08:00
|
|
|
const defaultFormats = ['esm-bundler', 'cjs']
|
2019-10-06 23:31:44 +08:00
|
|
|
const inlineFormats = process.env.FORMATS && process.env.FORMATS.split(',')
|
|
|
|
const packageFormats = inlineFormats || packageOptions.formats || defaultFormats
|
2019-09-20 12:31:14 +08:00
|
|
|
const packageConfigs = process.env.PROD_ONLY
|
|
|
|
? []
|
2019-12-18 07:24:01 +08:00
|
|
|
: packageFormats.map(format => createConfig(format, outputConfigs[format]))
|
2018-09-19 23:35:38 +08:00
|
|
|
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
|
|
packageFormats.forEach(format => {
|
2020-04-26 13:24:25 +08:00
|
|
|
if (packageOptions.prod === false) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (format === 'cjs') {
|
2018-09-19 23:35:38 +08:00
|
|
|
packageConfigs.push(createProductionConfig(format))
|
|
|
|
}
|
2020-04-20 06:42:07 +08:00
|
|
|
if (/^(global|esm-browser)(-runtime)?/.test(format)) {
|
2018-09-19 23:35:38 +08:00
|
|
|
packageConfigs.push(createMinifiedConfig(format))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-10-14 11:17:36 +08:00
|
|
|
export default packageConfigs
|
2018-09-19 23:35:38 +08:00
|
|
|
|
2019-12-18 07:24:01 +08:00
|
|
|
function createConfig(format, output, plugins = []) {
|
2019-12-23 00:56:09 +08:00
|
|
|
if (!output) {
|
|
|
|
console.log(require('chalk').yellow(`invalid format: "${format}"`))
|
|
|
|
process.exit(1)
|
|
|
|
}
|
|
|
|
|
2020-01-28 23:28:40 +08:00
|
|
|
output.sourcemap = !!process.env.SOURCE_MAP
|
2019-11-07 04:47:01 +08:00
|
|
|
output.externalLiveBindings = false
|
|
|
|
|
2019-05-29 10:34:07 +08:00
|
|
|
const isProductionBuild =
|
|
|
|
process.env.__DEV__ === 'false' || /\.prod\.js$/.test(output.file)
|
2019-12-18 07:24:01 +08:00
|
|
|
const isBundlerESMBuild = /esm-bundler/.test(format)
|
2020-04-20 06:42:07 +08:00
|
|
|
const isBrowserESMBuild = /esm-browser/.test(format)
|
|
|
|
const isNodeBuild = format === 'cjs'
|
|
|
|
const isGlobalBuild = /global/.test(format)
|
2021-04-03 23:55:44 +08:00
|
|
|
const isCompatBuild = !!packageOptions.compat
|
2019-10-16 10:34:14 +08:00
|
|
|
|
2018-09-20 00:46:55 +08:00
|
|
|
if (isGlobalBuild) {
|
2018-09-19 23:35:38 +08:00
|
|
|
output.name = packageOptions.name
|
|
|
|
}
|
|
|
|
|
2020-02-16 10:48:45 +08:00
|
|
|
const shouldEmitDeclarations = process.env.TYPES != null && !hasTSChecked
|
2019-09-04 00:16:22 +08:00
|
|
|
|
2018-09-19 23:35:38 +08:00
|
|
|
const tsPlugin = ts({
|
|
|
|
check: process.env.NODE_ENV === 'production' && !hasTSChecked,
|
|
|
|
tsconfig: path.resolve(__dirname, 'tsconfig.json'),
|
|
|
|
cacheRoot: path.resolve(__dirname, 'node_modules/.rts2_cache'),
|
|
|
|
tsconfigOverride: {
|
|
|
|
compilerOptions: {
|
2020-01-28 23:28:40 +08:00
|
|
|
sourceMap: output.sourcemap,
|
2019-09-04 00:16:22 +08:00
|
|
|
declaration: shouldEmitDeclarations,
|
|
|
|
declarationMap: shouldEmitDeclarations
|
2019-09-20 11:05:51 +08:00
|
|
|
},
|
2019-11-05 07:38:55 +08:00
|
|
|
exclude: ['**/__tests__', 'test-dts']
|
2018-09-19 23:35:38 +08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
// 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
|
|
|
|
|
2021-04-20 21:25:12 +08:00
|
|
|
let entryFile = /runtime$/.test(format) ? `src/runtime.ts` : `src/index.ts`
|
|
|
|
|
|
|
|
// the compat build needs both default AND named exports. This will cause
|
|
|
|
// Rollup to complain for non-ESM targets, so we use separate entries for
|
|
|
|
// esm vs. non-esm builds.
|
|
|
|
if (isCompatBuild && (isBrowserESMBuild || isBundlerESMBuild)) {
|
|
|
|
entryFile = /runtime$/.test(format)
|
|
|
|
? `src/esm-runtime.ts`
|
|
|
|
: `src/esm-index.ts`
|
|
|
|
}
|
2019-12-18 07:24:01 +08:00
|
|
|
|
2021-04-03 23:55:44 +08:00
|
|
|
let external = []
|
|
|
|
|
2021-04-08 22:06:12 +08:00
|
|
|
if (isGlobalBuild || isBrowserESMBuild || isCompatBuild) {
|
2021-04-03 23:55:44 +08:00
|
|
|
if (!packageOptions.enableNonBrowserBranches) {
|
|
|
|
// normal browser builds - non-browser only imports are tree-shaken,
|
|
|
|
// they are only listed here to suppress warnings.
|
|
|
|
external = ['source-map', '@babel/parser', 'estree-walker']
|
|
|
|
}
|
2021-04-08 22:06:12 +08:00
|
|
|
} else {
|
2021-04-03 23:55:44 +08:00
|
|
|
// Node / esm-bundler builds.
|
|
|
|
// externalize all deps unless it's the compat build.
|
|
|
|
external = [
|
|
|
|
...Object.keys(pkg.dependencies || {}),
|
|
|
|
...Object.keys(pkg.peerDependencies || {}),
|
|
|
|
...['path', 'url', 'stream'] // for @vue/compiler-sfc / server-renderer
|
|
|
|
]
|
|
|
|
}
|
2020-01-24 11:23:10 +08:00
|
|
|
|
2020-04-26 13:24:25 +08:00
|
|
|
// the browser builds of @vue/compiler-sfc requires postcss to be available
|
|
|
|
// as a global (e.g. http://wzrd.in/standalone/postcss)
|
|
|
|
output.globals = {
|
|
|
|
postcss: 'postcss'
|
|
|
|
}
|
|
|
|
|
|
|
|
const nodePlugins =
|
|
|
|
packageOptions.enableNonBrowserBranches && format !== 'cjs'
|
|
|
|
? [
|
2021-04-03 23:55:44 +08:00
|
|
|
// @ts-ignore
|
2020-04-26 13:24:25 +08:00
|
|
|
require('@rollup/plugin-commonjs')({
|
|
|
|
sourceMap: false
|
|
|
|
}),
|
2021-04-03 23:55:44 +08:00
|
|
|
// @ts-ignore
|
2021-03-28 13:35:45 +08:00
|
|
|
require('rollup-plugin-polyfill-node')(),
|
2021-03-28 00:33:52 +08:00
|
|
|
require('@rollup/plugin-node-resolve').nodeResolve()
|
2020-04-26 13:24:25 +08:00
|
|
|
]
|
|
|
|
: []
|
2020-02-28 05:53:51 +08:00
|
|
|
|
2018-09-19 23:35:38 +08:00
|
|
|
return {
|
2019-12-18 07:24:01 +08:00
|
|
|
input: resolve(entryFile),
|
2018-09-20 00:46:55 +08:00
|
|
|
// Global and Browser ESM builds inlines everything so that they can be
|
2018-09-19 23:35:38 +08:00
|
|
|
// used alone.
|
2020-01-24 11:23:10 +08:00
|
|
|
external,
|
2018-09-19 23:35:38 +08:00
|
|
|
plugins: [
|
2019-09-20 11:19:48 +08:00
|
|
|
json({
|
|
|
|
namedExports: false
|
|
|
|
}),
|
2018-09-19 23:35:38 +08:00
|
|
|
tsPlugin,
|
2019-09-04 08:51:42 +08:00
|
|
|
createReplacePlugin(
|
|
|
|
isProductionBuild,
|
2019-10-11 09:48:52 +08:00
|
|
|
isBundlerESMBuild,
|
2020-04-21 03:23:26 +08:00
|
|
|
isBrowserESMBuild,
|
2020-01-24 11:23:10 +08:00
|
|
|
// isBrowserBuild?
|
2020-04-20 06:42:07 +08:00
|
|
|
(isGlobalBuild || isBrowserESMBuild || isBundlerESMBuild) &&
|
2019-10-14 13:08:00 +08:00
|
|
|
!packageOptions.enableNonBrowserBranches,
|
2020-02-14 07:50:36 +08:00
|
|
|
isGlobalBuild,
|
2021-04-03 23:55:44 +08:00
|
|
|
isNodeBuild,
|
|
|
|
isCompatBuild
|
2019-09-04 08:51:42 +08:00
|
|
|
),
|
2020-02-28 05:53:51 +08:00
|
|
|
...nodePlugins,
|
2018-09-19 23:35:38 +08:00
|
|
|
...plugins
|
|
|
|
],
|
|
|
|
output,
|
|
|
|
onwarn: (msg, warn) => {
|
|
|
|
if (!/Circular/.test(msg)) {
|
|
|
|
warn(msg)
|
|
|
|
}
|
2020-04-26 13:24:25 +08:00
|
|
|
},
|
|
|
|
treeshake: {
|
|
|
|
moduleSideEffects: false
|
2018-09-19 23:35:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-14 13:08:00 +08:00
|
|
|
function createReplacePlugin(
|
|
|
|
isProduction,
|
|
|
|
isBundlerESMBuild,
|
2020-04-21 03:23:26 +08:00
|
|
|
isBrowserESMBuild,
|
2019-10-14 13:08:00 +08:00
|
|
|
isBrowserBuild,
|
2020-02-14 07:50:36 +08:00
|
|
|
isGlobalBuild,
|
2021-04-03 23:55:44 +08:00
|
|
|
isNodeBuild,
|
|
|
|
isCompatBuild
|
2019-10-14 13:08:00 +08:00
|
|
|
) {
|
2019-12-16 04:37:43 +08:00
|
|
|
const replacements = {
|
2019-10-05 10:40:54 +08:00
|
|
|
__COMMIT__: `"${process.env.COMMIT}"`,
|
2019-12-11 07:24:59 +08:00
|
|
|
__VERSION__: `"${masterVersion}"`,
|
2019-10-11 09:48:52 +08:00
|
|
|
__DEV__: isBundlerESMBuild
|
2018-09-20 00:46:55 +08:00
|
|
|
? // preserve to be handled by bundlers
|
2019-11-05 00:24:22 +08:00
|
|
|
`(process.env.NODE_ENV !== 'production')`
|
2018-09-20 00:46:55 +08:00
|
|
|
: // hard coded dev/prod builds
|
|
|
|
!isProduction,
|
2020-03-25 05:57:27 +08:00
|
|
|
// this is only used during Vue's internal tests
|
|
|
|
__TEST__: false,
|
2019-12-11 11:14:02 +08:00
|
|
|
// If the build is expected to run directly in the browser (global / esm builds)
|
2019-09-17 23:57:25 +08:00
|
|
|
__BROWSER__: isBrowserBuild,
|
2020-02-14 07:50:36 +08:00
|
|
|
__GLOBAL__: isGlobalBuild,
|
2020-04-21 03:23:26 +08:00
|
|
|
__ESM_BUNDLER__: isBundlerESMBuild,
|
|
|
|
__ESM_BROWSER__: isBrowserESMBuild,
|
2020-01-24 11:23:10 +08:00
|
|
|
// is targeting Node (SSR)?
|
2020-01-29 22:49:17 +08:00
|
|
|
__NODE_JS__: isNodeBuild,
|
2020-07-21 09:51:30 +08:00
|
|
|
|
2021-04-03 23:55:44 +08:00
|
|
|
// 2.x compat build
|
|
|
|
__COMPAT__: isCompatBuild,
|
|
|
|
|
2020-07-21 09:51:30 +08:00
|
|
|
// feature flags
|
2020-02-06 03:21:09 +08:00
|
|
|
__FEATURE_SUSPENSE__: true,
|
2020-07-21 09:51:30 +08:00
|
|
|
__FEATURE_OPTIONS_API__: isBundlerESMBuild ? `__VUE_OPTIONS_API__` : true,
|
|
|
|
__FEATURE_PROD_DEVTOOLS__: isBundlerESMBuild
|
|
|
|
? `__VUE_PROD_DEVTOOLS__`
|
|
|
|
: false,
|
2020-02-06 03:21:09 +08:00
|
|
|
...(isProduction && isBrowserBuild
|
|
|
|
? {
|
|
|
|
'context.onError(': `/*#__PURE__*/ context.onError(`,
|
2020-02-07 04:10:21 +08:00
|
|
|
'emitError(': `/*#__PURE__*/ emitError(`,
|
|
|
|
'createCompilerError(': `/*#__PURE__*/ createCompilerError(`,
|
|
|
|
'createDOMCompilerError(': `/*#__PURE__*/ createDOMCompilerError(`
|
2020-02-06 03:21:09 +08:00
|
|
|
}
|
|
|
|
: {})
|
2019-12-16 04:37:43 +08:00
|
|
|
}
|
|
|
|
// allow inline overrides like
|
|
|
|
//__RUNTIME_COMPILE__=true yarn build runtime-core
|
|
|
|
Object.keys(replacements).forEach(key => {
|
|
|
|
if (key in process.env) {
|
|
|
|
replacements[key] = process.env[key]
|
|
|
|
}
|
2018-09-19 23:35:38 +08:00
|
|
|
})
|
2021-02-25 04:05:36 +08:00
|
|
|
return replace({
|
2021-04-03 23:55:44 +08:00
|
|
|
// @ts-ignore
|
2021-02-25 04:05:36 +08:00
|
|
|
values: replacements,
|
|
|
|
preventAssignment: true
|
|
|
|
})
|
2018-09-19 23:35:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function createProductionConfig(format) {
|
2019-12-18 07:24:01 +08:00
|
|
|
return createConfig(format, {
|
2018-09-19 23:35:38 +08:00
|
|
|
file: resolve(`dist/${name}.${format}.prod.js`),
|
2019-12-18 07:24:01 +08:00
|
|
|
format: outputConfigs[format].format
|
2018-09-19 23:35:38 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function createMinifiedConfig(format) {
|
|
|
|
const { terser } = require('rollup-plugin-terser')
|
|
|
|
return createConfig(
|
2019-12-18 07:24:01 +08:00
|
|
|
format,
|
2018-09-19 23:35:38 +08:00
|
|
|
{
|
2020-03-24 03:09:29 +08:00
|
|
|
file: outputConfigs[format].file.replace(/\.js$/, '.prod.js'),
|
2019-12-18 07:24:01 +08:00
|
|
|
format: outputConfigs[format].format
|
2018-09-19 23:35:38 +08:00
|
|
|
},
|
|
|
|
[
|
|
|
|
terser({
|
2020-02-07 04:10:21 +08:00
|
|
|
module: /^esm/.test(format),
|
|
|
|
compress: {
|
|
|
|
ecma: 2015,
|
|
|
|
pure_getters: true
|
2020-12-03 03:23:13 +08:00
|
|
|
},
|
|
|
|
safari10: true
|
2018-09-19 23:35:38 +08:00
|
|
|
})
|
|
|
|
]
|
|
|
|
)
|
|
|
|
}
|