Skip to content

Commit 2679e91

Browse files
committed
Release 2.2.0
1 parent 2d4420c commit 2679e91

File tree

9 files changed

+31
-20
lines changed

9 files changed

+31
-20
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11

22

33

4+
5+
## v2.2.0 (2023-01-26)
6+
7+
#### :rocket: Enhancement
8+
* `checkup-plugin-ember`, `checkup-plugin-javascript`
9+
* [#1319](https://github.com/checkupjs/checkup/pull/1319) Runs eslint and ember-template-lint on additional supported file ext… ([@lin-ll](https://github.com/lin-ll))
10+
11+
#### Committers: 1
12+
- Lucy Lin ([@lin-ll](https://github.com/lin-ll))
13+
14+
415
## v2.1.0 (2022-12-08)
516

617
## v2.0.5 (2022-11-29)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "checkup",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"private": true,
55
"repository": "https://github.com/checkupjs/checkup.git",
66
"license": "MIT",

packages/checkup-plugin-ember/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "checkup-plugin-ember",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "A checkup plugin for Ember project tasks",
55
"keywords": [
66
"checkup-plugin"
@@ -28,7 +28,7 @@
2828
"@babel/parser": "^7.18.0",
2929
"@babel/traverse": "^7.14.2",
3030
"@babel/types": "7.18.8",
31-
"@checkup/core": "^2.1.0",
31+
"@checkup/core": "^2.2.0",
3232
"debug": "^4.3.1",
3333
"ember-template-recast": "^6.1.3",
3434
"eslint-plugin-ember": "^10.6.1",
@@ -37,8 +37,8 @@
3737
"tslib": "^2"
3838
},
3939
"devDependencies": {
40-
"@checkup/plugin": "^2.1.0",
41-
"@checkup/test-helpers": "^2.1.0",
40+
"@checkup/plugin": "^2.2.0",
41+
"@checkup/test-helpers": "^2.2.0",
4242
"@types/lodash.kebabcase": "^4.1.7",
4343
"eslint": "^8.22.0",
4444
"fixturify-project": "^2.1.1",

packages/checkup-plugin-javascript/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "checkup-plugin-javascript",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "A checkup plugin for Javascript project tasks",
55
"keywords": [
66
"checkup-plugin"
@@ -25,7 +25,7 @@
2525
"dependencies": {
2626
"@babel/eslint-parser": "^7.17.0",
2727
"@babel/parser": "^7.18.0",
28-
"@checkup/core": "^2.1.0",
28+
"@checkup/core": "^2.2.0",
2929
"ember-template-recast": "^6.1.3",
3030
"npm-check": "^5.9.2",
3131
"recast": "^0.20.5",
@@ -34,8 +34,8 @@
3434
"tslib": "^2"
3535
},
3636
"devDependencies": {
37-
"@checkup/plugin": "^2.1.0",
38-
"@checkup/test-helpers": "^2.1.0",
37+
"@checkup/plugin": "^2.2.0",
38+
"@checkup/test-helpers": "^2.2.0",
3939
"@types/semver": "^7.3.9",
4040
"fixturify-project": "^2.1.1",
4141
"rimraf": "^3.0.2"

packages/cli/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@checkup/cli",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "A health checkup for your project",
55
"keywords": [
66
"checkup"
@@ -30,8 +30,8 @@
3030
"@babel/parser": "^7.18.0",
3131
"@babel/traverse": "^7.13.17",
3232
"@babel/types": "7.18.8",
33-
"@checkup/core": "2.1.0",
34-
"@checkup/ui": "2.1.0",
33+
"@checkup/core": "2.2.0",
34+
"@checkup/ui": "2.2.0",
3535
"chalk": "^4.0.0",
3636
"clean-stack": "^4.2.0",
3737
"convert-hrtime": "^3.0.0",
@@ -60,7 +60,7 @@
6060
"yeoman-generator": "^5.4.2"
6161
},
6262
"devDependencies": {
63-
"@checkup/test-helpers": "2.1.0",
63+
"@checkup/test-helpers": "2.2.0",
6464
"execa": "^5.0.0",
6565
"yeoman-test": "^6.3.0"
6666
},

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@checkup/core",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "Checkup's core library",
55
"homepage": "https://github.com/checkupjs/checkup",
66
"bugs": "https://github.com/checkupjs/checkup/issues",

packages/plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@checkup/plugin",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "Checkup plugin utility library",
55
"homepage": "https://github.com/checkupjs/checkup",
66
"bugs": "https://github.com/checkupjs/checkup/issues",
@@ -24,7 +24,7 @@
2424
"dependencies": {
2525
"@babel/traverse": "^7.13.17",
2626
"@babel/types": "7.18.8",
27-
"@checkup/core": "^2.1.0",
27+
"@checkup/core": "^2.2.0",
2828
"fs-extra": "^9.1.0",
2929
"recast": "^0.20.5"
3030
},

packages/test-helpers/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@checkup/test-helpers",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "Checkup's test helper library",
55
"homepage": "https://github.com/checkupjs/checkup",
66
"bugs": "https://github.com/checkupjs/checkup/issues",
@@ -19,7 +19,7 @@
1919
"test": "echo \"No tests\""
2020
},
2121
"dependencies": {
22-
"@checkup/core": "2.1.0",
22+
"@checkup/core": "2.2.0",
2323
"fixturify-project": "^2.1.1",
2424
"fs-extra": "^10.1.0",
2525
"handlebars": "^4.7.7",

packages/ui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@checkup/ui",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "Checkup ui library",
55
"bugs": "https://github.com/checkupjs/checkup/issues",
66
"repository": "https://github.com/checkupjs/checkup",
@@ -13,7 +13,7 @@
1313
"test": "vitest run"
1414
},
1515
"dependencies": {
16-
"@checkup/core": "2.1.0",
16+
"@checkup/core": "2.2.0",
1717
"@types/react": "^17.0.15",
1818
"chalk": "^4.0.0",
1919
"events": "^3.3.0",

0 commit comments

Comments
 (0)