@ui5/webcomponents-tools 2.1.0-rc.3 → 2.1.0

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,14 @@
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.1.0](https://github.com/SAP/ui5-webcomponents/compare/v2.1.0-rc.3...v2.1.0) (2024-08-02)
7
+
8
+ **Note:** Version bump only for package @ui5/webcomponents-tools
9
+
10
+
11
+
12
+
13
+
6
14
  # [2.1.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.1.0-rc.2...v2.1.0-rc.3) (2024-08-01)
7
15
 
8
16
  **Note:** Version bump only for package @ui5/webcomponents-tools
@@ -64,11 +64,11 @@ const getScripts = (options) => {
64
64
  lintfix: `eslint . ${eslintConfig} --fix`,
65
65
  generate: {
66
66
  default: `${tsCrossEnv} nps prepare.all`,
67
- all: 'concurrently "nps build.templates" "nps build.i18n" "nps prepare.styleRelated" "nps copy" "nps build.illustrations"',
67
+ all: 'concurrently "nps build.templates" "nps build.i18n" "nps prepare.styleRelated" "nps copyProps" "nps build.illustrations"',
68
68
  styleRelated: "nps build.styles build.jsonImports build.jsImports",
69
69
  },
70
70
  prepare: {
71
- default: `${tsCrossEnv} nps clean prepare.all copy prepare.typescript generateAPI`,
71
+ default: `${tsCrossEnv} nps clean prepare.all copyProps prepare.typescript generateAPI`,
72
72
  all: 'concurrently "nps build.templates" "nps build.i18n" "nps prepare.styleRelated" "nps build.illustrations"',
73
73
  styleRelated: "nps build.styles build.jsonImports build.jsImports",
74
74
  typescript: tsCommandOld,
@@ -99,18 +99,12 @@ const getScripts = (options) => {
99
99
  bundle2: ``,
100
100
  illustrations: createIllustrationsJSImportsScript,
101
101
  },
102
- copy: {
103
- default: "nps copy.src copy.props",
104
- src: `node "${LIB}/copy-and-watch/index.js" --silent "src/**/*.{js,json}" dist/`,
105
- // srcGenerated2: `node "${LIB}/copy-and-watch/index.js" --silent "src/generated/**/*.{js,json}" dist/generated/`,
106
- props: `node "${LIB}/copy-and-watch/index.js" --silent "src/i18n/*.properties" dist/`,
107
- },
102
+ copyProps: `node "${LIB}/copy-and-watch/index.js" --silent "src/i18n/*.properties" dist/`,
108
103
  watch: {
109
- default: `${tsCrossEnv} concurrently "nps watch.templates" "nps watch.typescript" "nps watch.src" "nps watch.styles" "nps watch.i18n" "nps watch.props"`,
104
+ default: `${tsCrossEnv} concurrently "nps watch.templates" "nps watch.typescript" "nps watch.styles" "nps watch.i18n" "nps watch.props"`,
110
105
  devServer: 'concurrently "nps watch.default" "nps watch.bundle"',
111
- src: 'nps "copy.src --watch --safe --skip-initial-copy"',
112
106
  typescript: tsWatchCommandStandalone,
113
- props: 'nps "copy.props --watch --safe --skip-initial-copy"',
107
+ props: 'nps "copyProps --watch --safe --skip-initial-copy"',
114
108
  bundle: `node ${LIB}/dev-server/dev-server.js ${viteConfig}`,
115
109
  styles: {
116
110
  default: 'concurrently "nps watch.styles.themes" "nps watch.styles.components"',
@@ -137,7 +131,7 @@ const getScripts = (options) => {
137
131
  replace: `node "${LIB}/scoping/scope-test-pages.js" test/pages/scoped demo`,
138
132
  },
139
133
  watchWithBundle: 'concurrently "nps scope.watch" "nps scope.bundle" ',
140
- watch: 'concurrently "nps watch.templates" "nps watch.src" "nps watch.props" "nps watch.styles"',
134
+ watch: 'concurrently "nps watch.templates" "nps watch.props" "nps watch.styles"',
141
135
  bundle: `node ${LIB}/dev-server/dev-server.js ${viteConfig}`,
142
136
  },
143
137
  generateAPI: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-tools",
3
- "version": "2.1.0-rc.3",
3
+ "version": "2.1.0",
4
4
  "description": "UI5 Web Components: webcomponents.tools",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -84,5 +84,5 @@
84
84
  "esbuild": "^0.19.9",
85
85
  "yargs": "^17.5.1"
86
86
  },
87
- "gitHead": "d2d25384e15721c1682b1267f360ed2fefba4c25"
87
+ "gitHead": "3eecdf86ea2ce8b11a56e6a12adcf46fcb1f7600"
88
88
  }