Skip to content
This repository was archived by the owner on Nov 18, 2021. It is now read-only.

Commit 0c26ab2

Browse files
committed
完成测试用例
1 parent 8049f7d commit 0c26ab2

File tree

10 files changed

+4274
-232
lines changed

10 files changed

+4274
-232
lines changed

.vscode/tasks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "npm",
8+
"script": "lint",
9+
"problemMatcher": [
10+
{
11+
"base": "$tslint5",
12+
"fileLocation": "relative"
13+
}
14+
]
15+
}
16+
]
17+
}

build/build.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ fs.emptyDirSync(path.resolve(__dirname, '../dist'))
66

77
// 编译 js
88
const rollup = require('rollup')
9-
const buble = require('rollup-plugin-buble')
109
const uglifyJS = require('uglify-js')
1110
const pkg = require('../package.json')
1211

@@ -20,7 +19,7 @@ const banner = [
2019

2120
rollup.rollup({
2221
entry: path.resolve(__dirname, '../chrome-call.js'),
23-
plugins: [buble()]
22+
plugins: []
2423
}).then(bundle => {
2524
// 输出 umd 格式
2625
const { code } = bundle.generate({

0 commit comments

Comments
 (0)