Compare commits

..

3 Commits

Author SHA1 Message Date
xiaojunnuo
15467fc233 v0.1.10 2021-01-08 15:57:57 +08:00
xiaojunnuo
eec0fcdcf1 refactor: 1 2021-01-08 15:57:38 +08:00
xiaojunnuo
a41dee015e fix: 修复plugins为null的问题 2021-01-08 15:56:50 +08:00
4 changed files with 1472 additions and 106 deletions

View File

@@ -2,5 +2,5 @@
"packages": [
"packages/*"
],
"version": "0.1.9"
"version": "0.1.10"
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "@certd/executor",
"version": "0.1.9",
"version": "0.1.10",
"description": "",
"main": "src/index.js",
"scripts": {

View File

@@ -25,6 +25,9 @@ export class Executor {
if (plugin == null) {
return
}
if (this.plugins == null) {
this.plugins = {}
}
this.plugins[plugin.name] = plugin
if (plugin.define) {
const define = plugin.define()