@ui5/webcomponents-localization 1.12.0-rc.3 → 1.13.0-rc.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/.eslintignore +1 -1
- package/.npsrc.json +3 -0
- package/CHANGELOG.md +16 -0
- package/{package-scripts.js → package-scripts.cjs} +1 -2
- package/package.json +5 -4
- package/config/.eslintrc.js +0 -3
- /package/{.eslintrc.js → .eslintrc.cjs} +0 -0
package/.eslintignore
CHANGED
package/.npsrc.json
ADDED
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.13.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0...v1.13.0-rc.0) (2023-04-06)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @ui5/webcomponents-localization
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
# [1.12.0](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.3...v1.12.0) (2023-04-04)
|
15
|
+
|
16
|
+
**Note:** Version bump only for package @ui5/webcomponents-localization
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
6
22
|
# [1.12.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.2...v1.12.0-rc.3) (2023-03-30)
|
7
23
|
|
8
24
|
**Note:** Version bump only for package @ui5/webcomponents-localization
|
@@ -5,7 +5,7 @@ const esmAbsToRel = resolve.sync("@ui5/webcomponents-tools/lib/esm-abs-to-rel/in
|
|
5
5
|
|
6
6
|
const scripts = {
|
7
7
|
clean: "rimraf dist",
|
8
|
-
lint: "
|
8
|
+
lint: "eslint .",
|
9
9
|
build: {
|
10
10
|
"default": "nps lint clean copy.used-modules copy.cldr copy.overlay build.replace-amd build.replace-export-true build.replace-export-false build.amd-to-es6 build.replace-global-core-usage build.esm-abs-to-rel build.jsonImports build.typescript copy.src",
|
11
11
|
"replace-amd": "replace-in-file sap.ui.define define dist/**/*.js",
|
@@ -32,7 +32,6 @@ const scripts = {
|
|
32
32
|
start: "nps watch",
|
33
33
|
};
|
34
34
|
|
35
|
-
|
36
35
|
module.exports = {
|
37
36
|
scripts,
|
38
37
|
};
|
package/package.json
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ui5/webcomponents-localization",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.13.0-rc.0",
|
4
4
|
"description": "Localization for UI5 Web Components",
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
6
6
|
"license": "Apache-2.0",
|
7
|
+
"type": "module",
|
7
8
|
"keywords": [
|
8
9
|
"openui5",
|
9
10
|
"sapui5",
|
@@ -28,14 +29,14 @@
|
|
28
29
|
},
|
29
30
|
"devDependencies": {
|
30
31
|
"@openui5/sap.ui.core": "1.109.0",
|
31
|
-
"@ui5/webcomponents-tools": "1.
|
32
|
+
"@ui5/webcomponents-tools": "1.13.0-rc.0",
|
32
33
|
"chromedriver": "110.0.0",
|
33
34
|
"mkdirp": "^1.0.4",
|
34
35
|
"resolve": "^1.20.0"
|
35
36
|
},
|
36
37
|
"dependencies": {
|
37
38
|
"@types/openui5": "^1.109.0",
|
38
|
-
"@ui5/webcomponents-base": "1.
|
39
|
+
"@ui5/webcomponents-base": "1.13.0-rc.0"
|
39
40
|
},
|
40
|
-
"gitHead": "
|
41
|
+
"gitHead": "91e44c0f44a29c545724fa181ca4611b4a2aee78"
|
41
42
|
}
|
package/config/.eslintrc.js
DELETED
File without changes
|