This repository was archived by the owner on Oct 5, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathbuild-js.js
161 lines (149 loc) · 4.32 KB
/
build-js.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/* eslint import/no-extraneous-dependencies: ["error", {"devDependencies": true}] */
/* eslint no-console: "off" */
const gulp = require('gulp');
const rollup = require('rollup');
const buble = require('rollup-plugin-buble');
const replace = require('rollup-plugin-replace');
const header = require('gulp-header');
const uglify = require('gulp-uglify');
const sourcemaps = require('gulp-sourcemaps');
const rename = require('gulp-rename');
const vue = require('rollup-plugin-vue');
const banner = require('./banner.js');
const getComponents = require('./get-components.js');
function es(cb) {
const env = process.env.NODE_ENV || 'development';
const target = process.env.TARGET || 'universal';
const components = getComponents();
const IMPORT_PLUGIN = 'import VuePlugin from \'./vue-plugin.js\';';
const IMPORT_COMPONENTS = components.map(c => `import ${c.name} from './components/${c.file}';`).join('\n');
const REGISTER_COMPONENTS_BUNDLE = components.map(c => `${c.name},`).join('\n ');
const EXPORT = `
export {
${components.map(c => `${c.name},`).join('\n ')}
};
export default VuePlugin;
`.trim();
let cbs = 0;
// Modular
rollup.rollup({
input: './src/framework7-vue.js',
plugins: [
replace({
'process.env.NODE_ENV': JSON.stringify(env), // or 'production'
'process.env.TARGET': JSON.stringify(target),
IMPORT_PLUGIN,
IMPORT_COMPONENTS,
EXPORT,
IMPORT_COMPONENTS_BUNDLE: '',
REGISTER_COMPONENTS_BUNDLE: '',
}),
vue(),
],
}).then(bundle => bundle.write({
format: 'es',
name: 'Framework7Vue',
strict: true,
sourcemap: false,
banner,
file: './dist/framework7-vue.esm.js',
})).then(() => {
cbs += 1;
if (cbs === 2 && cb) cb();
}).catch((err) => {
if (cb) cb();
console.log(err.toString());
});
// Bundle Build
rollup.rollup({
input: './src/vue-plugin.js',
plugins: [
replace({
'process.env.NODE_ENV': JSON.stringify(env), // or 'production'
'process.env.TARGET': JSON.stringify(target),
IMPORT_COMPONENTS_BUNDLE: IMPORT_COMPONENTS,
REGISTER_COMPONENTS_BUNDLE,
}),
vue(),
],
}).then(bundle => bundle.write({
format: 'es',
name: 'Framework7Vue',
strict: true,
sourcemap: false,
banner,
file: './dist/framework7-vue.esm.bundle.js',
})).then(() => {
cbs += 1;
if (cbs === 2 && cb) cb();
}).catch((err) => {
if (cb) cb();
console.log(err.toString());
});
}
function umd(cb) {
const env = process.env.NODE_ENV || 'development';
const target = process.env.TARGET || 'universal';
const components = getComponents();
const IMPORT_COMPONENTS = components.map(c => `import ${c.name} from './components/${c.file}';`).join('\n');
const REGISTER_COMPONENTS_BUNDLE = components.map(c => `${c.name},`).join('\n ');
rollup.rollup({
input: './src/vue-plugin.js',
plugins: [
replace({
'process.env.NODE_ENV': JSON.stringify(env), // or 'production'
'process.env.TARGET': JSON.stringify(target),
IMPORT_COMPONENTS_BUNDLE: IMPORT_COMPONENTS,
REGISTER_COMPONENTS_BUNDLE,
}),
vue(),
buble(),
],
}).then(bundle => bundle.write({
format: 'umd',
name: 'Framework7Vue',
strict: true,
sourcemap: env === 'development',
sourcemapFile: './dist/framework7-vue.js.map',
banner,
file: './dist/framework7-vue.js',
})).then(() => {
if (env === 'development') {
if (cb) cb();
return;
}
// Minified version
gulp.src('./dist/framework7-vue.js')
.pipe(sourcemaps.init())
.pipe(uglify())
.pipe(header(banner))
.pipe(rename((filePath) => {
/* eslint no-param-reassign: ["error", { "props": false }] */
filePath.basename += '.min';
}))
.pipe(sourcemaps.write('./'))
.pipe(gulp.dest('./dist/'))
.on('end', () => {
cb();
});
}).catch((err) => {
if (cb) cb();
console.log(err.toString());
});
}
function build(cb) {
const env = process.env.NODE_ENV || 'development';
const expectCbs = env === 'development' ? 1 : 2;
let cbs = 0;
umd(() => {
cbs += 1;
if (cbs === expectCbs) cb();
});
if (env === 'production') {
es(() => {
cbs += 1;
if (cbs === expectCbs) cb();
});
}
}
module.exports = build;