@automattic/number-formatters 1.1.0 → 1.1.1
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 +5 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
6
6
|
|
|
7
|
+
## [1.1.1] - 2026-03-09
|
|
8
|
+
### Changed
|
|
9
|
+
- Switch to Native TypeScript compiler based on Go. [#47375]
|
|
10
|
+
|
|
7
11
|
## [1.1.0] - 2026-02-23
|
|
8
12
|
### Added
|
|
9
13
|
- `getCurrencyObject`: Add `floatValue` property to currency object. [#47203]
|
|
@@ -109,6 +113,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
109
113
|
- Initial release
|
|
110
114
|
- Basic number formatting functionality
|
|
111
115
|
|
|
116
|
+
[1.1.1]: https://github.com/Automattic/number-formatters/compare/1.1.0...1.1.1
|
|
112
117
|
[1.1.0]: https://github.com/Automattic/number-formatters/compare/1.0.18...1.1.0
|
|
113
118
|
[1.0.18]: https://github.com/Automattic/number-formatters/compare/1.0.17...1.0.18
|
|
114
119
|
[1.0.17]: https://github.com/Automattic/number-formatters/compare/1.0.16...1.0.17
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/number-formatters",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Number formatting utilities",
|
|
5
5
|
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/number-formatters/#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"clean": "rm -rf dist",
|
|
30
30
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
31
31
|
"test-coverage": "pnpm run test --coverage",
|
|
32
|
-
"typecheck": "
|
|
32
|
+
"typecheck": "tsgo --noEmit"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@wordpress/date": "^5.19.0",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"@jest/globals": "30.2.0",
|
|
43
43
|
"@knighted/duel": "2.1.5",
|
|
44
44
|
"@types/jest": "30.0.0",
|
|
45
|
+
"@typescript/native-preview": "7.0.0-dev.20260225.1",
|
|
45
46
|
"jest": "30.2.0",
|
|
46
47
|
"typescript": "5.9.3"
|
|
47
48
|
}
|