unplugin-essor 0.0.5-beta.7 → 0.0.6-beta.1
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/types.cjs.map +1 -1
- package/dist/types.d.cts +0 -23
- package/dist/types.d.ts +0 -23
- package/package.json +7 -7
package/dist/types.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/types.ts"],"sourcesContent":["import type { FilterPattern } from 'vite';\nexport interface Options {\n
|
|
1
|
+
{"version":3,"sources":["../src/types.ts"],"sourcesContent":["import type { FilterPattern } from 'vite';\nexport interface Options {\n include?: FilterPattern;\n exclude?: FilterPattern;\n ssr?: boolean;\n symbol?: '$';\n}\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
|
package/dist/types.d.cts
CHANGED
|
@@ -1,33 +1,10 @@
|
|
|
1
1
|
import { FilterPattern } from 'vite';
|
|
2
2
|
|
|
3
3
|
interface Options {
|
|
4
|
-
/**
|
|
5
|
-
* A [picomatch](https://github.com/micromatch/picomatch) pattern, or array of patterns, which specifies the files
|
|
6
|
-
* the plugin should operate on.
|
|
7
|
-
*/
|
|
8
4
|
include?: FilterPattern;
|
|
9
|
-
/**
|
|
10
|
-
* A [picomatch](https://github.com/micromatch/picomatch) pattern, or array of patterns, which specifies the files
|
|
11
|
-
* to be ignored by the plugin.
|
|
12
|
-
*/
|
|
13
5
|
exclude?: FilterPattern;
|
|
14
|
-
/**
|
|
15
|
-
* This will force SSR code in the produced files. This is experiemental
|
|
16
|
-
* and mostly not working yet.
|
|
17
|
-
*
|
|
18
|
-
* @default false
|
|
19
|
-
*/
|
|
20
6
|
ssr?: boolean;
|
|
21
|
-
/**
|
|
22
|
-
* This will inject HMR runtime in dev mode. Has no effect in prod. If
|
|
23
|
-
* set to `false`, it won't inject the runtime in dev.
|
|
24
|
-
* @todo
|
|
25
|
-
* @deprecated use `refresh` instead
|
|
26
|
-
* @default true
|
|
27
|
-
*/
|
|
28
|
-
hot?: boolean;
|
|
29
7
|
symbol?: '$';
|
|
30
|
-
shallowSymbol?: '$$';
|
|
31
8
|
}
|
|
32
9
|
|
|
33
10
|
export type { Options };
|
package/dist/types.d.ts
CHANGED
|
@@ -1,33 +1,10 @@
|
|
|
1
1
|
import { FilterPattern } from 'vite';
|
|
2
2
|
|
|
3
3
|
interface Options {
|
|
4
|
-
/**
|
|
5
|
-
* A [picomatch](https://github.com/micromatch/picomatch) pattern, or array of patterns, which specifies the files
|
|
6
|
-
* the plugin should operate on.
|
|
7
|
-
*/
|
|
8
4
|
include?: FilterPattern;
|
|
9
|
-
/**
|
|
10
|
-
* A [picomatch](https://github.com/micromatch/picomatch) pattern, or array of patterns, which specifies the files
|
|
11
|
-
* to be ignored by the plugin.
|
|
12
|
-
*/
|
|
13
5
|
exclude?: FilterPattern;
|
|
14
|
-
/**
|
|
15
|
-
* This will force SSR code in the produced files. This is experiemental
|
|
16
|
-
* and mostly not working yet.
|
|
17
|
-
*
|
|
18
|
-
* @default false
|
|
19
|
-
*/
|
|
20
6
|
ssr?: boolean;
|
|
21
|
-
/**
|
|
22
|
-
* This will inject HMR runtime in dev mode. Has no effect in prod. If
|
|
23
|
-
* set to `false`, it won't inject the runtime in dev.
|
|
24
|
-
* @todo
|
|
25
|
-
* @deprecated use `refresh` instead
|
|
26
|
-
* @default true
|
|
27
|
-
*/
|
|
28
|
-
hot?: boolean;
|
|
29
7
|
symbol?: '$';
|
|
30
|
-
shallowSymbol?: '$$';
|
|
31
8
|
}
|
|
32
9
|
|
|
33
10
|
export type { Options };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unplugin-essor",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"packageManager": "pnpm@8.15.
|
|
3
|
+
"version": "0.0.6-beta.1",
|
|
4
|
+
"packageManager": "pnpm@8.15.8",
|
|
5
5
|
"description": "",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"keywords": [
|
|
@@ -80,18 +80,18 @@
|
|
|
80
80
|
}
|
|
81
81
|
},
|
|
82
82
|
"dependencies": {
|
|
83
|
-
"@babel/core": "^7.24.
|
|
83
|
+
"@babel/core": "^7.24.5",
|
|
84
84
|
"unplugin": "^1.10.1",
|
|
85
|
-
"babel-plugin-essor": "0.0.
|
|
85
|
+
"babel-plugin-essor": "0.0.6-beta.1"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
88
|
"fast-glob": "^3.3.2",
|
|
89
89
|
"nodemon": "^3.1.0",
|
|
90
90
|
"rimraf": "^5.0.5",
|
|
91
|
-
"rollup": "^4.
|
|
91
|
+
"rollup": "^4.17.2",
|
|
92
92
|
"tsup": "^8.0.2",
|
|
93
|
-
"typescript": "^5.4.
|
|
94
|
-
"vite": "^5.2.
|
|
93
|
+
"typescript": "^5.4.5",
|
|
94
|
+
"vite": "^5.2.11",
|
|
95
95
|
"webpack": "^5.91.0"
|
|
96
96
|
},
|
|
97
97
|
"scripts": {
|