@markuplint/i18n 4.5.7 → 4.6.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
@@ -123,6 +123,7 @@
123
123
  "one code point character": { "type": "string" },
124
124
  "one or more elements": { "type": "string" },
125
125
  "one": { "type": "string" },
126
+ "or, ": { "type": "string" },
126
127
  "origin": { "type": "string" },
127
128
  "orphaned end tag": { "type": "string" },
128
129
  "password": { "type": "string" },
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
+ # [4.6.0](https://github.com/markuplint/markuplint/compare/@markuplint/i18n@4.5.7...@markuplint/i18n@4.6.0) (2024-11-17)
7
+
8
+ ### Features
9
+
10
+ - **i18n:** add `Or, ` keyword ([986018b](https://github.com/markuplint/markuplint/commit/986018b0ceedc2e9e02ecf3f7d87763929f4df28))
11
+
6
12
  ## [4.5.7](https://github.com/markuplint/markuplint/compare/@markuplint/i18n@4.5.6...@markuplint/i18n@4.5.7) (2024-10-28)
7
13
 
8
14
  **Note:** Version bump only for package @markuplint/i18n
package/locales/ja.json CHANGED
@@ -111,6 +111,7 @@
111
111
  "one code point character": "1つのコードポイントから成る文字",
112
112
  "one or more elements": "1つ以上の要素",
113
113
  "one": "1",
114
+ "or, ": "もしくは、",
114
115
  "origin": "オリジン",
115
116
  "orphaned end tag": "孤立した終了タグ",
116
117
  "password": "パスワード",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/i18n",
3
- "version": "4.5.7",
3
+ "version": "4.6.0",
4
4
  "description": "Internationalization for markuplint",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -33,9 +33,9 @@
33
33
  },
34
34
  "scripts": {
35
35
  "build": "yarn build:esm; yarn build:cjs; node ./esm.mjs",
36
- "build:esm": "tsc",
37
- "build:cjs": "tsc --module commonjs --outDir cjs",
36
+ "build:esm": "tsc --project tsconfig.build.json",
37
+ "build:cjs": "tsc --project tsconfig.build-cjs.json",
38
38
  "clean": "tsc --build --clean"
39
39
  },
40
- "gitHead": "60a8a7149bd4441e89972ca21b90033afb05b89e"
40
+ "gitHead": "b2154ecf1e67559a3791991752f45c9c0283801a"
41
41
  }