Skip to content

Commit

Permalink
Restructure package.json scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
domwebber committed Nov 20, 2024
1 parent 53783da commit f54b042
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,19 @@
"Cloud API"
],
"scripts": {
"build": "npm-run-all tsup",
"build": "tsup --entry src/index.ts --entry src/cli.ts --format cjs,esm --minify --dts",
"changeset": "changeset",
"eslint": "eslint .",
"eslint:dev": "eslint . --fix",
"fix": "npm-run-all fix:*",
"fix:eslint": "eslint . --fix",
"fix:prettier": "prettier --write .",
"lint": "npm-run-all eslint typecheck publint prettier",
"lint:dev": "npm-run-all eslint:dev typecheck publint prettier:dev",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:publint": "publint",
"lint:typecheck": "npm run typecheck",
"prerelease": "npm-run-all build",
"prettier": "prettier --check .",
"prettier:dev": "prettier --write .",
"publint": "publint",
"release": "changeset publish",
"test": "node --import tsx --test --experimental-test-coverage src/__tests__/**/*.test.ts src/__tests__/*.test.ts",
"tsup": "tsup --entry src/index.ts --entry src/cli.ts --format cjs,esm --minify --dts",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
Expand Down

0 comments on commit f54b042

Please sign in to comment.