Skip to content

24 files changed

+236
-32
lines changed

packages/build/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0](https://github.com/4Catalyzer/cli/compare/@4c/[email protected]...@4c/[email protected]) (2022-08-19)
7+
8+
9+
### Features
10+
11+
* upgrade dependencies: svgo, chalk, etc ([#342](https://github.com/4Catalyzer/cli/issues/342)) ([82f3317](https://github.com/4Catalyzer/cli/commit/82f3317a81dc3db9c829d294bb256661a328fe41))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* SVGO upgraded to v2, which requires a compatible config file
17+
18+
19+
20+
21+
622
# [3.0.0](https://github.com/4Catalyzer/cli/compare/@4c/[email protected]...@4c/[email protected]) (2021-09-17)
723

824

packages/build/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@4c/build",
3-
"version": "3.0.0",
3+
"version": "4.0.0",
44
"homepage": "https://github.com/4Catalyzer/cli/tree/master/packages/build",
55
"bugs": {
66
"url": "https://github.com/4Catalyzer/cli/issues"
@@ -27,7 +27,7 @@
2727
"testEnvironment": "node"
2828
},
2929
"dependencies": {
30-
"@4c/cli-core": "^3.0.0",
30+
"@4c/cli-core": "^4.0.0",
3131
"@babel/cli": "^7.16.0",
3232
"@babel/core": "^7.16.0",
3333
"@manypkg/get-packages": "^1.1.3",

packages/cli-core/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0](https://github.com/4Catalyzer/cli/compare/@4c/[email protected]...@4c/[email protected]) (2022-08-19)
7+
8+
9+
### Features
10+
11+
* upgrade dependencies: svgo, chalk, etc ([#342](https://github.com/4Catalyzer/cli/issues/342)) ([82f3317](https://github.com/4Catalyzer/cli/commit/82f3317a81dc3db9c829d294bb256661a328fe41))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* SVGO upgraded to v2, which requires a compatible config file
17+
18+
19+
20+
21+
622
# [3.0.0](https://github.com/4Catalyzer/cli/compare/@4c/[email protected]...@4c/[email protected]) (2021-09-17)
723

824

packages/cli-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@4c/cli-core",
3-
"version": "3.0.0",
3+
"version": "4.0.0",
44
"homepage": "https://github.com/4Catalyzer/cli/tree/master/packages/cli-core",
55
"bugs": {
66
"url": "https://github.com/4Catalyzer/cli/issues"

packages/cli/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0](https://github.com/4Catalyzer/cli/compare/@4c/[email protected]...@4c/[email protected]) (2022-08-19)
7+
8+
9+
### Features
10+
11+
* upgrade dependencies: svgo, chalk, etc ([#342](https://github.com/4Catalyzer/cli/issues/342)) ([82f3317](https://github.com/4Catalyzer/cli/commit/82f3317a81dc3db9c829d294bb256661a328fe41))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* SVGO upgraded to v2, which requires a compatible config file
17+
18+
19+
20+
21+
622
## [3.0.1](https://github.com/4Catalyzer/cli/compare/@4c/[email protected]...@4c/[email protected]) (2021-10-07)
723

824
**Note:** Version bump only for package @4c/cli

packages/cli/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@4c/cli",
3-
"version": "3.0.1",
3+
"version": "4.0.0",
44
"homepage": "https://github.com/4Catalyzer/cli/tree/master/packages/cli",
55
"bugs": {
66
"url": "https://github.com/4Catalyzer/cli/issues"
@@ -18,14 +18,14 @@
1818
"directory": "packages/cli"
1919
},
2020
"dependencies": {
21-
"@4c/build": "^3.0.0",
22-
"@4c/init": "^4.1.0",
23-
"@4c/intl": "^2.0.1",
24-
"@4c/rollout": "^3.0.1",
25-
"@4c/start": "^3.0.1",
26-
"pedantic": "^6.0.1",
27-
"svg2c": "^2.0.0",
28-
"ts-doctor": "^2.0.0",
21+
"@4c/build": "^4.0.0",
22+
"@4c/init": "^5.0.0",
23+
"@4c/intl": "^3.0.0",
24+
"@4c/rollout": "^4.0.0",
25+
"@4c/start": "^4.0.0",
26+
"pedantic": "^7.0.0",
27+
"svg2c": "^3.0.0",
28+
"ts-doctor": "^3.0.0",
2929
"yargs": "^17.3.0"
3030
},
3131
"devDependencies": {

packages/file-butler/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [6.0.0](https://github.com/4Catalyzer/cli/compare/@4c/[email protected]...@4c/[email protected]) (2022-08-19)
7+
8+
9+
### Features
10+
11+
* upgrade dependencies: svgo, chalk, etc ([#342](https://github.com/4Catalyzer/cli/issues/342)) ([82f3317](https://github.com/4Catalyzer/cli/commit/82f3317a81dc3db9c829d294bb256661a328fe41))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* SVGO upgraded to v2, which requires a compatible config file
17+
18+
19+
20+
21+
622
# [5.0.0](https://github.com/4Catalyzer/cli/compare/@4c/[email protected]...@4c/[email protected]) (2021-09-17)
723

824

packages/file-butler/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@4c/file-butler",
3-
"version": "5.0.0",
3+
"version": "6.0.0",
44
"homepage": "https://github.com/4Catalyzer/cli/tree/master/packages/file-butler",
55
"bugs": {
66
"url": "https://github.com/4Catalyzer/cli/issues"
@@ -22,7 +22,7 @@
2222
"directory": "packages/file-butler"
2323
},
2424
"dependencies": {
25-
"@4c/cli-core": "^3.0.0",
25+
"@4c/cli-core": "^4.0.0",
2626
"cpy": "^8.1.2",
2727
"fs-extra": "^10.0.0",
2828
"globby": "^12.0.2",

packages/hooks/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.0.0](https://github.com/4Catalyzer/cli/compare/[email protected]@3.0.0) (2022-08-19)
7+
8+
9+
### Features
10+
11+
* upgrade dependencies: svgo, chalk, etc ([#342](https://github.com/4Catalyzer/cli/issues/342)) ([82f3317](https://github.com/4Catalyzer/cli/commit/82f3317a81dc3db9c829d294bb256661a328fe41))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* SVGO upgraded to v2, which requires a compatible config file
17+
18+
19+
20+
21+
622
## [2.0.1](https://github.com/4Catalyzer/cli/compare/[email protected]@2.0.1) (2021-10-07)
723

824
**Note:** Version bump only for package hookem

packages/hooks/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hookem",
3-
"version": "2.0.1",
3+
"version": "3.0.0",
44
"main": "lib.js",
55
"type": "module",
66
"repository": {
@@ -29,14 +29,14 @@
2929
"testEnvironment": "node"
3030
},
3131
"devDependencies": {
32-
"@4c/cli": "^3.0.1",
32+
"@4c/cli": "^4.0.0",
3333
"@4c/jest-preset": "^1.7.0",
3434
"@4c/prettier-config": "^1.1.0",
3535
"jest": "^27.5.1",
3636
"pinst": "^2.1.6"
3737
},
3838
"dependencies": {
39-
"@4c/cli-core": "^3.0.0",
39+
"@4c/cli-core": "^4.0.0",
4040
"find-up": "^6.2.0",
4141
"has-yarn": "^3.0.0",
4242
"read-pkg-up": "^9.0.0",

packages/init/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [5.0.0](https://github.com/4Catalyzer/cli/compare/@4c/[email protected]...@4c/[email protected]) (2022-08-19)
7+
8+
9+
### Features
10+
11+
* upgrade dependencies: svgo, chalk, etc ([#342](https://github.com/4Catalyzer/cli/issues/342)) ([82f3317](https://github.com/4Catalyzer/cli/commit/82f3317a81dc3db9c829d294bb256661a328fe41))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* SVGO upgraded to v2, which requires a compatible config file
17+
18+
19+
20+
21+
622
# [4.1.0](https://github.com/4Catalyzer/cli/compare/@4c/[email protected]...@4c/[email protected]) (2021-10-07)
723

824

packages/init/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@4c/init",
3-
"version": "4.1.0",
3+
"version": "5.0.0",
44
"homepage": "https://github.com/4Catalyzer/cli/tree/master/packages/init",
55
"bugs": {
66
"url": "https://github.com/4Catalyzer/cli/issues"
@@ -22,7 +22,7 @@
2222
"directory": "packages/init"
2323
},
2424
"dependencies": {
25-
"@4c/cli-core": "^3.0.0",
25+
"@4c/cli-core": "^4.0.0",
2626
"find-yarn-workspace-root": "^2.0.0",
2727
"glob": "^7.2.0",
2828
"node-plop": "^0.30.0",

packages/intl/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.0.0](https://github.com/4Catalyzer/cli/compare/@4c/[email protected]...@4c/[email protected]) (2022-08-19)
7+
8+
9+
### Features
10+
11+
* upgrade dependencies: svgo, chalk, etc ([#342](https://github.com/4Catalyzer/cli/issues/342)) ([82f3317](https://github.com/4Catalyzer/cli/commit/82f3317a81dc3db9c829d294bb256661a328fe41))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* SVGO upgraded to v2, which requires a compatible config file
17+
18+
19+
20+
21+
622
## [2.0.1](https://github.com/4Catalyzer/cli/compare/@4c/[email protected]...@4c/[email protected]) (2021-10-07)
723

824

packages/intl/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@4c/intl",
3-
"version": "2.0.1",
3+
"version": "3.0.0",
44
"homepage": "https://github.com/4Catalyzer/cli/tree/master/packages/intl",
55
"bugs": {
66
"url": "https://github.com/4Catalyzer/cli/issues"
@@ -29,7 +29,7 @@
2929
"transform": {}
3030
},
3131
"dependencies": {
32-
"@4c/cli-core": "^3.0.0",
32+
"@4c/cli-core": "^4.0.0",
3333
"glob": "^7.2.0"
3434
},
3535
"devDependencies": {

packages/pedantic/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [7.0.0](https://github.com/4Catalyzer/cli/compare/[email protected]@7.0.0) (2022-08-19)
7+
8+
9+
### Bug Fixes
10+
11+
* minor typo in lint.js ([e824cb7](https://github.com/4Catalyzer/cli/commit/e824cb72fd3d30c3bc37d4f95c11e30807ad1b0a))
12+
13+
14+
### Features
15+
16+
* upgrade dependencies: svgo, chalk, etc ([#342](https://github.com/4Catalyzer/cli/issues/342)) ([82f3317](https://github.com/4Catalyzer/cli/commit/82f3317a81dc3db9c829d294bb256661a328fe41))
17+
18+
19+
### BREAKING CHANGES
20+
21+
* SVGO upgraded to v2, which requires a compatible config file
22+
23+
24+
25+
26+
627
## [6.0.1](https://github.com/4Catalyzer/cli/compare/[email protected]@6.0.1) (2021-10-07)
728

829
**Note:** Version bump only for package pedantic

packages/pedantic/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pedantic",
3-
"version": "6.0.1",
3+
"version": "7.0.0",
44
"homepage": "https://github.com/4Catalyzer/cli/tree/master/packages/rollout",
55
"bugs": {
66
"url": "https://github.com/4Catalyzer/cli/issues"
@@ -35,7 +35,7 @@
3535
"transform": {}
3636
},
3737
"dependencies": {
38-
"@4c/cli-core": "^3.0.0",
38+
"@4c/cli-core": "^4.0.0",
3939
"eslint": "^8.4.1",
4040
"prettier": "^2.5.1",
4141
"yargs": "^17.3.0"

packages/rollout/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0](https://github.com/4Catalyzer/cli/compare/@4c/[email protected]...@4c/[email protected]) (2022-08-19)
7+
8+
9+
### Bug Fixes
10+
11+
* handle newer npm publish directories ([961b8ac](https://github.com/4Catalyzer/cli/commit/961b8acbec2e1f0103697dd2e5c7112ffe92fd70))
12+
13+
14+
### Features
15+
16+
* upgrade dependencies: svgo, chalk, etc ([#342](https://github.com/4Catalyzer/cli/issues/342)) ([82f3317](https://github.com/4Catalyzer/cli/commit/82f3317a81dc3db9c829d294bb256661a328fe41))
17+
18+
19+
### BREAKING CHANGES
20+
21+
* SVGO upgraded to v2, which requires a compatible config file
22+
23+
24+
25+
26+
627
## [3.0.1](https://github.com/4Catalyzer/cli/compare/@4c/[email protected]...@4c/[email protected]) (2021-10-07)
728

829
**Note:** Version bump only for package @4c/rollout

packages/rollout/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@4c/rollout",
3-
"version": "3.0.1",
3+
"version": "4.0.0",
44
"homepage": "https://github.com/4Catalyzer/cli/tree/master/packages/rollout",
55
"bugs": {
66
"url": "https://github.com/4Catalyzer/cli/issues"
@@ -32,8 +32,8 @@
3232
"testEnvironment": "node"
3333
},
3434
"dependencies": {
35-
"@4c/cli-core": "^3.0.0",
36-
"@4c/file-butler": "^5.0.0",
35+
"@4c/cli-core": "^4.0.0",
36+
"@4c/file-butler": "^6.0.0",
3737
"async-exit-hook": "^2.0.1",
3838
"conventional-changelog": "^3.1.24",
3939
"conventional-recommended-bump": "^6.1.0",

0 commit comments

Comments
 (0)