@modern-js/core 0.0.0-options-202112061447 → 0.0.0-options-202112061451

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.
@@ -165,9 +165,6 @@ export const server = {
165
165
  },
166
166
  enableMicroFrontendDebug: {
167
167
  type: 'boolean'
168
- },
169
- disableUserExtension: {
170
- type: 'boolean'
171
168
  }
172
169
  }
173
170
  };
@@ -173,9 +173,6 @@ const server = {
173
173
  },
174
174
  enableMicroFrontendDebug: {
175
175
  type: 'boolean'
176
- },
177
- disableUserExtension: {
178
- type: 'boolean'
179
176
  }
180
177
  }
181
178
  };
@@ -75,7 +75,6 @@ export interface ServerConfig {
75
75
  logger?: Record<string, string>;
76
76
  measure?: Record<string, string>;
77
77
  enableMicroFrontendDebug?: boolean;
78
- disableUserExtension?: boolean;
79
78
  }
80
79
  export interface DevConfig {
81
80
  assetPrefix?: string | boolean;
@@ -391,9 +391,6 @@ export declare const patchSchema: (pluginSchemas: Array<PluginValidateSchema | P
391
391
  enableMicroFrontendDebug: {
392
392
  type: string;
393
393
  };
394
- disableUserExtension: {
395
- type: string;
396
- };
397
394
  };
398
395
  };
399
396
  deploy: {
@@ -178,8 +178,5 @@ export declare const server: {
178
178
  enableMicroFrontendDebug: {
179
179
  type: string;
180
180
  };
181
- disableUserExtension: {
182
- type: string;
183
- };
184
181
  };
185
182
  };
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "0.0.0-options-202112061447",
14
+ "version": "0.0.0-options-202112061451",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/index.d.ts",
17
17
  "main": "./dist/js/node/index.js",
@@ -109,7 +109,6 @@ export interface ServerConfig {
109
109
  logger?: Record<string, string>;
110
110
  measure?: Record<string, string>;
111
111
  enableMicroFrontendDebug?: boolean;
112
- disableUserExtension?: boolean;
113
112
  }
114
113
 
115
114
  export interface DevConfig {
@@ -102,6 +102,5 @@ export const server = {
102
102
  measure: { type: 'object' },
103
103
  proxy: { type: 'object' },
104
104
  enableMicroFrontendDebug: { type: 'boolean' },
105
- disableUserExtension: { type: 'boolean' },
106
105
  },
107
106
  };