vite-plugin-rpx 0.11.0 → 0.11.2
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 +3 -1
- package/dist/index.js +4833 -9903
- package/dist/simplified-plugin.d.ts +1 -3
- package/dist/types.d.ts +1 -9
- package/dist/utils.d.ts +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -7,5 +7,7 @@ export type { SimplifiedPluginOptions } from './simplified-plugin';
|
|
|
7
7
|
* @deprecated Use SimplifiedVitePlugin instead to avoid WebSocket port allocation issues
|
|
8
8
|
*/
|
|
9
9
|
export declare function VitePluginRpx(options: VitePluginRpxOptions): Plugin;
|
|
10
|
+
// Export the simplified plugin types and implementation
|
|
10
11
|
export { SimplifiedVitePlugin } from './simplified-plugin';
|
|
11
|
-
|
|
12
|
+
// Set the default export to be the simplified plugin
|
|
13
|
+
export default SimplifiedVitePlugin;
|