unplugin-env 0.1.3 → 0.1.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/{chunk-MNU7HARO.js → chunk-2KZLPXSE.js} +1284 -1147
- package/dist/{chunk-YGAPXDJU.js → chunk-5EP4GEYR.js} +1 -1
- package/dist/{chunk-TZPPLLDV.js → chunk-QAX3K5V3.js} +1 -1
- package/dist/esbuild.cjs +1601 -1464
- package/dist/esbuild.js +1 -1
- package/dist/index.cjs +1601 -1464
- package/dist/index.js +1 -1
- package/dist/nuxt.cjs +1601 -1464
- package/dist/nuxt.js +3 -3
- package/dist/rollup.cjs +1601 -1464
- package/dist/rollup.js +1 -1
- package/dist/types.d.cts +11 -4
- package/dist/types.d.ts +11 -4
- package/dist/vite.cjs +1601 -1464
- package/dist/vite.js +2 -2
- package/dist/webpack.cjs +1601 -1464
- package/dist/webpack.js +2 -2
- package/package.json +25 -24
package/dist/webpack.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unplugin-env",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.5",
|
|
5
5
|
"packageManager": "pnpm@7.1.1",
|
|
6
6
|
"description": "Register global imports on demand for Vite and Webpack",
|
|
7
7
|
"license": "MIT",
|
|
@@ -90,49 +90,50 @@
|
|
|
90
90
|
"webpack": "^4 || ^5"
|
|
91
91
|
},
|
|
92
92
|
"peerDependenciesMeta": {
|
|
93
|
-
"
|
|
93
|
+
"@nuxt/kit": {
|
|
94
94
|
"optional": true
|
|
95
95
|
},
|
|
96
|
-
"
|
|
96
|
+
"@nuxt/schema": {
|
|
97
97
|
"optional": true
|
|
98
98
|
},
|
|
99
|
-
"
|
|
99
|
+
"esbuild": {
|
|
100
100
|
"optional": true
|
|
101
101
|
},
|
|
102
|
-
"
|
|
102
|
+
"rollup": {
|
|
103
103
|
"optional": true
|
|
104
104
|
},
|
|
105
|
-
"
|
|
105
|
+
"vite": {
|
|
106
106
|
"optional": true
|
|
107
107
|
},
|
|
108
|
-
"
|
|
108
|
+
"webpack": {
|
|
109
109
|
"optional": true
|
|
110
110
|
}
|
|
111
111
|
},
|
|
112
112
|
"dependencies": {
|
|
113
|
-
"@antfu/utils": "^0.7.
|
|
114
|
-
"
|
|
113
|
+
"@antfu/utils": "^0.7.7",
|
|
114
|
+
"archiver": "^7.0.1",
|
|
115
115
|
"local-pkg": "^0.5.0",
|
|
116
|
-
"unplugin": "^1.
|
|
116
|
+
"unplugin": "^1.10.1"
|
|
117
117
|
},
|
|
118
118
|
"devDependencies": {
|
|
119
|
-
"@antfu/eslint-config": "^2.
|
|
120
|
-
"@nuxt/kit": "^3.
|
|
121
|
-
"@nuxt/schema": "^3.
|
|
122
|
-
"@types/
|
|
123
|
-
"
|
|
119
|
+
"@antfu/eslint-config": "^2.13.2",
|
|
120
|
+
"@nuxt/kit": "^3.11.2",
|
|
121
|
+
"@nuxt/schema": "^3.11.2",
|
|
122
|
+
"@types/archiver": "^6.0.2",
|
|
123
|
+
"@types/node": "^20.12.7",
|
|
124
|
+
"bumpp": "^9.4.0",
|
|
124
125
|
"chalk": "^5.3.0",
|
|
125
|
-
"eslint": "^8.
|
|
126
|
-
"esno": "^4.
|
|
126
|
+
"eslint": "^8.57.0",
|
|
127
|
+
"esno": "^4.7.0",
|
|
127
128
|
"fast-glob": "^3.3.2",
|
|
128
|
-
"magicast": "^0.3.
|
|
129
|
-
"nodemon": "^3.0
|
|
129
|
+
"magicast": "^0.3.3",
|
|
130
|
+
"nodemon": "^3.1.0",
|
|
130
131
|
"rimraf": "^5.0.5",
|
|
131
|
-
"rollup": "^4.
|
|
132
|
-
"tsup": "^8.0.
|
|
132
|
+
"rollup": "^4.14.1",
|
|
133
|
+
"tsup": "^8.0.2",
|
|
133
134
|
"typescript": "^4.9.5",
|
|
134
|
-
"vite": "^5.
|
|
135
|
-
"vitest": "^
|
|
136
|
-
"webpack": "^5.
|
|
135
|
+
"vite": "^5.2.8",
|
|
136
|
+
"vitest": "^1.4.0",
|
|
137
|
+
"webpack": "^5.91.0"
|
|
137
138
|
}
|
|
138
139
|
}
|