@ui5/create-webcomponents-package 2.4.0-rc.0 → 2.4.0-rc.1
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 +11 -0
- package/create-package.js +1 -0
- package/package.json +2 -2
- package/template/.eslintignore +1 -1
- package/template/.npsrc.json +3 -0
- package/template/test/pages/css/index.css +5 -0
- package/template/test/pages/img/logo.png +0 -0
- package/template/test/pages/index.html +1 -1
- package/template/test/specs/Demo.spec.js +1 -1
- package/template/tsconfig.json +2 -0
- /package/template/{.eslintrc.js → .eslintrc.cjs} +0 -0
- /package/template/config/{wdio.conf.js → wdio.conf.cjs} +0 -0
- /package/template/{package-scripts.js → package-scripts.cjs} +0 -0
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,17 @@
|
|
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.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17)
|
7
|
+
|
8
|
+
|
9
|
+
### Features
|
10
|
+
|
11
|
+
* **create-package:** produce packages of type="module" ([#9993](https://github.com/SAP/ui5-webcomponents/issues/9993)) ([b161f60](https://github.com/SAP/ui5-webcomponents/commit/b161f601253b966fc0bb7a01213165c0963c85ca))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
6
17
|
# [2.4.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.3.1-rc.0...v2.4.0-rc.0) (2024-10-10)
|
7
18
|
|
8
19
|
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
package/create-package.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ui5/create-webcomponents-package",
|
3
|
-
"version": "2.4.0-rc.
|
3
|
+
"version": "2.4.0-rc.1",
|
4
4
|
"description": "UI5 Web Components: create package",
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
6
6
|
"license": "Apache-2.0",
|
@@ -24,5 +24,5 @@
|
|
24
24
|
"prompts": "^2.4.1",
|
25
25
|
"yargs": "^17.5.1"
|
26
26
|
},
|
27
|
-
"gitHead": "
|
27
|
+
"gitHead": "478542af62e30ca4df65b0778bcbeab837d583d6"
|
28
28
|
}
|
package/template/.eslintignore
CHANGED
Binary file
|
@@ -21,7 +21,7 @@
|
|
21
21
|
|
22
22
|
<body>
|
23
23
|
<div class="app">
|
24
|
-
<a href="https://sap.github.io/ui5-webcomponents/docs/getting-started/first-steps/" target="_blank"><img src="./img/logo.png" alt="logo"/></a>
|
24
|
+
<a href="https://sap.github.io/ui5-webcomponents/docs/getting-started/first-steps/" target="_blank"><img src="./img/logo.png" class="app-logo" alt="logo"/></a>
|
25
25
|
|
26
26
|
<div class="app-first-component">
|
27
27
|
<h1>Hooray! It's Your First Web Component!</h1>
|
package/template/tsconfig.json
CHANGED
File without changes
|
File without changes
|
File without changes
|