| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- const path = require('path')
- const flow = require('rollup-plugin-flow-no-whitespace')
- const buble = require('rollup-plugin-buble')
- const replace = require('rollup-plugin-replace')
- const alias = require('rollup-plugin-alias')
- const version = process.env.VERSION || require('../package.json').version
- const weexVersion = process.env.WEEX_VERSION || require('../packages/weex-vue-framework/package.json').version
- const banner =
- '/*!\n' +
- ' * Vue.js v' + version + '\n' +
- ' * (c) 2014-' + new Date().getFullYear() + ' Evan You\n' +
- ' * Released under the MIT License.\n' +
- ' */'
- const builds = {
- // Runtime only (CommonJS). Used by bundlers e.g. Webpack & Browserify
- 'web-runtime-cjs': {
- entry: path.resolve(__dirname, '../src/entries/web-runtime.js'),
- dest: path.resolve(__dirname, '../dist/vue.runtime.common.js'),
- format: 'cjs',
- banner
- },
- // Runtime+compiler CommonJS build (CommonJS)
- 'web-full-cjs': {
- entry: path.resolve(__dirname, '../src/entries/web-runtime-with-compiler.js'),
- dest: path.resolve(__dirname, '../dist/vue.common.js'),
- format: 'cjs',
- alias: { he: './entity-decoder' },
- banner
- },
- // runtime-only build (Browser)
- 'web-runtime-dev': {
- entry: path.resolve(__dirname, '../src/entries/web-runtime.js'),
- dest: path.resolve(__dirname, '../dist/vue.runtime.js'),
- format: 'umd',
- env: 'development',
- banner
- },
- // runtime-only production build (Browser)
- 'web-runtime-prod': {
- entry: path.resolve(__dirname, '../src/entries/web-runtime.js'),
- dest: path.resolve(__dirname, '../dist/vue.runtime.min.js'),
- format: 'umd',
- env: 'production',
- banner
- },
- // Runtime+compiler development build (Browser)
- 'web-full-dev': {
- entry: path.resolve(__dirname, '../src/entries/web-runtime-with-compiler.js'),
- dest: path.resolve(__dirname, '../dist/vue.js'),
- format: 'umd',
- env: 'development',
- alias: { he: './entity-decoder' },
- banner
- },
- // Runtime+compiler production build (Browser)
- 'web-full-prod': {
- entry: path.resolve(__dirname, '../src/entries/web-runtime-with-compiler.js'),
- dest: path.resolve(__dirname, '../dist/vue.min.js'),
- format: 'umd',
- env: 'production',
- alias: { he: './entity-decoder' },
- banner
- },
- // Web compiler (CommonJS).
- 'web-compiler': {
- entry: path.resolve(__dirname, '../src/entries/web-compiler.js'),
- dest: path.resolve(__dirname, '../packages/vue-template-compiler/build.js'),
- format: 'cjs',
- external: ['he', 'de-indent']
- },
- // Web server renderer (CommonJS).
- 'web-server-renderer': {
- entry: path.resolve(__dirname, '../src/entries/web-server-renderer.js'),
- dest: path.resolve(__dirname, '../packages/vue-server-renderer/build.js'),
- format: 'cjs',
- external: ['stream', 'module', 'vm', 'he', 'de-indent']
- },
- // Weex runtime framework (CommonJS).
- 'weex-framework': {
- weex: true,
- entry: path.resolve(__dirname, '../src/entries/weex-framework.js'),
- dest: path.resolve(__dirname, '../packages/weex-vue-framework/index.js'),
- format: 'cjs'
- },
- // Weex compiler (CommonJS). Used by Weex's Webpack loader.
- 'weex-compiler': {
- weex: true,
- entry: path.resolve(__dirname, '../src/entries/weex-compiler.js'),
- dest: path.resolve(__dirname, '../packages/weex-template-compiler/build.js'),
- format: 'cjs',
- external: ['he', 'de-indent']
- }
- }
- function genConfig (opts) {
- const config = {
- entry: opts.entry,
- dest: opts.dest,
- external: opts.external,
- format: opts.format,
- banner: opts.banner,
- moduleName: 'Vue',
- plugins: [
- replace({
- __WEEX__: !!opts.weex,
- __WEEX_VERSION__: weexVersion,
- __VERSION__: version
- }),
- flow(),
- buble(),
- alias(Object.assign({}, require('./alias'), opts.alias))
- ]
- }
- if (opts.env) {
- config.plugins.push(replace({
- 'process.env.NODE_ENV': JSON.stringify(opts.env)
- }))
- }
- return config
- }
- if (process.env.TARGET) {
- module.exports = genConfig(builds[process.env.TARGET])
- } else {
- exports.getBuild = name => genConfig(builds[name])
- exports.getAllBuilds = () => Object.keys(builds).map(name => genConfig(builds[name]))
- }
|