1
0
mirror of synced 2025-12-11 17:08:00 +08:00

Move some utils to fione

This commit is contained in:
redhoodsu
2018-09-06 18:12:44 +08:00
parent 130acc5008
commit 72d1269c51
12 changed files with 827 additions and 925 deletions

26
.eustia.js Normal file
View File

@@ -0,0 +1,26 @@
module.exports = {
script: {
files: 'script/*.js',
output: 'script/util.js',
format: 'commonjs'
},
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'
},
stringify: {
files: 'src/lib/stringify.js',
output: 'src/lib/stringifyUtil.js',
format: 'es'
},
test: {
files: ['test/*.js', 'test/*.html'],
exclude: ['js'],
namespace: 'util',
output: 'test/util.js'
}
}