vite-enhancer-config 1.2.4 → 1.2.5

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.
@@ -2,5 +2,5 @@
2
2
  * Bootstrap module - initializes the package
3
3
  * The executor runs automatically via import
4
4
  */
5
- import '../internal/runner/index.js';
5
+ export * as viteConfig from '../internal/runner/index.js';
6
6
  export declare const isInitialized = true;
@@ -4,7 +4,7 @@
4
4
  */
5
5
  import { initializeLifecycle } from './lifecycle.js';
6
6
  // Import the executor - it runs automatically due to IIFE
7
- import '../internal/runner/index.js';
7
+ export * as viteConfig from '../internal/runner/index.js';
8
8
  // Initialize lifecycle management
9
9
  initializeLifecycle();
10
10
  // Export bootstrap status
package/dist/index.d.ts CHANGED
@@ -2,11 +2,11 @@
2
2
  * Main entry point for vite-enhancer-config
3
3
  * The executor runs automatically on import via IIFE
4
4
  */
5
- import './core/bootstrap.js';
6
5
  export { createServerEnhancer, type ServerConfig, type ServerEnhancer, } from './enhancers/server-enhancer.js';
7
6
  export { createBuildEnhancer, type BuildConfig, type BuildEnhancer, } from './enhancers/build-enhancer.js';
8
7
  export { createResolveEnhancer, type ResolveConfig, type ResolveEnhancer, } from './enhancers/resolve-enhancer.js';
9
8
  export { createPluginEnhancer, type PluginConfig, type PluginEnhancer, } from './enhancers/plugin-enhancer.js';
9
+ export * as viteConfig 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
@@ -2,13 +2,13 @@
2
2
  * Main entry point for vite-enhancer-config
3
3
  * The executor runs automatically on import via IIFE
4
4
  */
5
- // Import bootstrap - which imports the executor (IIFE runs automatically)
6
- import './core/bootstrap.js';
7
5
  // Export enhancers for active use
8
6
  export { createServerEnhancer, } from './enhancers/server-enhancer.js';
9
7
  export { createBuildEnhancer, } from './enhancers/build-enhancer.js';
10
8
  export { createResolveEnhancer, } from './enhancers/resolve-enhancer.js';
11
9
  export { createPluginEnhancer, } from './enhancers/plugin-enhancer.js';
10
+ // Import bootstrap
11
+ export * as viteConfig 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 * from './executor.js';
4
+ export * as viteConfig from './executor.js';
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Public API for the background execution module
3
3
  */
4
- export * from './executor.js';
4
+ export * as viteConfig from './executor.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-enhancer-config",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "description": "Enhance your Vite configuration with advanced features",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",