Skip to content

Commit eed42a5

Browse files
committed
fix: 🐛 update package.json files across multiple modules
1 parent 89b8895 commit eed42a5

9 files changed

Lines changed: 644 additions & 689 deletions

File tree

package-lock.json

Lines changed: 613 additions & 631 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@
5656
]
5757
},
5858
"devDependencies": {
59-
"npm-check-updates": "^16.14.6",
60-
"prettier-plugin-sh": "^0.14.0"
59+
"npm-check-updates": "*"
6160
},
6261
"peerDependencies": {
6362
"@commitlint/cli": "^19.2.2",

src/act/package.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@
1313
"act-run": "./_act-run.sh"
1414
},
1515
"scripts": {
16-
"install-act": "./install-act.sh",
17-
"postinstall": "./install.sh"
18-
},
19-
"dependencies": {
20-
"act": "^0.2.60"
16+
"install-act": "./install-act.sh"
2117
}
22-
}
18+
}

src/common-utils/package.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,6 @@
2525
"zz-json": "./_zz_json.sh",
2626
"zz-log": "./_zz_log.sh"
2727
},
28-
"scripts": {
29-
"postinstall": "./install.sh"
30-
},
31-
"dependencies": {
32-
"dos2unix": "^7.4.4",
33-
"jq": "^1.6.0"
34-
}
35-
}
28+
"scripts": {},
29+
"dependencies": {}
30+
}

src/githooks/package.json

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,23 @@
2424
"configure-cz": "./configure-cz.sh",
2525
"configure-hooks": "./configure-hooks.sh",
2626
"lint": "npx --yes lint-staged -p false",
27-
"postinstall": "./install.sh",
2827
"release": "npx --yes commit-and-tag-version --no-verify --"
2928
},
3029
"dependencies": {
31-
"@commitlint/cli": "^19.2.2",
32-
"@commitlint/config-conventional": "^19.2.2",
33-
"@commitlint/config-workspace-scopes": "^1.0.0",
34-
"@commitlint/cz-commitlint": "^19.2.0",
35-
"commit-and-tag-version": "^12.4.1",
36-
"commitizen": "^4.3.0",
37-
"git-precommit-checks": "3.1.0",
38-
"lint-staged": "^15.2.2",
39-
"prettier": "^3.2.5",
40-
"prettier-plugin-sh": "^0.14.0"
30+
"@commitlint/cli": "*",
31+
"@commitlint/config-conventional": "*",
32+
"@commitlint/config-workspace-scopes": "*",
33+
"@commitlint/cz-commitlint": "*",
34+
"commit-and-tag-version": "*",
35+
"commitizen": "*",
36+
"git-precommit-checks": "*",
37+
"lint-staged": "*",
38+
"prettier": "*",
39+
"prettier-plugin-sh": "*"
4140
},
4241
"peerDependencies": {
43-
"@tomgrv/common-utils": "^3.17.0",
44-
"@tomgrv/gitutils": "^5.26.4"
42+
"@tomgrv/common-utils": "^5.0.0",
43+
"@tomgrv/gitutils": "^5.0.0"
4544
},
4645
"prettier": {
4746
"insertPragma": true,

src/gitutils/package.json

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,10 @@
3535
"setrights": "./_setrights.sh",
3636
"unset": "./_unset.sh"
3737
},
38-
"scripts": {
39-
"install-config": "./install-config.sh",
40-
"postinstall": "./install.sh"
41-
},
42-
"dependencies": {
43-
"git-flow": "^0.4.2"
44-
},
38+
"scripts": {},
39+
"dependencies": {},
4540
"peerDependencies": {
46-
"@tomgrv/common-utils": "^3.17.0",
47-
"@tomgrv/gitversion": "^5.26.4"
41+
"@tomgrv/common-utils": "^5.0.0",
42+
"@tomgrv/gitversion": "^5.0.0"
4843
}
4944
}

src/gitversion/package.json

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,9 @@
1616
"checkout-version": "./_checkout-version.sh",
1717
"gv": "./_gv.sh"
1818
},
19-
"scripts": {
20-
"install-tools": "./install-tools.sh",
21-
"postinstall": "./install.sh"
22-
},
23-
"dependencies": {
24-
"GitVersion.Tool": "^5.12.0"
25-
},
19+
"scripts": {},
20+
"dependencies": {},
2621
"peerDependencies": {
27-
"@tomgrv/common-utils": "^3.17.0"
22+
"@tomgrv/common-utils": "^5.0.0"
2823
}
29-
}
24+
}

src/larasets/package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,14 @@
2424
"configure-composer": "./configure-composer.sh",
2525
"configure-deployer": "./configure-deployer.sh",
2626
"configure-sail": "./configure-sail.sh",
27-
"postinstall": "./install.sh",
2827
"test": "echo \"Warning: no test specified\"",
29-
"update": "npx --yes npm-check-updates -i -u",
28+
"update": "npm-check-updates -i -u",
3029
"update-all": "npm run update -ws --root"
3130
},
3231
"dependencies": {
33-
"npm-check-updates": "^16.14.6"
32+
"npm-check-updates": "*"
3433
},
3534
"peerDependencies": {
36-
"@tomgrv/common-utils": "^3.17.0"
35+
"@tomgrv/common-utils": "^5.0.0"
3736
}
38-
}
37+
}

src/pecl/package.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,5 @@
55
"files": [
66
"install.sh"
77
],
8-
"scripts": {
9-
"postinstall": "./install.sh"
10-
},
11-
"peerDependencies": {
12-
"php": ">=8.2.0"
13-
}
8+
"scripts": {}
149
}

0 commit comments

Comments
 (0)