@brightlayer-ui/colors 3.1.1-beta.1 → 3.1.1-beta.2
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 +3 -3
- package/package.json +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
-
## v3.1.1 (
|
|
3
|
+
## v3.1.1 (June 20, 2022)
|
|
4
4
|
|
|
5
5
|
### Changed
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- Reverted change from version `3.1.0` & default added a `es2015` build option.
|
|
8
8
|
|
|
9
9
|
## v3.1.0 (April 15, 2022)
|
|
10
10
|
|
|
11
11
|
### Added
|
|
12
12
|
|
|
13
13
|
- Added top level export `BLUIColors`.
|
|
14
|
-
|
|
14
|
+
|
|
15
15
|
### Changed
|
|
16
16
|
|
|
17
17
|
- Changed build module from `commonjs` to `es2015` ([#47](https://github.com/brightlayer-ui/colors/issues/47)).
|
package/package.json
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightlayer-ui/colors",
|
|
3
|
-
"version": "3.1.1-beta.
|
|
3
|
+
"version": "3.1.1-beta.2",
|
|
4
4
|
"description": "Brightlayer UI colors for Eaton applications",
|
|
5
5
|
"main": "./dist/commonjs/index.js",
|
|
6
6
|
"types": "./dist/commonjs/index.d.ts",
|
|
7
|
-
"module": "./dist/es2015/index.js",
|
|
8
|
-
"type": "module",
|
|
9
7
|
"scripts": {
|
|
10
8
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
11
9
|
"build": "yarn && tsc --module commonjs --outDir dist/commonjs && tsc --module ES2015 --outDir dist/es2015",
|