@open-xchange/vite-plugin-es-decorators 1.0.3 → 1.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/package.json +17 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## `1.1.0` – 2025-Jun-26
4
+
5
+ - added: support vor Vite 7
6
+ - chore: drop support vor Vite 5
7
+
3
8
  ## `1.0.3` – 2025-Feb-24
4
9
 
5
10
  - chore: remove better-typescript-lib
package/package.json CHANGED
@@ -1,41 +1,45 @@
1
1
  {
2
2
  "name": "@open-xchange/vite-plugin-es-decorators",
3
- "version": "1.0.3",
3
+ "version": "1.1.0",
4
4
  "description": "Vite plugin that adds support for native ES decorators in JS source files",
5
5
  "repository": {
6
6
  "type": "git",
7
- "url": "https://gitlab.open-xchange.com/fspd/commons/plugins/-/tree/main/packages/vite-plugin-es-decorators"
7
+ "url": "https://gitlab.open-xchange.com/fspd/commons/plugins",
8
+ "directory": "packages/vite-plugin-es-decorators"
8
9
  },
9
10
  "license": "MIT",
10
11
  "engines": {
11
12
  "node": ">=20.18"
12
13
  },
13
- "packageManager": "yarn@4.6.0",
14
+ "packageManager": "yarn@4.9.2",
14
15
  "type": "module",
15
16
  "exports": "./dist/index.js",
17
+ "files": [
18
+ "dist",
19
+ "CHANGELOG.*"
20
+ ],
16
21
  "scripts": {
17
- "prepare": "yarn build",
18
22
  "prepack": "yarn build && yarn lint",
19
23
  "clean": "premove dist",
20
24
  "build": "yarn clean && tsc --project src/tsconfig.json",
21
25
  "lint": "tsc && tsc --project src/tsconfig.json --noEmit && eslint ."
22
26
  },
23
27
  "dependencies": {
24
- "@babel/core": "^7.26.9",
25
- "@babel/plugin-proposal-decorators": "^7.25.9",
26
- "vite-plugin-babel": "^1.3.0"
28
+ "@babel/core": "^7.27.4",
29
+ "@babel/plugin-proposal-decorators": "^7.27.1",
30
+ "vite-plugin-babel": "^1.3.1"
27
31
  },
28
32
  "devDependencies": {
29
- "@open-xchange/linter-presets": "^1.2.14",
33
+ "@open-xchange/linter-presets": "^1.4.0",
30
34
  "@types/babel__core": "^7.20.5",
31
- "@types/node": "^22.13.4",
32
- "eslint": "^9.20.1",
35
+ "@types/node": "^24.0.4",
36
+ "eslint": "^9.29.0",
33
37
  "jiti": "^2.4.2",
34
38
  "premove": "^4.0.0",
35
- "typescript": "^5.7.3",
36
- "vite": "^6.1.1"
39
+ "typescript": "^5.8.3",
40
+ "vite": "^7.0.0"
37
41
  },
38
42
  "peerDependencies": {
39
- "vite": "^5.3.0 || ^6.0.0"
43
+ "vite": "^6.0.0 || ^7.0.0"
40
44
  }
41
45
  }