Skip to content

Commit

Permalink
organize imports before prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mceachen committed Feb 2, 2023
1 parent f289685 commit e35f70b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
"scripts": {
"ci": "yarn install --frozen-lockfile",
"clean": "rimraf dist",
"organize-imports": "find src -maxdepth 3 -name \\*.ts | grep -v node_modules | xargs --verbose --max-args=64 --max-procs=8 npx organize-imports-cli",
"preprettier": "yarn organize-imports",
"prettier": "prettier --write src/*.ts",
"lint": "yarn eslint src --ext .ts",
"compile": "tsc",
Expand Down Expand Up @@ -55,8 +57,8 @@
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.5.0",
Expand All @@ -65,6 +67,7 @@
"eslint": "^8.33.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "^10.2.0",
"organize-imports-cli": "^0.10.0",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"seedrandom": "^3.0.5",
Expand All @@ -73,6 +76,6 @@
"split2": "^4.1.0",
"timekeeper": "^2.2.0",
"typedoc": "^0.23.24",
"typescript": "~4.9.4"
"typescript": "~4.9.5"
}
}

0 comments on commit e35f70b

Please sign in to comment.