@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 CHANGED
@@ -183,6 +183,7 @@
183
183
  "type": "object",
184
184
  "additionalProperties": false,
185
185
  "properties": {
186
+ "{0} {1}": { "type": "string" },
186
187
  "{0:c} and {1:c}": { "type": "string" },
187
188
  "{0:c} on {1}": { "type": "string" },
188
189
  "{0} ({1})": { "type": "string" },
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
@@ -167,6 +167,7 @@
167
167
  "zero": "ゼロ"
168
168
  },
169
169
  "sentences": {
170
+ "{0} {1}": "{0}{1}",
170
171
  "{0:c} and {1:c}": "{0}且つ、{1}",
171
172
  "{0:c} on {1}": "{1}では、{0:c}",
172
173
  "{0} ({1})": "{0}({1})",
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@markuplint/i18n",
3
- "version": "4.6.0",
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; yarn build:cjs; node ./esm.mjs",
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": "tsc --build --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": "b2154ecf1e67559a3791991752f45c9c0283801a"
41
+ "gitHead": "acbf53f7e30d7a59f850a0f279b617383266dab3"
41
42
  }