@ui5/webcomponents-theming 1.12.0-rc.3 → 1.12.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/.npsrc.json ADDED
@@ -0,0 +1,3 @@
1
+ {
2
+ "config": "./package-scripts.cjs"
3
+ }
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
+ # [1.12.0](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.3...v1.12.0) (2023-04-04)
7
+
8
+ **Note:** Version bump only for package @ui5/webcomponents-theming
9
+
10
+
11
+
12
+
13
+
6
14
  # [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
15
 
8
16
  **Note:** Version bump only for package @ui5/webcomponents-theming
@@ -1,6 +1,10 @@
1
- const fs = require('fs').promises;
2
- const path = require("path");
3
- const beautify = require("json-beautify");
1
+ import fs from "fs/promises";
2
+ import path from "path";
3
+ import beautify from "json-beautify";
4
+ import { fileURLToPath } from 'url';
5
+
6
+ const __filename = fileURLToPath(import.meta.url);
7
+ const __dirname = path.dirname(__filename);
4
8
 
5
9
  const vars = new Set();
6
10
 
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-theming",
3
- "version": "1.12.0-rc.3",
3
+ "version": "1.12.0",
4
4
  "description": "UI5 Web Components: webcomponents.theming",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
7
7
  "private": false,
8
+ "type": "module",
8
9
  "keywords": [
9
10
  "openui5",
10
11
  "sapui5",
@@ -29,10 +30,10 @@
29
30
  },
30
31
  "dependencies": {
31
32
  "@sap-theming/theming-base-content": "11.2.1",
32
- "@ui5/webcomponents-base": "1.12.0-rc.3"
33
+ "@ui5/webcomponents-base": "1.12.0"
33
34
  },
34
35
  "devDependencies": {
35
- "@ui5/webcomponents-tools": "1.12.0-rc.3",
36
+ "@ui5/webcomponents-tools": "1.12.0",
36
37
  "chromedriver": "110.0.0",
37
38
  "cssnano": "^4.1.11",
38
39
  "globby": "^13.1.1",
@@ -43,5 +44,5 @@
43
44
  "resolve": "^1.20.0"
44
45
  },
45
46
  "resolutions": {},
46
- "gitHead": "ae6ca4708b81a04de42ec2be50383fa80630e250"
47
+ "gitHead": "a3ea5367f668040c721ca45d3bf73f560c3ae9af"
47
48
  }
File without changes