Skip to content
Commits on Source (99)
......@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
## [0.6.3] - 2023-12-05
### Changed
- Bump vite to 5.0.5
## [0.6.2] - 2023-06-21
### Fixed
......@@ -47,7 +53,8 @@ All notable changes to this project will be documented in this file.
- Start Changelog
[unreleased]: https://gitlab.open-xchange.com/frontend/vite-plugin-ox-manifests/compare/0.6.2...main
[unreleased]: https://gitlab.open-xchange.com/frontend/vite-plugin-ox-manifests/compare/0.6.3...main
[0.6.3]: https://gitlab.open-xchange.com/frontend/vite-plugin-ox-manifests/compare/0.6.2...0.6.3
[0.6.2]: https://gitlab.open-xchange.com/frontend/vite-plugin-ox-manifests/compare/0.6.1...0.6.2
[0.6.1]: https://gitlab.open-xchange.com/frontend/vite-plugin-ox-manifests/compare/0.6.0...0.6.1
[0.6.0]: https://gitlab.open-xchange.com/frontend/vite-plugin-ox-manifests/compare/0.5.4...0.6.0
......
{
"name": "@open-xchange/vite-plugin-ox-manifests",
"version": "0.6.2",
"version": "0.6.3",
"description": "A vite plugin to concat and serve ox manifests",
"main": "dist/index.js",
"types": "dist/index.d.ts",
......@@ -16,7 +16,7 @@
},
"dependencies": {
"@open-xchange/rollup-plugin-po2json": "^0.8.0",
"@open-xchange/vite-plugin-ox-externals": "^0.5.0",
"@open-xchange/vite-plugin-ox-externals": "^0.6.0",
"chokidar": "^3.5.1",
"fast-glob": "^3.2.12",
"magic-string": "^0.30.0",
......@@ -36,9 +36,14 @@
"less": "^4.1.3",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4",
"vite": "^4.2.1"
"vite": "^5.0.3"
},
"lint-staged": {
"*.{js,cjs,mjs,ts}": "eslint --cache --fix"
},
"resolutions": {
"semver": "^7.5.2",
"debug": "^4.3.4",
"json5": "^2.2.2"
}
}
......@@ -100,6 +100,6 @@ describe('Simple manifest scenario', function () {
await server.listen(PORT)
const res = await fetch(`http://localhost:${PORT}/register.js`)
expect(await res.text()).toEqual("console.log('Hello world')\n")
expect(await res.text()).toEqual(expect.stringContaining("console.log('Hello world')\n"))
})
})
......@@ -8,7 +8,7 @@
"declaration": true,
"esModuleInterop": true,
"module": "es2022",
"moduleResolution": "node",
"moduleResolution": "Bundler",
"noEmitOnError": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
......
This diff is collapsed.