@open-xchange/vite-plugin-ox-manifests 0.6.2 → 0.6.4
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 +16 -1
- package/package.json +22 -11
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.6.4] - 2024-03-01
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Update @open-xchange/vite-plugin-ox-externals [`20e2b03`](https://gitlab.open-xchange.com/frontend/vite-plugin-ox-manifests/commit/20e2b0303466075df077b1ae8e60c365b86f1369)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.6.3] - 2023-12-05
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Bump vite to 5.0.5
|
|
19
|
+
|
|
7
20
|
## [0.6.2] - 2023-06-21
|
|
8
21
|
|
|
9
22
|
### Fixed
|
|
@@ -47,7 +60,9 @@ All notable changes to this project will be documented in this file.
|
|
|
47
60
|
|
|
48
61
|
- Start Changelog
|
|
49
62
|
|
|
50
|
-
[unreleased]: https://gitlab.open-xchange.com/frontend/vite-plugin-ox-manifests/compare/0.6.
|
|
63
|
+
[unreleased]: https://gitlab.open-xchange.com/frontend/vite-plugin-ox-manifests/compare/0.6.4...main
|
|
64
|
+
[0.6.4]: https://gitlab.open-xchange.com/frontend/vite-plugin-ox-manifests/compare/0.6.3...0.6.4
|
|
65
|
+
[0.6.3]: https://gitlab.open-xchange.com/frontend/vite-plugin-ox-manifests/compare/0.6.2...0.6.3
|
|
51
66
|
[0.6.2]: https://gitlab.open-xchange.com/frontend/vite-plugin-ox-manifests/compare/0.6.1...0.6.2
|
|
52
67
|
[0.6.1]: https://gitlab.open-xchange.com/frontend/vite-plugin-ox-manifests/compare/0.6.0...0.6.1
|
|
53
68
|
[0.6.0]: https://gitlab.open-xchange.com/frontend/vite-plugin-ox-manifests/compare/0.5.4...0.6.0
|
package/package.json
CHANGED
|
@@ -1,44 +1,55 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-xchange/vite-plugin-ox-manifests",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.4",
|
|
4
4
|
"description": "A vite plugin to concat and serve ox manifests",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"repository": "git@gitlab.open-xchange.com:frontend/vite-plugin-ox-manifests.git",
|
|
9
|
-
"author": "Richard Petersen",
|
|
10
9
|
"license": "MIT",
|
|
11
10
|
"scripts": {
|
|
12
|
-
"prepare": "husky
|
|
11
|
+
"prepare": "husky",
|
|
13
12
|
"lint": "tsc --noEmit && eslint . --ext .js,.cjs,.mjs,.ts",
|
|
14
|
-
"build": "
|
|
15
|
-
"test": "
|
|
13
|
+
"build": "pnpx rimraf dist && tsc",
|
|
14
|
+
"test": "pnpm build && cross-env NODE_OPTIONS=\"--experimental-vm-modules --max_old_space_size=1792\" jest --runInBand"
|
|
16
15
|
},
|
|
17
16
|
"dependencies": {
|
|
18
17
|
"@open-xchange/rollup-plugin-po2json": "^0.8.0",
|
|
19
|
-
"@open-xchange/vite-plugin-ox-externals": "^0.
|
|
18
|
+
"@open-xchange/vite-plugin-ox-externals": "^0.6.0",
|
|
20
19
|
"chokidar": "^3.5.1",
|
|
21
20
|
"fast-glob": "^3.2.12",
|
|
22
21
|
"magic-string": "^0.30.0",
|
|
23
22
|
"parseurl": "^1.3.3"
|
|
24
23
|
},
|
|
25
24
|
"devDependencies": {
|
|
26
|
-
"@open-xchange/lint": "^0.0.3",
|
|
27
25
|
"@types/node": "^20.1.5",
|
|
28
26
|
"@types/parseurl": "^1.3.1",
|
|
29
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
30
|
-
"@typescript-eslint/parser": "^
|
|
27
|
+
"@typescript-eslint/eslint-plugin": "^7.1.0",
|
|
28
|
+
"@typescript-eslint/parser": "^7.1.0",
|
|
29
|
+
"eslint": "^8.56.0",
|
|
30
|
+
"eslint-config-standard": "^17.1.0",
|
|
31
|
+
"eslint-plugin-import": "^2.29.1",
|
|
32
|
+
"eslint-plugin-n": "^16.6.2",
|
|
33
|
+
"eslint-plugin-promise": "^6.1.1",
|
|
31
34
|
"cross-env": "^7.0.3",
|
|
32
35
|
"eslint-plugin-jest": "^27.2.1",
|
|
33
36
|
"express": "^4.18.2",
|
|
37
|
+
"husky": "^9.0.6",
|
|
34
38
|
"jest": "^29.5.0",
|
|
35
39
|
"jest-junit": "^16.0.0",
|
|
36
40
|
"less": "^4.1.3",
|
|
41
|
+
"lint-staged": "^15.2.0",
|
|
37
42
|
"ts-jest": "^29.1.0",
|
|
38
43
|
"typescript": "^5.0.4",
|
|
39
|
-
"vite": "^
|
|
44
|
+
"vite": "^5.0.3"
|
|
40
45
|
},
|
|
41
46
|
"lint-staged": {
|
|
42
47
|
"*.{js,cjs,mjs,ts}": "eslint --cache --fix"
|
|
43
|
-
}
|
|
48
|
+
},
|
|
49
|
+
"resolutions": {
|
|
50
|
+
"semver": "^7.6.0",
|
|
51
|
+
"debug": "^4.3.4",
|
|
52
|
+
"json5": "^2.2.3"
|
|
53
|
+
},
|
|
54
|
+
"packageManager": "pnpm@8.15.4"
|
|
44
55
|
}
|