Skip to content

Commit 0e46f1b

Browse files
committed
Remove glob from our dev dependencies
1 parent 120cf68 commit 0e46f1b

File tree

8 files changed

+22
-51
lines changed

8 files changed

+22
-51
lines changed

pnpm-lock.yaml

-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

v-next/core/package.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
3333
"eslint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
3434
"prettier": "prettier \"**/*.{ts,js,md,json}\"",
35-
"test": "glob --cmd=\"node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter\" \"test/**/*.ts\"",
36-
"test:only": "glob --cmd=\"node --import tsx/esm --test --test-only --test-reporter=@voxpelli/node-test-pretty-reporter\" \"test/**/*.ts\"",
37-
"test:github": "glob --cmd=\"node --import tsx/esm --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=@voxpelli/node-test-pretty-reporter --test-reporter-destination=stdout\" \"test/**/*.ts\"",
38-
"test:coverage": "c8 --reporter html --reporter text --all --src src glob --cmd=\"node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter\" \"test/**/*.ts\"",
35+
"test": "node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter \"test/**/*.ts\"",
36+
"test:only": "node --import tsx/esm --test --test-only --test-reporter=@voxpelli/node-test-pretty-reporter \"test/**/*.ts\"",
37+
"test:github": "node --import tsx/esm --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=@voxpelli/node-test-pretty-reporter --test-reporter-destination=stdout \"test/**/*.ts\"",
38+
"test:coverage": "c8 --reporter html --reporter text --all --src src glob node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter \"test/**/*.ts\"",
3939
"pretest": "pnpm build",
4040
"build": "tsc --build .",
4141
"prepublishOnly": "pnpm build",
@@ -66,7 +66,6 @@
6666
"eslint-plugin-import": "2.29.1",
6767
"eslint-plugin-no-only-tests": "3.1.0",
6868
"expect-type": "^0.19.0",
69-
"glob": "^10.3.12",
7069
"madge": "^7.0.0",
7170
"prettier": "3.2.5",
7271
"rimraf": "^5.0.5",

v-next/hardhat-build-system/package.json

+3-5
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@
1919
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
2020
"eslint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
2121
"prettier": "prettier \"**/*.{ts,js,md,json}\"",
22-
"test": "glob --cmd=\"node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter\" \"test/**/*.ts\"",
23-
"test:only": "glob --cmd=\"node --import tsx/esm --test --test-only --test-reporter=@voxpelli/node-test-pretty-reporter\" \"test/**/*.ts\"",
24-
"test:github": "glob --cmd=\"node --import tsx/esm --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=@voxpelli/node-test-pretty-reporter --test-reporter-destination=stdout\" \"test/**/*.ts\"",
25-
"test:coverage": "c8 --reporter html --reporter text --all --src src glob --cmd=\"node --import tsx/esm --test\" \"test/**/*.ts\"",
22+
"test": "node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter \"test/**/*.ts\"",
23+
"test:only": "node --import tsx/esm --test --test-only --test-reporter=@voxpelli/node-test-pretty-reporter \"test/**/*.ts\"",
24+
"test:github": "node --import tsx/esm --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=@voxpelli/node-test-pretty-reporter --test-reporter-destination=stdout \"test/**/*.ts\"",
2625
"pretest": "pnpm build",
2726
"build": "tsc --build .",
2827
"prepublishOnly": "pnpm build",
@@ -80,7 +79,6 @@
8079
"eslint-plugin-import": "2.29.1",
8180
"eslint-plugin-no-only-tests": "3.1.0",
8281
"expect-type": "^0.19.0",
83-
"glob": "^10.3.12",
8482
"prettier": "3.2.5",
8583
"rimraf": "^5.0.5",
8684
"sinon": "^9.0.0",

v-next/hardhat-errors/package.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
2222
"eslint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
2323
"prettier": "prettier \"**/*.{ts,js,md,json}\"",
24-
"test": "glob --cmd=\"node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter\" \"test/**/*.ts\"",
25-
"test:only": "glob --cmd=\"node --import tsx/esm --test --test-only --test-reporter=@voxpelli/node-test-pretty-reporter\" \"test/**/*.ts\"",
26-
"test:github": "glob --cmd=\"node --import tsx/esm --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=@voxpelli/node-test-pretty-reporter --test-reporter-destination=stdout\" \"test/**/*.ts\"",
24+
"test": "node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter \"test/**/*.ts\"",
25+
"test:only": "node --import tsx/esm --test --test-only --test-reporter=@voxpelli/node-test-pretty-reporter \"test/**/*.ts\"",
26+
"test:github": "node --import tsx/esm --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=@voxpelli/node-test-pretty-reporter --test-reporter-destination=stdout \"test/**/*.ts\"",
2727
"pretest": "pnpm build",
2828
"build": "tsc --build .",
2929
"prepublishOnly": "pnpm build",
@@ -51,7 +51,6 @@
5151
"eslint-plugin-import": "2.29.1",
5252
"eslint-plugin-no-only-tests": "3.1.0",
5353
"expect-type": "^0.19.0",
54-
"glob": "^10.3.12",
5554
"prettier": "3.2.5",
5655
"rimraf": "^5.0.5",
5756
"tsx": "^4.7.1",

