Skip to content

Commit 2f8b9d8

Browse files
committed
Version 2.2.1
1 parent d662bbf commit 2f8b9d8

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Change [ ] to [x] for completed items.
66

77
- [ ] tests and linter show no problems (`npm t`)
88
- [ ] tests are added/updated for bug fixes and new features
9-
- [ ] code is properly formatted (`npm run fmt`)
9+
- [ ] code is properly formatted (`npm run fix`)
1010
- [ ] description of changes is added in CHANGELOG.md
1111
- [ ] update .d.ts typings

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [Unreleased][unreleased]
44

5+
## [2.2.1][] - 2024-08-31
6+
7+
- Update eslint to 9.x and prettier with configs
8+
- Add node.js 22 to CI
9+
510
## [2.2.0][] - 2024-03-27
611

712
- Add browser support

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metaschema",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"author": "Timur Shemsedinov <[email protected]>",
55
"description": "Metadata Schema and Interface Definition Language (IDL)",
66
"license": "MIT",
@@ -41,7 +41,7 @@
4141
"test": "npm run lint && npm run types && metatests test/",
4242
"types": "tsc -p tsconfig.json",
4343
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\"",
44-
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\""
44+
"fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\""
4545
},
4646
"engines": {
4747
"node": "18 || 20 || 21 || 22"

0 commit comments

Comments
 (0)