Skip to content

Commit 9e73338

Browse files
authored
Merge pull request #476 from plopjs/other-dep-upgrades
Other dep upgrades
2 parents 07fbcdb + e146447 commit 9e73338

File tree

7 files changed

+1146
-1247
lines changed

7 files changed

+1146
-1247
lines changed

.husky/pre-commit

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
4-
npx --no-install lint-staged
1+
lint-staged

package.json

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"test": "turbo run test --parallel",
1313
"format": "prettier --write .",
1414
"lint": "eslint .",
15-
"prepare": "husky install",
16-
"plop": "node ./packages/plop/bin/plop.js"
15+
"plop": "node ./packages/plop/bin/plop.js",
16+
"prepare": "husky"
1717
},
1818
"bugs": {
1919
"url": "https://github.com/plopjs/plop/issues"
@@ -29,20 +29,23 @@
2929
},
3030
"devDependencies": {
3131
"@changesets/changelog-github": "^0.5.1",
32-
"@changesets/cli": "^2.29.6",
33-
"@eslint/js": "^9.34.0",
34-
"@vitest/eslint-plugin": "^1.3.8",
35-
"eslint": "^9.34.0",
36-
"globals": "^16.3.0",
37-
"husky": "^8.0.3",
38-
"lint-staged": "^15.2.0",
32+
"@changesets/cli": "^2.29.7",
33+
"@eslint/js": "^9.36.0",
34+
"@vitest/eslint-plugin": "^1.3.12",
35+
"eslint": "^9.36.0",
36+
"globals": "^16.4.0",
37+
"husky": "^9.1.7",
38+
"lint-staged": "^16.1.6",
3939
"prettier": "^3.6.2",
40-
"turbo": "^1.11.2",
41-
"typescript": "^5.3.3",
42-
"typescript-eslint": "^8.42.0"
40+
"turbo": "^2.5.6",
41+
"typescript": "^5.9.2",
42+
"typescript-eslint": "^8.44.0"
4343
},
4444
"lint-staged": {
45-
"*.js": "eslint --cache --fix"
45+
"*.{ts,tsx,js,jsx}": [
46+
"prettier --write",
47+
"eslint --cache --fix"
48+
]
4649
},
4750
"packageManager": "[email protected]"
4851
}

packages/node-plop/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@
3535
},
3636
"devDependencies": {
3737
"@types/inquirer-autocomplete-prompt": "^3.0.3",
38-
"@types/node": "^20.10.5",
38+
"@types/node": "^20.19.17",
3939
"dtslint": "^4.2.1",
4040
"plop-pack-fancy-comments": "^0.2.1",
41-
"typescript": "^5.3.3",
42-
"vitest": "^1.1.0"
41+
"typescript": "^5.9.2",
42+
"vitest": "^3.2.4"
4343
},
4444
"dependencies": {
4545
"@types/inquirer": "^9.0.9",
4646
"change-case": "^5.4.4",
4747
"dlv": "^1.1.3",
4848
"globby": "^14.1.0",
4949
"handlebars": "^4.7.8",
50-
"inquirer": "^9.3.7",
50+
"inquirer": "^9.3.8",
5151
"isbinaryfile": "^5.0.6",
5252
"resolve": "^1.22.10",
5353
"title-case": "^4.3.2"

packages/plop/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@
3232
"postpublish": "node ./scripts/postpublish.js"
3333
},
3434
"devDependencies": {
35-
"cli-testing-library": "^2.0.2",
35+
"cli-testing-library": "^3.0.1",
3636
"inquirer-directory": "^2.2.0",
37-
"nyc": "^15.1.0",
37+
"nyc": "^17.1.0",
3838
"plop-pack-fancy-comments": "^0.2.1",
3939
"queue-microtask": "^1.2.3",
40-
"vitest": "^1.1.0"
40+
"vitest": "^3.2.4"
4141
},
4242
"homepage": "https://plopjs.com",
4343
"dependencies": {
4444
"@types/liftoff": "^4.0.3",
4545
"interpret": "^3.1.1",
46-
"liftoff": "^4.0.0",
46+
"liftoff": "^5.0.1",
4747
"minimist": "^1.2.8",
4848
"nanospinner": "^1.2.2",
4949
"node-plop": "^0.32.1",

packages/plop/tests/config/setup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// require("cli-testing-library/extend-expect");
22

33
import { configure } from "cli-testing-library";
4-
import "cli-testing-library/extend-expect";
4+
import "cli-testing-library/vitest";
55

66
configure({
77
asyncUtilTimeout: 8000,

turbo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://turborepo.org/schema.json",
3-
"pipeline": {
3+
"tasks": {
44
"test": {
55
"outputs": ["instrumented/**", "coverage/**", ".nyc_output/**"]
66
}

0 commit comments

Comments
 (0)