@ui5/create-webcomponents-package 1.14.0-rc.2 → 1.14.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 +16 -0
- package/README.md +3 -2
- package/create-package.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,22 @@
|
|
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
|
+
## [1.14.1](https://github.com/SAP/ui5-webcomponents/compare/v1.14.0...v1.14.1) (2023-06-08)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
# [1.14.0](https://github.com/SAP/ui5-webcomponents/compare/v1.14.0-rc.2...v1.14.0) (2023-06-01)
|
15
|
+
|
16
|
+
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
6
22
|
# [1.14.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.14.0-rc.1...v1.14.0-rc.2) (2023-06-01)
|
7
23
|
|
8
24
|
**Note:** Version bump only for package @ui5/create-webcomponents-package
|
package/README.md
CHANGED
@@ -18,8 +18,8 @@ Usage:
|
|
18
18
|
|
19
19
|
Options:
|
20
20
|
--name <string> - defines the package name
|
21
|
-
--
|
22
|
-
--tag <string> - defines the tag name of the sample web component that will be created in your new package. The tag will be derived from the component name if not provided.
|
21
|
+
--component-name <string> - defines the component class name that will be created in your new package
|
22
|
+
--tag <string> - defines the tag name of the sample web component that will be created in your new package. The tag will be derived from the component name if not provided.
|
23
23
|
--enable-typescript - enables TypeScript support for the package
|
24
24
|
--skip - skips configuration and generates package with a default value for each parameter that wasn't passed
|
25
25
|
```
|
@@ -34,6 +34,7 @@ Usage:
|
|
34
34
|
yarn create @ui5/webcomponents-package [OPTIONS]
|
35
35
|
Options:
|
36
36
|
--name <string> - defines the package name
|
37
|
+
--component-name <string> - defines the component class name that will be created in your new package
|
37
38
|
--tag <string> - defines the tag name of the sample web component that will be created in your new package
|
38
39
|
--enable-typescript - enables TypeScript support for the package
|
39
40
|
--skip - skips configuration and generates package with a default value for each parameter that wasn't passed
|
package/create-package.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ui5/create-webcomponents-package",
|
3
|
-
"version": "1.14.
|
3
|
+
"version": "1.14.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": "d811e609eaa8538f65f1d0e2f0fa7cf6b6060fca"
|
28
28
|
}
|