You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(tools): remove js option from generation templates (#8503)
With the release of version 2.0, we strongly encourage component development to be done in TypeScript. Consequently, we are discontinuing the option to generate JavaScript projects and components, as the tooling will no longer support them by default.
BREAKING CHANGE: Remove JavaScript template option from @ui5/create-webcomponents-package
Previously `npm init @ui5/webcomponents-package` used to create JS-based project, however now it will be TypeScript-based project.
If you previously used `npm init @ui5/webcomponents-package --enable-typescript` to create TypeScript-based project, now it's by default, e.g `npm init @ui5/webcomponents-package` and `--enable-typescript` is removed.
Related to [#8461](#8461)
Copy file name to clipboardexpand all lines: packages/create-package/README.md
-2
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,6 @@ Options:
21
21
--name <string> - defines the package name
22
22
--component-name <string> - defines the component class name that will be created in your new package
23
23
--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.
24
-
--enable-typescript - enables TypeScript support for the package
25
24
--skip - skips configuration and generates package with a default value for each parameter that wasn't passed
26
25
```
27
26
@@ -37,7 +36,6 @@ Options:
37
36
--name <string> - defines the package name
38
37
--component-name <string> - defines the component class name that will be created in your new package
39
38
--tag <string> - defines the tag name of the sample web component that will be created in your new package
40
-
--enable-typescript - enables TypeScript support for the package
41
39
--skip - skips configuration and generates package with a default value for each parameter that wasn't passed
0 commit comments