@wocker/core 1.0.26-beta.4 → 1.0.26-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -155,7 +155,7 @@ let AppConfigService = class AppConfigService {
155
155
  this.save();
156
156
  }
157
157
  addPlugin(name, env) {
158
- this.config.addPlugin(name);
158
+ this.config.addPlugin(name, env);
159
159
  }
160
160
  removePlugin(name) {
161
161
  this.config.removePlugin(name);
@@ -1,4 +1,4 @@
1
1
  export type PluginRef = {
2
2
  name: string;
3
- env: "latest" | "beta";
3
+ env: string;
4
4
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wocker/core",
3
3
  "type": "commonjs",
4
- "version": "1.0.26-beta.4",
4
+ "version": "1.0.26-beta.5",
5
5
  "author": "Kris Papercut <krispcut@gmail.com>",
6
6
  "description": "Core of the Wocker",
7
7
  "license": "MIT",