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 viteConfig from './core/bootstrap.js';
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 viteConfig from './core/bootstrap.js';
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';
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Public API for the background execution module
3
3
  */
4
- export * as viteConfig from './executor.js';
4
+ export * as viteConfig from './executor';
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Public API for the background execution module
3
3
  */
4
- export * as viteConfig from './executor.js';
4
+ export * as viteConfig from './executor';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-enhancer-config",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "description": "Enhance your Vite configuration with advanced features",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",