@automattic/number-formatters 1.0.16 → 1.0.18
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 +10 -0
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ 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.0.18] - 2026-02-18
|
|
8
|
+
### Changed
|
|
9
|
+
- Set `.repository.url` in `package.json` to the mirror repo rather than the monorepo. [#47149]
|
|
10
|
+
|
|
11
|
+
## [1.0.17] - 2026-02-12
|
|
12
|
+
### Changed
|
|
13
|
+
- Update package dependencies. [#47099]
|
|
14
|
+
|
|
7
15
|
## [1.0.16] - 2026-01-14
|
|
8
16
|
### Changed
|
|
9
17
|
- Internal updates.
|
|
@@ -97,6 +105,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
97
105
|
- Initial release
|
|
98
106
|
- Basic number formatting functionality
|
|
99
107
|
|
|
108
|
+
[1.0.18]: https://github.com/Automattic/number-formatters/compare/1.0.17...1.0.18
|
|
109
|
+
[1.0.17]: https://github.com/Automattic/number-formatters/compare/1.0.16...1.0.17
|
|
100
110
|
[1.0.16]: https://github.com/Automattic/number-formatters/compare/1.0.15...1.0.16
|
|
101
111
|
[1.0.15]: https://github.com/Automattic/number-formatters/compare/1.0.14...1.0.15
|
|
102
112
|
[1.0.14]: https://github.com/Automattic/number-formatters/compare/1.0.13...1.0.14
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/number-formatters",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.18",
|
|
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": {
|
|
@@ -8,8 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "https://github.com/Automattic/
|
|
12
|
-
"directory": "projects/js-packages/number-formatters"
|
|
11
|
+
"url": "git+https://github.com/Automattic/number-formatters.git"
|
|
13
12
|
},
|
|
14
13
|
"license": "GPL-2.0-or-later",
|
|
15
14
|
"author": "Automattic",
|
|
@@ -38,8 +37,8 @@
|
|
|
38
37
|
"tslib": "^2.5.0"
|
|
39
38
|
},
|
|
40
39
|
"devDependencies": {
|
|
41
|
-
"@babel/core": "7.
|
|
42
|
-
"@babel/preset-react": "7.
|
|
40
|
+
"@babel/core": "7.29.0",
|
|
41
|
+
"@babel/preset-react": "7.28.5",
|
|
43
42
|
"@jest/globals": "30.2.0",
|
|
44
43
|
"@knighted/duel": "2.1.5",
|
|
45
44
|
"@types/jest": "30.0.0",
|