v-next/hardhat-utils/package.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
3333
"eslint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
3434
"prettier": "prettier \"**/*.{ts,js,md,json}\"",
35-
"test": "glob --cmd=\"node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter\" \"test/**/*.ts\"",
36-
"test:only": "glob --cmd=\"node --import tsx/esm --test --test-only --test-reporter=@voxpelli/node-test-pretty-reporter\" \"test/**/*.ts\"",
37-
"test:github": "glob --cmd=\"node --import tsx/esm --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=@voxpelli/node-test-pretty-reporter --test-reporter-destination=stdout\" \"test/**/*.ts\"",
35+
"test": "node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter \"test/**/*.ts\"",
36+
"test:only": "node --import tsx/esm --test --test-only --test-reporter=@voxpelli/node-test-pretty-reporter \"test/**/*.ts\"",
37+
"test:github": "node --import tsx/esm --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=@voxpelli/node-test-pretty-reporter --test-reporter-destination=stdout \"test/**/*.ts\"",
3838
"pretest": "pnpm build",
3939
"build": "tsc --build .",
4040
"prepublishOnly": "pnpm build",
@@ -64,7 +64,6 @@
6464
"eslint-plugin-import": "2.29.1",
6565
"eslint-plugin-no-only-tests": "3.1.0",
6666
"expect-type": "^0.19.0",
67-
"glob": "^10.3.12",
6867
"prettier": "3.2.5",
6968
"rimraf": "^5.0.5",
7069
"tsx": "^4.7.1",

v-next/hardhat-zod-utils/package.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
2222
"eslint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
2323
"prettier": "prettier \"**/*.{ts,js,md,json}\"",
24-
"test": "glob --cmd=\"node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter\" \"test/**/*.ts\"",
25-
"test:only": "glob --cmd=\"node --import tsx/esm --test --test-only --test-reporter=@voxpelli/node-test-pretty-reporter\" \"test/**/*.ts\"",
26-
"test:github": "glob --cmd=\"node --import tsx/esm --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=@voxpelli/node-test-pretty-reporter --test-reporter-destination=stdout\" \"test/**/*.ts\"",
24+
"test": "node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter \"test/**/*.ts\"",
25+
"test:only": "node --import tsx/esm --test --test-only --test-reporter=@voxpelli/node-test-pretty-reporter \"test/**/*.ts\"",
26+
"test:github": "node --import tsx/esm --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=@voxpelli/node-test-pretty-reporter --test-reporter-destination=stdout \"test/**/*.ts\"",
2727
"pretest": "pnpm build",
2828
"build": "tsc --build .",
2929
"prepublishOnly": "pnpm build",
@@ -52,7 +52,6 @@
5252
"eslint-plugin-import": "2.29.1",
5353
"eslint-plugin-no-only-tests": "3.1.0",
5454
"expect-type": "^0.19.0",
55-
"glob": "^10.3.12",
5655
"prettier": "3.2.5",
5756
"rimraf": "^5.0.5",
5857
"tsx": "^4.7.1",

v-next/hardhat/package.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
3636
"eslint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
3737
"prettier": "prettier \"**/*.{ts,js,md,json}\"",
38-
"test": "glob --cmd=\"node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter\" \"test/**/*.ts\"",
39-
"test:only": "glob --cmd=\"node --import tsx/esm --test --test-only --test-reporter=@voxpelli/node-test-pretty-reporter\" \"test/**/*.ts\"",
40-
"test:github": "glob --cmd=\"node --import tsx/esm --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=@voxpelli/node-test-pretty-reporter --test-reporter-destination=stdout\" \"test/**/*.ts\"",
38+
"test": "node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter \"test/**/*.ts\"",
39+
"test:only": "node --import tsx/esm --test --test-only --test-reporter=@voxpelli/node-test-pretty-reporter \"test/**/*.ts\"",
40+
"test:github": "node --import tsx/esm --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=@voxpelli/node-test-pretty-reporter --test-reporter-destination=stdout \"test/**/*.ts\"",
4141
"pretest": "pnpm build",
4242
"build": "tsc --build .",
4343
"prepublishOnly": "pnpm build",
@@ -65,7 +65,6 @@
6565
"eslint-plugin-import": "2.29.1",
6666
"eslint-plugin-no-only-tests": "3.1.0",
6767
"expect-type": "^0.19.0",
68-
"glob": "^10.3.12",
6968
"prettier": "3.2.5",
7069
"rimraf": "^5.0.5",
7170
"typescript": "~5.4.0",

v-next/template-package/package.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
2424
"eslint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
2525
"prettier": "prettier \"**/*.{ts,js,md,json}\"",
26-
"test": "glob --cmd=\"node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter\" \"test/**/*.ts\"",
27-
"test:only": "glob --cmd=\"node --import tsx/esm --test --test-only --test-reporter=@voxpelli/node-test-pretty-reporter\" \"test/**/*.ts\"",
28-
"test:github": "glob --cmd=\"node --import tsx/esm --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=@voxpelli/node-test-pretty-reporter --test-reporter-destination=stdout\" \"test/**/*.ts\"",
26+
"test": "node --import tsx/esm --test --test-reporter=@voxpelli/node-test-pretty-reporter \"test/**/*.ts\"",
27+
"test:only": "node --import tsx/esm --test --test-only --test-reporter=@voxpelli/node-test-pretty-reporter \"test/**/*.ts\"",
28+
"test:github": "node --import tsx/esm --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=@voxpelli/node-test-pretty-reporter --test-reporter-destination=stdout \"test/**/*.ts\"",
2929
"pretest": "pnpm build",
3030
"build": "tsc --build .",
3131
"prepublishOnly": "pnpm build",
@@ -53,7 +53,6 @@
5353
"eslint-plugin-import": "2.29.1",
5454
"eslint-plugin-no-only-tests": "3.1.0",
5555
"expect-type": "^0.19.0",
56-
"glob": "^10.3.12",
5756
"prettier": "3.2.5",
5857
"rimraf": "^5.0.5",
5958
"tsx": "^4.7.1",

0 commit comments

Comments
 (0)