@nocobase/plugin-system-settings 0.7.7-alpha.1 → 0.8.0-alpha.4

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.
package/lib/server.d.ts CHANGED
@@ -4,6 +4,5 @@ export declare class SystemSettingsPlugin extends Plugin {
4
4
  install(options?: InstallOptions): Promise<void>;
5
5
  beforeLoad(): void;
6
6
  load(): Promise<void>;
7
- getName(): string;
8
7
  }
9
8
  export default SystemSettingsPlugin;
package/lib/server.js CHANGED
@@ -90,10 +90,6 @@ class SystemSettingsPlugin extends _server().Plugin {
90
90
  })();
91
91
  }
92
92
 
93
- getName() {
94
- return this.getPackageName(__dirname);
95
- }
96
-
97
93
  }
98
94
 
99
95
  exports.SystemSettingsPlugin = SystemSettingsPlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nocobase/plugin-system-settings",
3
- "version": "0.7.7-alpha.1",
3
+ "version": "0.8.0-alpha.4",
4
4
  "main": "lib/index.js",
5
5
  "license": "Apache-2.0",
6
6
  "licenses": [
@@ -10,7 +10,7 @@
10
10
  }
11
11
  ],
12
12
  "devDependencies": {
13
- "@nocobase/test": "0.7.7-alpha.1"
13
+ "@nocobase/test": "0.8.0-alpha.4"
14
14
  },
15
- "gitHead": "f82374e6f9daaf71ba63eaf156468ea7ddc042da"
15
+ "gitHead": "433f068ce4479a53f51d3ceac3f22b710e7bb13e"
16
16
  }