@markuplint/i18n 4.6.0 → 4.7.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/$schema.json +1 -0
- package/CHANGELOG.md +10 -0
- package/locales/ja.json +1 -0
- package/package.json +6 -5
package/$schema.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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
|
+
# [4.7.0](https://github.com/markuplint/markuplint/compare/@markuplint/i18n@4.6.0...@markuplint/i18n@4.7.0) (2025-08-13)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- ensure that each `clean` command correctly removes build files ([110b78e](https://github.com/markuplint/markuplint/commit/110b78e85379d29a84ca68325127344a87a570b6))
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- **i18n:** add new sentence format pattern '{0} {1}' ([6b61b5b](https://github.com/markuplint/markuplint/commit/6b61b5b03ad441c253fbeb921e0604509b7d32e3))
|
|
15
|
+
|
|
6
16
|
# [4.6.0](https://github.com/markuplint/markuplint/compare/@markuplint/i18n@4.5.7...@markuplint/i18n@4.6.0) (2024-11-17)
|
|
7
17
|
|
|
8
18
|
### Features
|
package/locales/ja.json
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/i18n",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.0",
|
|
4
4
|
"description": "Internationalization for markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"private": false,
|
|
9
8
|
"main": "./cjs/index.js",
|
|
10
9
|
"types": "./cjs/index.d.ts",
|
|
11
10
|
"exports": {
|
|
@@ -32,10 +31,12 @@
|
|
|
32
31
|
"entryPoint": "./src/index.ts"
|
|
33
32
|
},
|
|
34
33
|
"scripts": {
|
|
35
|
-
"build": "yarn build:esm
|
|
34
|
+
"build": "yarn build:esm && yarn build:cjs && node ./esm.mjs",
|
|
36
35
|
"build:esm": "tsc --project tsconfig.build.json",
|
|
37
36
|
"build:cjs": "tsc --project tsconfig.build-cjs.json",
|
|
38
|
-
"clean": "
|
|
37
|
+
"clean": "yarn clean:esm && yarn clean:cjs",
|
|
38
|
+
"clean:esm": "tsc --build --clean tsconfig.build.json",
|
|
39
|
+
"clean:cjs": "tsc --build --clean tsconfig.build-cjs.json"
|
|
39
40
|
},
|
|
40
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "acbf53f7e30d7a59f850a0f279b617383266dab3"
|
|
41
42
|
}
|