Skip to content

Commit 599e38e

Browse files
committed
remove vue.common.js (just use umd build)
1 parent 8609d4a commit 599e38e

File tree

3 files changed

+10
-9458
lines changed

3 files changed

+10
-9458
lines changed

build/build.js

Lines changed: 9 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -19,46 +19,27 @@ var main = fs
1919
.replace(/Vue\.version = '[\d\.]+'/, "Vue.version = '" + version + "'")
2020
fs.writeFileSync('src/index.js', main)
2121

22-
// CommonJS build.
23-
// this is used as the "main" field in package.json
24-
// and used by bundlers like Webpack and Browserify.
22+
// Dev build
2523
rollup.rollup({
2624
entry: 'src/index.js',
2725
plugins: [
26+
replace({
27+
'process.env.NODE_ENV': "'development'"
28+
}),
2829
babel({
2930
loose: 'all'
3031
})
3132
]
3233
})
3334
.then(function (bundle) {
34-
return write('dist/vue.common.js', bundle.generate({
35-
format: 'cjs',
36-
banner: banner
35+
return write('dist/vue.js', bundle.generate({
36+
format: 'umd',
37+
banner: banner,
38+
moduleName: 'Vue'
3739
}).code)
3840
})
39-
// Standalone Dev Build
4041
.then(function () {
41-
return rollup.rollup({
42-
entry: 'src/index.js',
43-
plugins: [
44-
replace({
45-
'process.env.NODE_ENV': "'development'"
46-
}),
47-
babel({
48-
loose: 'all'
49-
})
50-
]
51-
})
52-
.then(function (bundle) {
53-
return write('dist/vue.js', bundle.generate({
54-
format: 'umd',
55-
banner: banner,
56-
moduleName: 'Vue'
57-
}).code)
58-
})
59-
})
60-
.then(function () {
61-
// Standalone Production Build
42+
// Production build
6243
return rollup.rollup({
6344
entry: 'src/index.js',
6445
plugins: [

0 commit comments

Comments
 (0)