@ember/app-blueprint 6.12.0-alpha.4 → 6.12.0-beta.1
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.
|
@@ -11,6 +11,7 @@ on:
|
|
|
11
11
|
- master
|
|
12
12
|
- release
|
|
13
13
|
- beta
|
|
14
|
+
- v-*
|
|
14
15
|
paths:
|
|
15
16
|
- '.release-plan.json'
|
|
16
17
|
|
|
@@ -41,12 +42,12 @@ jobs:
|
|
|
41
42
|
# pass --github-prerelease when we are only branch other than release
|
|
42
43
|
# pass --publish-branch=<branch-name> when we are on a branch other than master/main
|
|
43
44
|
run: |
|
|
44
|
-
if [ ${{ github.ref }} = "refs/heads/
|
|
45
|
-
pnpm release-plan publish --publish-branch=release
|
|
46
|
-
elif [ ${{ github.ref }} = "refs/heads/beta" ]; then
|
|
45
|
+
if [ ${{ github.ref }} = "refs/heads/beta" ]; then
|
|
47
46
|
pnpm release-plan publish --github-prerelease --publish-branch=beta
|
|
48
|
-
|
|
47
|
+
elif [ ${{ github.ref }} = "refs/heads/main" ]; then
|
|
49
48
|
pnpm release-plan publish --github-prerelease
|
|
49
|
+
else
|
|
50
|
+
pnpm release-plan publish --publish-branch=${{github.ref_name}}
|
|
50
51
|
fi
|
|
51
52
|
env:
|
|
52
53
|
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
|
package/.release-plan.json
CHANGED
|
@@ -1,15 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"solution": {
|
|
3
3
|
"@ember/app-blueprint": {
|
|
4
|
-
"impact": "
|
|
5
|
-
"oldVersion": "6.12.0-
|
|
6
|
-
"newVersion": "6.12.0-
|
|
7
|
-
"tagName": "
|
|
4
|
+
"impact": "minor",
|
|
5
|
+
"oldVersion": "6.12.0-beta.0",
|
|
6
|
+
"newVersion": "6.12.0-beta.1",
|
|
7
|
+
"tagName": "beta",
|
|
8
8
|
"constraints": [
|
|
9
|
+
{
|
|
10
|
+
"impact": "minor",
|
|
11
|
+
"reason": "Appears in changelog section :rocket: Enhancement"
|
|
12
|
+
},
|
|
9
13
|
{
|
|
10
14
|
"impact": "patch",
|
|
11
15
|
"reason": "Appears in changelog section :bug: Bug Fix"
|
|
12
16
|
},
|
|
17
|
+
{
|
|
18
|
+
"impact": "patch",
|
|
19
|
+
"reason": "Appears in changelog section :memo: Documentation"
|
|
20
|
+
},
|
|
13
21
|
{
|
|
14
22
|
"impact": "patch",
|
|
15
23
|
"reason": "Appears in changelog section :house: Internal"
|
|
@@ -18,5 +26,5 @@
|
|
|
18
26
|
"pkgJSONPath": "./package.json"
|
|
19
27
|
}
|
|
20
28
|
},
|
|
21
|
-
"description": "## Release (2026-02
|
|
29
|
+
"description": "## Release (2026-04-02)\n\n* @ember/app-blueprint 6.12.0-beta.1 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#238](https://github.com/ember-cli/ember-app-blueprint/pull/238) Promote 6.12 to beta and update dependencies ([@mansona](https://github.com/mansona))\n * [#144](https://github.com/ember-cli/ember-app-blueprint/pull/144) feat: move ember-cli-build to `mjs` ([@aklkv](https://github.com/aklkv))\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#231](https://github.com/ember-cli/ember-app-blueprint/pull/231) update ember-cli dependency to latest ([@mansona](https://github.com/mansona))\n * [#226](https://github.com/ember-cli/ember-app-blueprint/pull/226) fix decorator-transforms runtime path in babel.config.mjs ([@mansona](https://github.com/mansona))\n * [#215](https://github.com/ember-cli/ember-app-blueprint/pull/215) upgrade ember/optional-features to clear install deprecation warnings ([@void-mAlex](https://github.com/void-mAlex))\n * [#119](https://github.com/ember-cli/ember-app-blueprint/pull/119) fix: align linters with recent changes in classic app blueprint ([@aklkv](https://github.com/aklkv))\n * [#208](https://github.com/ember-cli/ember-app-blueprint/pull/208) [Bugfix release] Add `globals.browser` to eslint config for TS files ([@mkszepp](https://github.com/mkszepp))\n\n#### :memo: Documentation\n* `@ember/app-blueprint`\n * [#204](https://github.com/ember-cli/ember-app-blueprint/pull/204) Update Release.md ([@mansona](https://github.com/mansona))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#228](https://github.com/ember-cli/ember-app-blueprint/pull/228) Enable patch publish ([@mansona](https://github.com/mansona))\n * [#211](https://github.com/ember-cli/ember-app-blueprint/pull/211) fix release-plan alpha tag ([@mansona](https://github.com/mansona))\n\n#### Committers: 4\n- Alex ([@void-mAlex](https://github.com/void-mAlex))\n- Alexey Kulakov ([@aklkv](https://github.com/aklkv))\n- Chris Manson ([@mansona](https://github.com/mansona))\n- Markus Sanin ([@mkszepp](https://github.com/mkszepp))\n"
|
|
22
30
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,122 +1,100 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## Release (2026-02
|
|
3
|
+
## Release (2026-04-02)
|
|
4
4
|
|
|
5
|
-
* @ember/app-blueprint 6.12.0-
|
|
5
|
+
* @ember/app-blueprint 6.12.0-beta.1 (minor)
|
|
6
|
+
|
|
7
|
+
#### :rocket: Enhancement
|
|
8
|
+
* `@ember/app-blueprint`
|
|
9
|
+
* [#238](https://github.com/ember-cli/ember-app-blueprint/pull/238) Promote 6.12 to beta and update dependencies ([@mansona](https://github.com/mansona))
|
|
10
|
+
* [#144](https://github.com/ember-cli/ember-app-blueprint/pull/144) feat: move ember-cli-build to `mjs` ([@aklkv](https://github.com/aklkv))
|
|
6
11
|
|
|
7
12
|
#### :bug: Bug Fix
|
|
8
13
|
* `@ember/app-blueprint`
|
|
14
|
+
* [#231](https://github.com/ember-cli/ember-app-blueprint/pull/231) update ember-cli dependency to latest ([@mansona](https://github.com/mansona))
|
|
15
|
+
* [#226](https://github.com/ember-cli/ember-app-blueprint/pull/226) fix decorator-transforms runtime path in babel.config.mjs ([@mansona](https://github.com/mansona))
|
|
9
16
|
* [#215](https://github.com/ember-cli/ember-app-blueprint/pull/215) upgrade ember/optional-features to clear install deprecation warnings ([@void-mAlex](https://github.com/void-mAlex))
|
|
10
|
-
* [#
|
|
11
|
-
* [#
|
|
17
|
+
* [#119](https://github.com/ember-cli/ember-app-blueprint/pull/119) fix: align linters with recent changes in classic app blueprint ([@aklkv](https://github.com/aklkv))
|
|
18
|
+
* [#208](https://github.com/ember-cli/ember-app-blueprint/pull/208) [Bugfix release] Add `globals.browser` to eslint config for TS files ([@mkszepp](https://github.com/mkszepp))
|
|
19
|
+
|
|
20
|
+
#### :memo: Documentation
|
|
21
|
+
* `@ember/app-blueprint`
|
|
22
|
+
* [#204](https://github.com/ember-cli/ember-app-blueprint/pull/204) Update Release.md ([@mansona](https://github.com/mansona))
|
|
12
23
|
|
|
13
24
|
#### :house: Internal
|
|
14
25
|
* `@ember/app-blueprint`
|
|
15
|
-
* [#
|
|
16
|
-
* [#
|
|
17
|
-
* [#217](https://github.com/ember-cli/ember-app-blueprint/pull/217) update release-plan to support OIDC ([@mansona](https://github.com/mansona))
|
|
18
|
-
* [#203](https://github.com/ember-cli/ember-app-blueprint/pull/203) Prepare Beta Release v6.11.0-beta.2 ([@github-actions[bot]](https://github.com/apps/github-actions))
|
|
19
|
-
* [#206](https://github.com/ember-cli/ember-app-blueprint/pull/206) Merge release into beta ([@mansona](https://github.com/mansona))
|
|
20
|
-
* [#201](https://github.com/ember-cli/ember-app-blueprint/pull/201) Prepare Stable Release v6.10.3 ([@github-actions[bot]](https://github.com/apps/github-actions))
|
|
26
|
+
* [#228](https://github.com/ember-cli/ember-app-blueprint/pull/228) Enable patch publish ([@mansona](https://github.com/mansona))
|
|
27
|
+
* [#211](https://github.com/ember-cli/ember-app-blueprint/pull/211) fix release-plan alpha tag ([@mansona](https://github.com/mansona))
|
|
21
28
|
|
|
22
|
-
#### Committers:
|
|
29
|
+
#### Committers: 4
|
|
23
30
|
- Alex ([@void-mAlex](https://github.com/void-mAlex))
|
|
31
|
+
- Alexey Kulakov ([@aklkv](https://github.com/aklkv))
|
|
24
32
|
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
25
|
-
- Edward Faulkner ([@ef4](https://github.com/ef4))
|
|
26
|
-
- GitHub Actions [Bot] ([@github-actions](https://github.com/apps/github-actions))
|
|
27
33
|
- Markus Sanin ([@mkszepp](https://github.com/mkszepp))
|
|
28
34
|
|
|
29
|
-
## Release (2026-
|
|
35
|
+
## Release (2026-03-03)
|
|
30
36
|
|
|
31
|
-
* @ember/app-blueprint 6.
|
|
37
|
+
* @ember/app-blueprint 6.11.2 (patch)
|
|
32
38
|
|
|
33
|
-
#### :
|
|
39
|
+
#### :bug: Bug Fix
|
|
34
40
|
* `@ember/app-blueprint`
|
|
35
|
-
* [#
|
|
41
|
+
* [#231](https://github.com/ember-cli/ember-app-blueprint/pull/231) update ember-cli dependency to latest ([@mansona](https://github.com/mansona))
|
|
36
42
|
|
|
37
43
|
#### Committers: 1
|
|
38
|
-
-
|
|
44
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
39
45
|
|
|
40
|
-
## Release (2026-
|
|
46
|
+
## Release (2026-03-01)
|
|
41
47
|
|
|
42
|
-
* @ember/app-blueprint 6.
|
|
48
|
+
* @ember/app-blueprint 6.11.1 (patch)
|
|
43
49
|
|
|
44
50
|
#### :bug: Bug Fix
|
|
45
51
|
* `@ember/app-blueprint`
|
|
46
|
-
* [#
|
|
47
|
-
* [#208](https://github.com/ember-cli/ember-app-blueprint/pull/208) [Bugfix release] Add `globals.browser` to eslint config for TS files ([@mkszepp](https://github.com/mkszepp))
|
|
52
|
+
* [#226](https://github.com/ember-cli/ember-app-blueprint/pull/226) fix decorator-transforms runtime path in babel.config.mjs ([@mansona](https://github.com/mansona))
|
|
48
53
|
|
|
49
|
-
#### Committers:
|
|
50
|
-
-
|
|
51
|
-
- Markus Sanin ([@mkszepp](https://github.com/mkszepp))
|
|
54
|
+
#### Committers: 1
|
|
55
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
52
56
|
|
|
53
|
-
## Release (2026-
|
|
57
|
+
## Release (2026-02-17)
|
|
54
58
|
|
|
55
|
-
* @ember/app-blueprint 6.
|
|
59
|
+
* @ember/app-blueprint 6.11.0 (minor)
|
|
56
60
|
|
|
57
|
-
#### :
|
|
61
|
+
#### :rocket: Enhancement
|
|
58
62
|
* `@ember/app-blueprint`
|
|
59
|
-
* [#
|
|
63
|
+
* [#222](https://github.com/ember-cli/ember-app-blueprint/pull/222) Promote Beta and update all dependencies for 6.11 release ([@mansona](https://github.com/mansona))
|
|
60
64
|
|
|
61
65
|
#### :house: Internal
|
|
62
66
|
* `@ember/app-blueprint`
|
|
63
|
-
* [#
|
|
67
|
+
* [#158](https://github.com/ember-cli/ember-app-blueprint/pull/158) update RELEASE.md ([@mansona](https://github.com/mansona))
|
|
64
68
|
|
|
65
69
|
#### Committers: 1
|
|
66
70
|
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
67
71
|
|
|
68
|
-
## Release (2026-
|
|
72
|
+
## Release (2026-02-09)
|
|
69
73
|
|
|
70
|
-
* @ember/app-blueprint 6.
|
|
71
|
-
|
|
72
|
-
#### :rocket: Enhancement
|
|
73
|
-
* `@ember/app-blueprint`
|
|
74
|
-
* [#190](https://github.com/ember-cli/ember-app-blueprint/pull/190) Promote Beta and update all dependencies for 6.10 release ([@mansona](https://github.com/mansona))
|
|
74
|
+
* @ember/app-blueprint 6.10.4 (patch)
|
|
75
75
|
|
|
76
76
|
#### :bug: Bug Fix
|
|
77
77
|
* `@ember/app-blueprint`
|
|
78
|
-
* [#
|
|
79
|
-
* [#195](https://github.com/ember-cli/ember-app-blueprint/pull/195) add sort-package-json as a dependency ([@mansona](https://github.com/mansona))
|
|
80
|
-
* [#187](https://github.com/ember-cli/ember-app-blueprint/pull/187) [bugfix beta] Revert "Add --minimal and --no-compat" ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
81
|
-
|
|
82
|
-
#### :memo: Documentation
|
|
83
|
-
* `@ember/app-blueprint`
|
|
84
|
-
* [#158](https://github.com/ember-cli/ember-app-blueprint/pull/158) update RELEASE.md ([@mansona](https://github.com/mansona))
|
|
78
|
+
* [#209](https://github.com/ember-cli/ember-app-blueprint/pull/209) Remove unnecessary empty lines when `--no-warp-drive` was passed ([@mkszepp](https://github.com/mkszepp))
|
|
85
79
|
|
|
86
80
|
#### :house: Internal
|
|
87
81
|
* `@ember/app-blueprint`
|
|
88
|
-
* [#
|
|
89
|
-
* [#200](https://github.com/ember-cli/ember-app-blueprint/pull/200) Prepare Beta Release v6.11.0-beta.1 ([@github-actions[bot]](https://github.com/apps/github-actions))
|
|
90
|
-
* [#199](https://github.com/ember-cli/ember-app-blueprint/pull/199) Prepare 6.11 Beta ([@mansona](https://github.com/mansona))
|
|
82
|
+
* [#217](https://github.com/ember-cli/ember-app-blueprint/pull/217) update release-plan to support OIDC ([@mansona](https://github.com/mansona))
|
|
91
83
|
|
|
92
|
-
#### Committers:
|
|
84
|
+
#### Committers: 2
|
|
93
85
|
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
94
|
-
- [@
|
|
95
|
-
- [@github-actions[bot]](https://github.com/apps/github-actions)
|
|
86
|
+
- Markus Sanin ([@mkszepp](https://github.com/mkszepp))
|
|
96
87
|
|
|
97
88
|
## Release (2026-01-23)
|
|
98
89
|
|
|
99
|
-
* @ember/app-blueprint 6.
|
|
100
|
-
|
|
101
|
-
#### :rocket: Enhancement
|
|
102
|
-
* `@ember/app-blueprint`
|
|
103
|
-
* [#190](https://github.com/ember-cli/ember-app-blueprint/pull/190) Promote Beta and update all dependencies for 6.10 release ([@mansona](https://github.com/mansona))
|
|
90
|
+
* @ember/app-blueprint 6.10.3 (patch)
|
|
104
91
|
|
|
105
92
|
#### :bug: Bug Fix
|
|
106
93
|
* `@ember/app-blueprint`
|
|
107
|
-
* [#
|
|
108
|
-
* [#195](https://github.com/ember-cli/ember-app-blueprint/pull/195) add sort-package-json as a dependency ([@mansona](https://github.com/mansona))
|
|
109
|
-
|
|
110
|
-
#### :memo: Documentation
|
|
111
|
-
* `@ember/app-blueprint`
|
|
112
|
-
* [#158](https://github.com/ember-cli/ember-app-blueprint/pull/158) update RELEASE.md ([@mansona](https://github.com/mansona))
|
|
113
|
-
|
|
114
|
-
#### :house: Internal
|
|
115
|
-
* `@ember/app-blueprint`
|
|
116
|
-
* [#199](https://github.com/ember-cli/ember-app-blueprint/pull/199) Prepare 6.11 Beta ([@mansona](https://github.com/mansona))
|
|
94
|
+
* [#205](https://github.com/ember-cli/ember-app-blueprint/pull/205) [bugfix release] Auto-choose correct compilerPath ([@ef4](https://github.com/ef4))
|
|
117
95
|
|
|
118
96
|
#### Committers: 1
|
|
119
|
-
-
|
|
97
|
+
- Edward Faulkner ([@ef4](https://github.com/ef4))
|
|
120
98
|
|
|
121
99
|
## Release (2026-01-23)
|
|
122
100
|
|
package/files/package.json
CHANGED
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"./*": "./app/*"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@babel/core": "^7.
|
|
34
|
+
"@babel/core": "^7.29.0",
|
|
35
35
|
"@babel/runtime": "^7.28.6",
|
|
36
|
-
"@babel/plugin-transform-runtime": "^7.
|
|
36
|
+
"@babel/plugin-transform-runtime": "^7.29.0<% if (typescript) { %>",
|
|
37
37
|
"@babel/plugin-transform-typescript": "^7.28.6<% } %>",
|
|
38
38
|
"@babel/eslint-parser": "^7.28.6<% if (typescript) { %>",
|
|
39
39
|
"@ember/app-tsconfig": "^1.0.3<% } %>",
|
|
@@ -41,18 +41,18 @@
|
|
|
41
41
|
"@ember/string": "^4.0.1",
|
|
42
42
|
"@ember/test-helpers": "^5.4.1",
|
|
43
43
|
"@ember/test-waiters": "^4.1.1",
|
|
44
|
-
"@embroider/macros": "^1.19.
|
|
45
|
-
"@embroider/core": "^4.4.
|
|
46
|
-
"@embroider/vite": "^1.5.
|
|
47
|
-
"@embroider/compat": "^4.1.
|
|
44
|
+
"@embroider/macros": "^1.19.7",
|
|
45
|
+
"@embroider/core": "^4.4.3",
|
|
46
|
+
"@embroider/vite": "^1.5.2",
|
|
47
|
+
"@embroider/compat": "^4.1.13",
|
|
48
48
|
"@embroider/router": "^3.0.6",
|
|
49
49
|
"@embroider/config-meta-loader": "^1.0.0",
|
|
50
50
|
"@embroider/legacy-inspector-support": "^0.1.3",
|
|
51
51
|
"@eslint/js": "^9.39.2",
|
|
52
52
|
"@glimmer/component": "^2.0.0<% if (typescript) { %>",
|
|
53
|
-
"@glint/ember-tsc": "^1.
|
|
54
|
-
"@glint/template": "^1.7.
|
|
55
|
-
"@glint/tsserver-plugin": "^2.0
|
|
53
|
+
"@glint/ember-tsc": "^1.1.1",
|
|
54
|
+
"@glint/template": "^1.7.4",
|
|
55
|
+
"@glint/tsserver-plugin": "^2.1.0<% } %>",
|
|
56
56
|
"@rollup/plugin-babel": "^6.1.0<% if (typescript) { %>",
|
|
57
57
|
"@types/qunit": "^2.19.13",
|
|
58
58
|
"@types/rsvp": "^4.0.9<% } %><% if (warpDrive) { %>",
|
|
@@ -64,33 +64,33 @@
|
|
|
64
64
|
"babel-plugin-ember-template-compilation": "^3.1.0",
|
|
65
65
|
"concurrently": "^9.2.1",
|
|
66
66
|
"decorator-transforms": "^2.3.1",
|
|
67
|
-
"ember-cli": "~6.
|
|
68
|
-
"ember-cli-babel": "^8.
|
|
67
|
+
"ember-cli": "~6.11.0",
|
|
68
|
+
"ember-cli-babel": "^8.3.1",
|
|
69
69
|
"ember-cli-deprecation-workflow": "^3.4.0",
|
|
70
70
|
"ember-load-initializers": "^3.0.1",
|
|
71
|
-
"ember-modifier": "^4.
|
|
71
|
+
"ember-modifier": "^4.3.0",
|
|
72
72
|
"ember-page-title": "^9.0.3",
|
|
73
73
|
"ember-qunit": "^9.0.4",
|
|
74
74
|
"ember-resolver": "^13.1.1",
|
|
75
|
-
"ember-source": "~6.
|
|
75
|
+
"ember-source": "~6.12.0-beta.1",
|
|
76
76
|
"ember-template-lint": "^7.9.3<% if (welcome) { %>",
|
|
77
77
|
"ember-welcome-page": "^8.0.5<% } %>",
|
|
78
78
|
"eslint": "^9.39.2",
|
|
79
79
|
"eslint-config-prettier": "^10.1.8",
|
|
80
80
|
"eslint-plugin-ember": "^12.7.5",
|
|
81
|
-
"eslint-plugin-n": "^17.
|
|
82
|
-
"eslint-plugin-qunit": "^8.2.
|
|
81
|
+
"eslint-plugin-n": "^17.24.0",
|
|
82
|
+
"eslint-plugin-qunit": "^8.2.6<% if (warpDrive) { %>",
|
|
83
83
|
"eslint-plugin-warp-drive": "^5.8.1<% } %>",
|
|
84
84
|
"globals": "^16.5.0",
|
|
85
|
-
"prettier": "^3.8.
|
|
86
|
-
"prettier-plugin-ember-template-tag": "^2.1.
|
|
85
|
+
"prettier": "^3.8.1",
|
|
86
|
+
"prettier-plugin-ember-template-tag": "^2.1.3",
|
|
87
87
|
"qunit": "^2.25.0",
|
|
88
88
|
"qunit-dom": "^3.5.0",
|
|
89
89
|
"stylelint": "^16.26.1",
|
|
90
90
|
"stylelint-config-standard": "^38.0.0",
|
|
91
91
|
"testem": "^3.17.0<% if (typescript) { %>",
|
|
92
92
|
"typescript": "^5.9.3",
|
|
93
|
-
"typescript-eslint": "^8.
|
|
93
|
+
"typescript-eslint": "^8.56.0<% } %>",
|
|
94
94
|
"vite": "^7.3.1"
|
|
95
95
|
},
|
|
96
96
|
"engines": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember/app-blueprint",
|
|
3
|
-
"version": "6.12.0-
|
|
3
|
+
"version": "6.12.0-beta.1",
|
|
4
4
|
"description": "Blueprint for next generation of Ember apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-blueprint"
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"minor": "prerelease",
|
|
18
18
|
"patch": "prerelease"
|
|
19
19
|
},
|
|
20
|
-
"semverIncrementTag": "
|
|
21
|
-
"publishTag": "
|
|
20
|
+
"semverIncrementTag": "beta",
|
|
21
|
+
"publishTag": "beta"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"chalk": "^4.1.2",
|