-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
54 lines (48 loc) · 1.39 KB
/
index.js
File metadata and controls
54 lines (48 loc) · 1.39 KB
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
'use strict'
const rollup = require('rollup').rollup
const buble = require('rollup-plugin-buble')
const alias = require('rollup-plugin-alias')
const nodeResolve = require('rollup-plugin-node-resolve')
const commonjs = require('rollup-plugin-commonjs')
const string = require('rollup-plugin-string');
var fs = require('fs'),
path = require('path');
function getDirectories(srcpath) {
return fs.readdirSync(srcpath).filter(function(file) {
return fs.statSync(path.join(srcpath, file)).isDirectory();
});
};
module.exports = function (options) {
const plugins = [
string({
// Required to be specified
include: '**/*.html'}),
buble(),
alias(options.alias)
]
if (options.nodeResolve) {
plugins.push(
nodeResolve({
skip: options.skip,
jsnext: options.jsnext
}),
commonjs()
)
}
var dirs = getDirectories('./example');
dirs.forEach(function(dir) {
rollup( {
entry: options.entry || './example/' + dir + '/index.js',
paths: options.paths,
globals: {'vue': 'Vue'},
plugins
} ).then( bundle => {
return bundle.write( {
format: options.format || 'iife',
moduleName: dir, //options.moduleName,
dest: options.dest || options.output || './example/'+dir+'.js',
sourceMap: options.sourceMap
} )
} ).catch( e => console.log( e.stack ) )
});
}