@ui5/webcomponents-tools 2.4.0-rc.1 → 2.4.0-rc.3

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,25 @@
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
+ # [2.4.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.2...v2.4.0-rc.3) (2024-10-28)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * dev-server correctly imports yargs ([#10048](https://github.com/SAP/ui5-webcomponents/issues/10048)) ([7b5aa5e](https://github.com/SAP/ui5-webcomponents/commit/7b5aa5ebdddbbc0493f4699c1a74db497e22368b))
12
+
13
+
14
+
15
+
16
+
17
+ # [2.4.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.1...v2.4.0-rc.2) (2024-10-24)
18
+
19
+ **Note:** Version bump only for package @ui5/webcomponents-tools
20
+
21
+
22
+
23
+
24
+
6
25
  # [2.4.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17)
7
26
 
8
27
 
@@ -3,7 +3,7 @@ const fs = require("fs");
3
3
  const LIB = path.join(__dirname, `../lib/`);
4
4
  let websiteBaseUrl = "/";
5
5
 
6
- if (process.env.DEPOY) {
6
+ if (process.env.DEPLOY) {
7
7
  websiteBaseUrl = "/ui5-webcomponents/";
8
8
  } else if (process.env.DEPLOY_NIGHTLY) {
9
9
  websiteBaseUrl = "/ui5-webcomponents/nightly/";
@@ -1,6 +1,6 @@
1
1
  import fs from "fs/promises";
2
2
  import { createServer } from 'vite';
3
- import yargs from 'yargs/yargs';
3
+ import yargs from 'yargs';
4
4
  import { hideBin } from 'yargs/helpers';
5
5
 
6
6
  const argv = yargs(hideBin(process.argv))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-tools",
3
- "version": "2.4.0-rc.1",
3
+ "version": "2.4.0-rc.3",
4
4
  "description": "UI5 Web Components: webcomponents.tools",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -86,5 +86,5 @@
86
86
  "esbuild": "^0.19.9",
87
87
  "yargs": "^17.5.1"
88
88
  },
89
- "gitHead": "478542af62e30ca4df65b0778bcbeab837d583d6"
89
+ "gitHead": "7eba293e225ad5fb62e28e22f313456f116750db"
90
90
  }