@open-xchange/vite-plugin-es-decorators 0.0.3 → 0.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +14 -17
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## `0.0.5` – 2024-Nov-29
4
+
5
+ - chore: add vite v6 to peerDeps
6
+
7
+ ## `0.0.4` – 2024-Nov-02
8
+
9
+ - chore: use semver ranges in dependencies
10
+
3
11
  ## `0.0.3` – 2024-Oct-25
4
12
 
5
13
  - chore: bump dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-xchange/vite-plugin-es-decorators",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "description": "Vite plugin that adds support for native ES decorators in JS source files",
5
5
  "repository": {
6
6
  "type": "git",
@@ -8,9 +8,9 @@
8
8
  },
9
9
  "license": "MIT",
10
10
  "engines": {
11
- "node": "18.18.0 || ^20.9.0 || >=21.1.0"
11
+ "node": ">=20.18"
12
12
  },
13
- "packageManager": "yarn@4.5.1",
13
+ "packageManager": "yarn@4.5.3",
14
14
  "type": "module",
15
15
  "exports": "./dist/index.js",
16
16
  "scripts": {
@@ -20,23 +20,20 @@
20
20
  "lint": "eslint ."
21
21
  },
22
22
  "dependencies": {
23
- "@babel/core": "7.25.9",
24
- "@babel/plugin-proposal-decorators": "7.25.9",
25
- "vite-plugin-babel": "1.2.0"
23
+ "@babel/core": "^7.26.0",
24
+ "@babel/plugin-proposal-decorators": "^7.25.9",
25
+ "vite-plugin-babel": "^1.2.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@open-xchange/linter-presets": "0.8.9",
29
- "@types/babel__core": "7.20.5",
30
- "@types/node": "22.7.9",
31
- "eslint": "9.13.0",
32
- "rimraf": "6.0.1",
33
- "typescript": "5.6.3",
34
- "vite": "5.4.10"
28
+ "@open-xchange/linter-presets": "0.11.4",
29
+ "@types/babel__core": "^7.20.5",
30
+ "@types/node": "^22.10.1",
31
+ "eslint": "^9.15.0",
32
+ "rimraf": "^6.0.1",
33
+ "typescript": "^5.7.2",
34
+ "vite": "^6.0.1"
35
35
  },
36
36
  "peerDependencies": {
37
- "vite": "^5.3"
38
- },
39
- "resolutions": {
40
- "semver": "^7.6.2"
37
+ "vite": "^5.3.0 || ^6.0.0"
41
38
  }
42
39
  }