@refinitiv-ui/phrasebook 7.0.5 → 7.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 +6 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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
|
+
# [7.1.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/phrasebook@7.0.5...@refinitiv-ui/phrasebook@7.1.0) (2023-10-31)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- adding `type=module` to `package.json` ([#974](https://github.com/Refinitiv/refinitiv-ui/issues/974)) ([9bf21dc](https://github.com/Refinitiv/refinitiv-ui/commit/9bf21dc05cb7ed93e1d14e797c1bf6af85b659d3)), closes [#985](https://github.com/Refinitiv/refinitiv-ui/issues/985)
|
|
11
|
+
|
|
6
12
|
## [7.0.5](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/phrasebook@7.0.4...@refinitiv-ui/phrasebook@7.0.5) (2023-10-24)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@refinitiv-ui/phrasebook",
|
|
3
|
-
"version": "7.0
|
|
4
|
-
"type": "module",
|
|
3
|
+
"version": "7.1.0",
|
|
5
4
|
"description": "Collection of messages in EF components for translation",
|
|
6
5
|
"author": "LSEG",
|
|
7
6
|
"license": "Apache-2.0",
|
|
8
7
|
"main": "./lib/index.js",
|
|
9
8
|
"module": "./lib/index.js",
|
|
9
|
+
"type": "module",
|
|
10
10
|
"types": "./lib/index.d.ts",
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"lint:fix": "eslint . --fix",
|
|
123
123
|
"test": "npm run build && mocha __test__/**/*.test.js --require esm",
|
|
124
124
|
"prepack": "npm run version",
|
|
125
|
-
"version": "node ../../scripts/version/index.
|
|
125
|
+
"version": "node ../../scripts/version/index.js"
|
|
126
126
|
},
|
|
127
127
|
"devDependencies": {
|
|
128
128
|
"chai": "^4.3.7",
|
|
@@ -135,5 +135,5 @@
|
|
|
135
135
|
"dependencies": {
|
|
136
136
|
"tslib": "^2.3.1"
|
|
137
137
|
},
|
|
138
|
-
"gitHead": "
|
|
138
|
+
"gitHead": "f0019ccc2f241a998c5e455b433c0e36720d5fe6"
|
|
139
139
|
}
|