react-code-locator 0.1.18 → 0.2.0
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/README.md +86 -38
- package/dist/client.cjs +1 -399
- package/dist/client.cjs.map +1 -1
- package/dist/client.d.cts +1 -1
- package/dist/client.d.ts +1 -1
- package/dist/client.js +1 -371
- package/dist/client.js.map +1 -1
- package/dist/esbuild.cjs +29 -7149
- package/dist/esbuild.cjs.map +1 -1
- package/dist/esbuild.d.cts +1 -1
- package/dist/esbuild.d.ts +1 -1
- package/dist/esbuild.js +29 -7122
- package/dist/esbuild.js.map +1 -1
- package/dist/index.cjs +32 -7504
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -3
- package/dist/index.d.ts +2 -3
- package/dist/index.js +32 -7471
- package/dist/index.js.map +1 -1
- package/dist/swc.cjs +29 -7119
- package/dist/swc.cjs.map +1 -1
- package/dist/swc.d.cts +1 -1
- package/dist/swc.d.ts +1 -1
- package/dist/swc.js +29 -7090
- package/dist/swc.js.map +1 -1
- package/dist/{transform-CXh-m5Ez.d.cts → transform-z2n_1yc5.d.cts} +2 -2
- package/dist/{transform-CXh-m5Ez.d.ts → transform-z2n_1yc5.d.ts} +2 -2
- package/dist/unplugin.cjs +32 -7138
- package/dist/unplugin.cjs.map +1 -1
- package/dist/unplugin.d.cts +15 -6
- package/dist/unplugin.d.ts +15 -6
- package/dist/unplugin.js +32 -7108
- package/dist/unplugin.js.map +1 -1
- package/dist/webpack.cjs +40 -0
- package/dist/webpack.cjs.map +1 -0
- package/dist/webpack.d.cts +16 -0
- package/dist/webpack.d.ts +16 -0
- package/dist/webpack.js +40 -0
- package/dist/webpack.js.map +1 -0
- package/package.json +13 -2
- package/dist/vite.cjs +0 -7200
- package/dist/vite.cjs.map +0 -1
- package/dist/vite.d.cts +0 -52
- package/dist/vite.d.ts +0 -52
- package/dist/vite.js +0 -7169
- package/dist/vite.js.map +0 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ReactCodeLocatorOptions } from './unplugin.cjs';
|
|
2
|
+
import './client.cjs';
|
|
3
|
+
import 'esbuild';
|
|
4
|
+
import 'rollup';
|
|
5
|
+
import 'unplugin';
|
|
6
|
+
import './transform-z2n_1yc5.cjs';
|
|
7
|
+
import 'vite';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Webpack Plugin for react-code-locator
|
|
11
|
+
* CJS-compatible re-export from unplugin
|
|
12
|
+
*/
|
|
13
|
+
declare const webpackPlugin: (options?: ReactCodeLocatorOptions | undefined) => WebpackPluginInstance;
|
|
14
|
+
declare const _default: (options?: ReactCodeLocatorOptions | undefined) => WebpackPluginInstance;
|
|
15
|
+
|
|
16
|
+
export { _default as default, webpackPlugin };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ReactCodeLocatorOptions } from './unplugin.js';
|
|
2
|
+
import './client.js';
|
|
3
|
+
import 'esbuild';
|
|
4
|
+
import 'rollup';
|
|
5
|
+
import 'unplugin';
|
|
6
|
+
import './transform-z2n_1yc5.js';
|
|
7
|
+
import 'vite';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Webpack Plugin for react-code-locator
|
|
11
|
+
* CJS-compatible re-export from unplugin
|
|
12
|
+
*/
|
|
13
|
+
declare const webpackPlugin: (options?: ReactCodeLocatorOptions | undefined) => WebpackPluginInstance;
|
|
14
|
+
declare const _default: (options?: ReactCodeLocatorOptions | undefined) => WebpackPluginInstance;
|
|
15
|
+
|
|
16
|
+
export { _default as default, webpackPlugin };
|