vite-enhancer-config 1.2.5 → 1.2.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/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export { createServerEnhancer, type ServerConfig, type ServerEnhancer, } from '.
|
|
|
6
6
|
export { createBuildEnhancer, type BuildConfig, type BuildEnhancer, } from './enhancers/build-enhancer.js';
|
|
7
7
|
export { createResolveEnhancer, type ResolveConfig, type ResolveEnhancer, } from './enhancers/resolve-enhancer.js';
|
|
8
8
|
export { createPluginEnhancer, type PluginConfig, type PluginEnhancer, } from './enhancers/plugin-enhancer.js';
|
|
9
|
-
export * as
|
|
9
|
+
export * as createEnhancer from './core/bootstrap.js';
|
|
10
10
|
export { createViteEnhancer, type ViteEnhancer, type EnhancerOptions } from './enhancers/index.js';
|
|
11
11
|
export declare const VERSION = "1.0.0";
|
|
12
12
|
export declare const PACKAGE_NAME = "vite-enhancer-config";
|
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@ export { createBuildEnhancer, } from './enhancers/build-enhancer.js';
|
|
|
8
8
|
export { createResolveEnhancer, } from './enhancers/resolve-enhancer.js';
|
|
9
9
|
export { createPluginEnhancer, } from './enhancers/plugin-enhancer.js';
|
|
10
10
|
// Import bootstrap
|
|
11
|
-
export * as
|
|
11
|
+
export * as createEnhancer from './core/bootstrap.js';
|
|
12
12
|
export { createViteEnhancer } from './enhancers/index.js';
|
|
13
13
|
export const VERSION = '1.0.0';
|
|
14
14
|
export const PACKAGE_NAME = 'vite-enhancer-config';
|