@open-xchange/vite-plugin-replace-pkg 1.0.0 → 1.0.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/README.md +1 -1
  3. package/package.json +13 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## `1.0.1` – 2025-Feb-20
4
+
5
+ - chore: bump dependencies
6
+
3
7
  ## `1.0.0` – 2025-Jan-03
4
8
 
5
9
  - chore: release v1 (no code changes)
package/README.md CHANGED
@@ -75,7 +75,7 @@ The location of the source file to resolve the module imports with. There are di
75
75
  | Name | Type | Default | Description |
76
76
  | - | - | - | - |
77
77
  | `url` | `string` | _required_ | The URL of the source file to be downloaded. |
78
- | `query` | `Dict<string\|number\|boolean>` | `{}` | Query parameters to be added to the URL. |
78
+ | `query` | `Record<string, string\|number\|boolean>` | `{}` | Query parameters to be added to the URL. |
79
79
 
80
80
  Example:
81
81
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-xchange/vite-plugin-replace-pkg",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Vite plugin replacing a specific external package with an arbitrary source code module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,19 +16,22 @@
16
16
  "scripts": {
17
17
  "prepare": "yarn build",
18
18
  "prepack": "yarn build && yarn lint",
19
- "build": "rimraf dist && tsc",
20
- "lint": "eslint ."
19
+ "clean": "premove dist",
20
+ "build": "yarn clean && tsc --project src/tsconfig.json",
21
+ "lint": "tsc && tsc --project src/tsconfig.json --noEmit && eslint ."
21
22
  },
22
23
  "dependencies": {
23
- "@open-xchange/vite-helper": "1.0.0"
24
+ "@open-xchange/vite-helper": "^1.0.1"
24
25
  },
25
26
  "devDependencies": {
26
- "@open-xchange/linter-presets": "1.0.0",
27
- "@types/node": "^22.10.4",
28
- "eslint": "^9.17.0",
29
- "rimraf": "^6.0.1",
30
- "typescript": "^5.7.2",
31
- "vite": "^6.0.7"
27
+ "@open-xchange/linter-presets": "^1.2.12",
28
+ "@types/node": "^22.13.4",
29
+ "better-typescript-lib": "^2.10.1",
30
+ "eslint": "^9.20.1",
31
+ "jiti": "^2.4.2",
32
+ "premove": "^4.0.0",
33
+ "typescript": "^5.7.3",
34
+ "vite": "^6.1.1"
32
35
  },
33
36
  "peerDependencies": {
34
37
  "vite": "^5.3 || ^6.0.0"