@markuplint/i18n 4.5.7 → 4.6.1-dev.350
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 +6 -0
- package/locales/ja.json +1 -0
- package/package.json +4 -4
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/i18n",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.6.1-dev.350+16e148e6e",
|
|
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 --
|
|
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": "
|
|
40
|
+
"gitHead": "16e148e6ec2abac673c5ea1e42bbb666d421f357"
|
|
41
41
|
}
|