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-ks.js
70 lines (64 loc) · 1.97 KB
/
build-ks.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
/* eslint import/no-extraneous-dependencies: ["error", {"devDependencies": true}] */
/* eslint no-console: "off" */
const path = require('path');
const rollup = require('rollup');
const buble = require('rollup-plugin-buble');
const replace = require('rollup-plugin-replace');
const commonjs = require('rollup-plugin-commonjs');
const resolve = require('rollup-plugin-node-resolve');
const vue = require('rollup-plugin-vue');
const getComponents = require('./get-components.js');
let cache;
function build(cb) {
const env = process.env.NODE_ENV || 'development';
const target = process.env.TARGET || 'universal';
const f7VuePath = env === 'development'
? '../src/framework7-vue'
: '../dist/framework7-vue.esm.js';
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 EXPORT = `
export {
${components.map(c => `${c.name},`).join('\n ')}
};
export default VuePlugin;
`.trim();
rollup.rollup({
input: './kitchen-sink/src/app.js',
cache,
plugins: [
replace({
delimiters: ['', ''],
'process.env.NODE_ENV': JSON.stringify(env), // or 'production'
'process.env.TARGET': JSON.stringify(target),
"'framework7-vue'": () => `'${path.resolve(__dirname, f7VuePath).replace(/\\/g, '/')}'`,
IMPORT_PLUGIN,
IMPORT_COMPONENTS,
EXPORT,
IMPORT_COMPONENTS_BUNDLE: '',
REGISTER_COMPONENTS_BUNDLE: '',
}),
resolve({ jsnext: true }),
commonjs(),
vue(),
buble(),
],
}).then((bundle) => {
cache = bundle;
return bundle.write({
format: 'umd',
name: 'app',
strict: true,
sourcemap: false,
cache,
file: './kitchen-sink/js/app.js',
});
}).then(() => {
if (cb) cb();
}).catch((err) => {
if (cb) cb();
console.log(err.toString());
});
}
module.exports = build;