@open-xchange/vite-plugin-replace-pkg 0.0.6 → 1.0.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/CHANGELOG.md +4 -0
- package/dist/index.d.ts +3 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -35,7 +35,9 @@ export interface VitePluginReplacePkg_GitLabFile {
|
|
|
35
35
|
path: string;
|
|
36
36
|
/**
|
|
37
37
|
* The name of a branch or a tag, or a commit ID. Slashes in branch names
|
|
38
|
-
* will be encoded internally.
|
|
38
|
+
* will be encoded internally.
|
|
39
|
+
*
|
|
40
|
+
* @default "HEAD"
|
|
39
41
|
*/
|
|
40
42
|
ref?: string;
|
|
41
43
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-xchange/vite-plugin-replace-pkg",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Vite plugin replacing a specific external package with an arbitrary source code module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"engines": {
|
|
11
11
|
"node": ">=20.18"
|
|
12
12
|
},
|
|
13
|
-
"packageManager": "yarn@4.
|
|
13
|
+
"packageManager": "yarn@4.6.0",
|
|
14
14
|
"type": "module",
|
|
15
15
|
"exports": "./dist/index.js",
|
|
16
16
|
"scripts": {
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
"lint": "eslint ."
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@open-xchange/vite-helper": "0.
|
|
23
|
+
"@open-xchange/vite-helper": "1.0.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@open-xchange/linter-presets": "0.
|
|
27
|
-
"@types/node": "^22.10.
|
|
28
|
-
"eslint": "^9.
|
|
26
|
+
"@open-xchange/linter-presets": "1.0.0",
|
|
27
|
+
"@types/node": "^22.10.4",
|
|
28
|
+
"eslint": "^9.17.0",
|
|
29
29
|
"rimraf": "^6.0.1",
|
|
30
30
|
"typescript": "^5.7.2",
|
|
31
|
-
"vite": "^6.0.
|
|
31
|
+
"vite": "^6.0.7"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"vite": "^5.3 || ^6.0.0"
|