@4399ywkf/core 5.0.2 → 5.0.6
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/dist/cli/index.js +376 -77
- package/dist/cli/index.js.map +1 -1
- package/dist/config/index.d.ts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +476 -129
- package/dist/index.js.map +1 -1
- package/dist/plugin/index.d.ts +3 -3
- package/dist/plugin/index.js +5 -4
- package/dist/plugin/index.js.map +1 -1
- package/dist/router/index.js +2 -2
- package/dist/router/index.js.map +1 -1
- package/dist/rspack/index.d.ts +5 -3
- package/dist/rspack/index.js +45 -22
- package/dist/rspack/index.js.map +1 -1
- package/dist/runtime/index.d.ts +17 -3
- package/dist/runtime/index.js +31 -0
- package/dist/runtime/index.js.map +1 -1
- package/dist/{schema-BuqmN_ra.d.ts → schema-VPH72NAR.d.ts} +1 -1
- package/dist/{types-BZV_2QtD.d.ts → types-BztKUufh.d.ts} +76 -1
- package/package.json +3 -1
package/dist/config/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Y as YwkfConfig } from '../schema-
|
|
2
|
-
export { D as DevServerConfig, E as EnvConfig, H as HtmlConfig, M as MicroFrontendConfig, O as OutputConfig, P as PerformanceConfig, R as RouterConfig, S as StyleConfig, T as ToolsConfig, a as defaultConfig, d as defineConfig } from '../schema-
|
|
1
|
+
import { Y as YwkfConfig } from '../schema-VPH72NAR.js';
|
|
2
|
+
export { D as DevServerConfig, E as EnvConfig, H as HtmlConfig, M as MicroFrontendConfig, O as OutputConfig, P as PerformanceConfig, R as RouterConfig, S as StyleConfig, T as ToolsConfig, a as defaultConfig, d as defineConfig } from '../schema-VPH72NAR.js';
|
|
3
3
|
import '@rspack/core';
|
|
4
|
-
import '../types-
|
|
4
|
+
import '../types-BztKUufh.js';
|
|
5
5
|
import 'react';
|
|
6
6
|
import 'react-router';
|
|
7
7
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { G as GeneratorContext, b as PluginHooks, Y as YwkfConfig, c as PluginConfig, e as YwkfPlugin } from './schema-
|
|
2
|
-
export { B as BuildHooks, C as CodeInjection, D as DevServerConfig, E as EnvConfig, j as GeneratedFile, i as GeneratorHooks, H as HtmlConfig, M as MicroFrontendConfig, O as OutputConfig, P as PerformanceConfig, f as PluginContext, R as RouterConfig, g as RouterHooks, h as RuntimeHooks, S as StyleConfig, T as ToolsConfig, a as defaultConfig, d as defineConfig } from './schema-
|
|
1
|
+
import { G as GeneratorContext, b as PluginHooks, Y as YwkfConfig, c as PluginConfig, e as YwkfPlugin } from './schema-VPH72NAR.js';
|
|
2
|
+
export { B as BuildHooks, C as CodeInjection, D as DevServerConfig, E as EnvConfig, j as GeneratedFile, i as GeneratorHooks, H as HtmlConfig, M as MicroFrontendConfig, O as OutputConfig, P as PerformanceConfig, f as PluginContext, R as RouterConfig, g as RouterHooks, h as RuntimeHooks, S as StyleConfig, T as ToolsConfig, a as defaultConfig, d as defineConfig } from './schema-VPH72NAR.js';
|
|
3
3
|
export { createBaseConfig, createDevConfig, createProdConfig, createRspackConfig } from './rspack/index.js';
|
|
4
4
|
export { ConventionalRouteGenerator, ConventionalRoutePlugin, ConventionalRoutePluginOptions, GeneratorOptions, RouteConfig, generateConventionalRoutes } from './router/index.js';
|
|
5
5
|
import { Compiler } from '@rspack/core';
|
|
6
|
-
export { a as AntdConfig, A as AppConfig, b as AppContextValue, L as LifecycleHooks, M as MicroAppConfig, P as ProviderConfig } from './types-
|
|
6
|
+
export { a as AntdConfig, A as AppConfig, b as AppContextValue, L as LifecycleHooks, M as MicroAppConfig, P as ProviderConfig } from './types-BztKUufh.js';
|
|
7
7
|
export { AppContext, AppContextProvider, ErrorBoundary, RootProvider, bootstrap, createMicroApp, createProvider, getMicroAppPublicPath, isMicroAppEnv, unmount, useApp, useAppName, useBasename, useEnv, useIsDev } from './runtime/index.js';
|
|
8
8
|
export { PluginManager, createPlugin, definePlugin } from './plugin/index.js';
|
|
9
9
|
import 'react';
|