Skip to content

Commit 1cbdcb9

Browse files
authored
Add knip (#228)
* Remove root monorepo package.json engines requirement * Add knip and fix all issues * changeset * Up CI node version to 18, necessary for Knip * update changeset
1 parent 4a835ed commit 1cbdcb9

File tree

14 files changed

+196
-75
lines changed

14 files changed

+196
-75
lines changed

.changeset/rude-geckos-happen.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@manypkg/cli": minor
3+
---
4+
5+
Remove the `find-up` dependency.

.github/workflows/main.yml

+23-6
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v3
1515

16-
- name: Set Node.js 16.x
16+
- name: Set Node.js 18.x
1717
uses: actions/setup-node@v3
1818
with:
19-
node-version: 16.x
19+
node-version: 18.x
2020

2121
- name: Install Dependencies
2222
run: yarn
@@ -30,10 +30,10 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@v3
3232

33-
- name: Set Node.js 16.x
33+
- name: Set Node.js 18.x
3434
uses: actions/setup-node@v3
3535
with:
36-
node-version: 16.x
36+
node-version: 18.x
3737

3838
- name: Install Dependencies
3939
run: yarn
@@ -47,13 +47,30 @@ jobs:
4747
steps:
4848
- uses: actions/checkout@v3
4949

50-
- name: Set Node.js 16.x
50+
- name: Set Node.js 18.x
5151
uses: actions/setup-node@v3
5252
with:
53-
node-version: 16.x
53+
node-version: 18.x
5454

5555
- name: Install Dependencies
5656
run: yarn
5757

5858
- name: Check Formatting
5959
run: yarn format:check
60+
61+
knip:
62+
name: Knip
63+
runs-on: ubuntu-latest
64+
steps:
65+
- uses: actions/checkout@v3
66+
67+
- name: Set Node.js 18.x
68+
uses: actions/setup-node@v3
69+
with:
70+
node-version: 18.x
71+
72+
- name: Install Dependencies
73+
run: yarn
74+
75+
- name: Check Knip
76+
run: yarn knip

knip.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"$schema": "https://unpkg.com/knip@5/schema.json",
3+
"ignoreWorkspaces": ["test-gatsby", "packages/gatsby-source-workspace"],
4+
"workspaces": {
5+
".": {
6+
"ignoreBinaries": ["gatsby", "manypkg"]
7+
}
8+
},
9+
"ignore": ["__fixtures__/**"]
10+
}

package.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"format": "prettier --write .",
1212
"format:check": "prettier --check .",
1313
"postinstall": "preconstruct dev && manypkg check",
14+
"knip": "knip",
1415
"release": "preconstruct build && changeset publish",
1516
"test": "jest",
1617
"test-gatsby": "cd test-gatsby && gatsby develop"
@@ -29,21 +30,18 @@
2930
"@changesets/changelog-github": "^0.4.8",
3031
"@changesets/cli": "^2.26.0",
3132
"@preconstruct/cli": "^2.2.2",
32-
"@types/fs-extra": "^8.0.1",
3333
"@types/jest": "^29.2.4",
3434
"@types/normalize-path": "^3.0.0",
3535
"@types/parse-github-url": "^1.0.0",
3636
"@types/semver": "^6.0.1",
3737
"jest": "^29.3.1",
3838
"jest-watch-typeahead": "^2.2.1",
39+
"knip": "^5.33.3",
3940
"prettier": "^2.8.1",
4041
"prettier-plugin-packagejson": "^2.3.0",
4142
"typescript": "^5.3.2"
4243
},
4344
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
44-
"engines": {
45-
"node": ">=14.18.0"
46-
},
4745
"preconstruct": {
4846
"packages": [
4947
"packages/!(gatsby)*"

packages/cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"dependencies": {
1616
"@manypkg/get-packages": "^2.2.1",
1717
"detect-indent": "^6.0.0",
18-
"find-up": "^4.1.0",
1918
"normalize-path": "^3.0.0",
2019
"p-limit": "^2.2.1",
2120
"package-json": "^8.1.0",
@@ -27,6 +26,7 @@
2726
"validate-npm-package-name": "^5.0.1"
2827
},
2928
"devDependencies": {
29+
"@changesets/types": "^5.2.1",
3030
"fixturez": "^1.1.0",
3131
"strip-ansi": "^6.0.0"
3232
},

packages/cli/src/checks/WORKSPACE_REQUIRED.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { makeCheck, NORMAL_DEPENDENCY_TYPES } from "./utils";
22
import { Package } from "@manypkg/get-packages";
33

4-
export type ErrorType = {
4+
type ErrorType = {
55
type: "WORKSPACE_REQUIRED";
66
workspace: Package;
77
depType: typeof NORMAL_DEPENDENCY_TYPES[number];

packages/cli/src/checks/utils.ts

-6
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,6 @@ type AllCheckWithFix<ErrorType> = {
7979
print: (error: ErrorType, options: Options) => string;
8080
};
8181

82-
export type Check<ErrorType> =
83-
| RootCheck<ErrorType>
84-
| AllCheck<ErrorType>
85-
| RootCheckWithFix<ErrorType>
86-
| AllCheckWithFix<ErrorType>;
87-
8882
export function sortObject(prevObj: { [key: string]: string }) {
8983
let newObj: { [key: string]: string } = {};
9084

packages/cli/src/logger.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pc from "picocolors";
22
import util from "util";
33

4-
export function format(
4+
function format(
55
args: Array<any>,
66
messageType: "error" | "success" | "info",
77
scope?: string

packages/cli/src/npm-tag.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { getPackages } from "@manypkg/get-packages";
2-
import { PackageJSON } from "@changesets/types";
2+
import type { PackageJSON } from "@changesets/types";
33
import spawn from "spawndamnit";
44
import pLimit from "p-limit";
55

packages/cli/src/upgrade.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export async function upgradeDependency([name, tag = "latest"]: string[]) {
9696

9797
const npmRequestLimit = pLimit(40);
9898

99-
export function getPackageInfo(pkgName: string) {
99+
function getPackageInfo(pkgName: string) {
100100
return npmRequestLimit(async () => {
101101
const getPackageJson = (await import("package-json")).default;
102102

packages/get-packages/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@manypkg/tools": "^1.1.1"
1414
},
1515
"devDependencies": {
16-
"jest-fixtures": "^0.6.0"
16+
"fixturez": "^1.1.0"
1717
},
1818
"engines": {
1919
"node": ">=14.18.0"

packages/tools/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
},
1616
"devDependencies": {
1717
"@types/jju": "^1.4.2",
18-
"@types/js-yaml": "^4.0.9",
19-
"jest-fixtures": "^0.6.0"
18+
"@types/js-yaml": "^4.0.9"
2019
},
2120
"engines": {
2221
"node": ">=14.18.0"

packages/tools/src/PnpmTool.ts

-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ function readYamlFileSync<T = unknown>(path: string): T {
1919
return yaml.load(fs.readFileSync(path, "utf8")) as T;
2020
}
2121

22-
export interface PnpmWorkspaceYaml {
23-
packages?: string[];
24-
}
25-
2622
export const PnpmTool: Tool = {
2723
type: "pnpm",
2824

0 commit comments

Comments
 (0)