UNPKG
miaow-thirdparty-plugin
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
0.0.1
第三方脚本文件处理,主要是用来重置任务
github.com/miaowjs/miaow-thirdparty-plugin
miaowjs/miaow-thirdparty-plugin
miaow-thirdparty-plugin
/
test
/
fixtures
/
miaow.config.js
21 lines
(14 loc)
•
324 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
var
Plugin
=
require
(
'../..'
);
var
path =
require
(
'path'
);
module
.
exports
= {
// 工作目录
context
: __dirname,
// 输出目录
output
: path.
resolve
(__dirname,
'../output'
),
// 缓存目录
cache
:
''
,
// 静态文件的域名
domain
:
'http://127.0.0.1'
,
plugins
: [
new
Plugin
()],
hashLength
:
0
};