17 lines
373 B
JavaScript
17 lines
373 B
JavaScript
module.exports = {
|
|
eruda: {
|
|
library: 'https://raw.githubusercontent.com/liriliri/fione/master/',
|
|
files: 'src/**/*.js',
|
|
ignore: 'src/**/stringify.js',
|
|
output: 'src/lib/util.js',
|
|
exclude: ['createCfg'],
|
|
format: 'es'
|
|
},
|
|
test: {
|
|
files: ['test/*.js', 'test/*.html'],
|
|
exclude: ['js'],
|
|
namespace: 'util',
|
|
output: 'test/util.js'
|
|
}
|
|
}
|