cds-plugin-ui5 0.9.6 → 0.9.8

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 CHANGED
@@ -3,6 +3,28 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.9.8](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.9.7...cds-plugin-ui5@0.9.8) (2024-08-11)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * decouple tooling extensions from UI5 tooling version ([#1058](https://github.com/ui5-community/ui5-ecosystem-showcase/issues/1058)) ([6694c59](https://github.com/ui5-community/ui5-ecosystem-showcase/commit/6694c59422ac37d9aea971679de46f5f59b8025c)), closes [#1054](https://github.com/ui5-community/ui5-ecosystem-showcase/issues/1054)
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.9.7](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.9.6...cds-plugin-ui5@0.9.7) (2024-07-23)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **cds-plugin-ui5:** fix error when resolving symlinks for CDS-DK root ([#1048](https://github.com/ui5-community/ui5-ecosystem-showcase/issues/1048)) ([3b05ada](https://github.com/ui5-community/ui5-ecosystem-showcase/commit/3b05ada1fe2bfac2ecc962af700646030d8c39d8)), closes [#1033](https://github.com/ui5-community/ui5-ecosystem-showcase/issues/1033)
23
+
24
+
25
+
26
+
27
+
6
28
  ## [0.9.6](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.9.5...cds-plugin-ui5@0.9.6) (2024-07-22)
7
29
 
8
30
 
package/cds-plugin.js CHANGED
@@ -78,7 +78,12 @@ if (!skip) {
78
78
 
79
79
  // find out the CDS-DK version to control the behavior of the plugin
80
80
  const getCDSDKVersion = function getCDSDKVersion() {
81
- const cdsDkPath = realpathSync(process.argv[1]);
81
+ let cdsDkPath = process.argv[1];
82
+ try {
83
+ cdsDkPath = realpathSync(cdsDkPath);
84
+ } catch (err) {
85
+ // ignore
86
+ }
82
87
  const cdsDkDir = dirname(cdsDkPath);
83
88
  const packageJsonPath = findPackageJson(cdsDkDir);
84
89
  if (packageJsonPath) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cds-plugin-ui5",
3
- "version": "0.9.6",
3
+ "version": "0.9.8",
4
4
  "description": "A CDS server plugin to inject the middlewares of all related UI5 tooling based projects.",
5
5
  "author": "Peter Muessig",
6
6
  "license": "Apache-2.0",
@@ -11,9 +11,9 @@
11
11
  "directory": "packages/cds-plugin-ui5"
12
12
  },
13
13
  "dependencies": {
14
- "@ui5/fs": "^3.0.5",
15
- "@ui5/project": "^3.9.2",
16
- "@ui5/server": "^3.2.1",
14
+ "@ui5/fs": "^4.0.0",
15
+ "@ui5/project": "^4.0.2",
16
+ "@ui5/server": "^4.0.3",
17
17
  "js-yaml": "^4.1.0",
18
18
  "node-html-parser": "^6.1.13",
19
19
  "semver": "^7.6.3"
@@ -26,5 +26,5 @@
26
26
  "@sap/cds": ">=6.8.2",
27
27
  "express": ">=4.18.2"
28
28
  },
29
- "gitHead": "d17d6b66530a90711be777b9864fe2bf4f27f239"
29
+ "gitHead": "581b5ab698ba9f2cad0b5d4df6c38398c815e50f"
30
30
  }