Skip to content

Commit

Permalink
Changed command to compile
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanburke committed Oct 9, 2024
1 parent 6a9e7af commit 633bd4d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
"homepage": "https://github.com/jordanburke/functype#readme",
"url": "https://github.com/jordanburke/functype",
"scripts": {
"compile": "tsc -noEmit",
"compile": "tsc --noEmit",
"build:dev": "rimraf lib && tsup --watch",
"build:prod": "compile && rimraf dist && cross-env NODE_ENV=production tsup",
"build:prod": "tsc --noEmit && rimraf dist && cross-env NODE_ENV=production tsup",
"build:watch": "tsup --watch",
"build:publish": "pnpm build:prod && pnpm publish --access public",
"lint:fix": "eslint ./src --ext .ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{ts,tsx,css,md,json}\" ",
"lint:format": "prettier --loglevel warn --write \"./**/*.{ts,tsx,css,md,json}\" ",
"lint": "pnpm lint:format && pnpm lint:fix ",
"test": "compile && jest",
"test:watch": "compile && jest --watch",
"test:cov": "compile && jest --coverage"
"test": "tsc --noEmit && jest",
"test:watch": "tsc --noEmit && jest --watch",
"test:cov": "tsc --noEmit && jest --coverage"
},
"devDependencies": {
"@types/jest": "29.5.13",
Expand Down

0 comments on commit 633bd4d

Please sign in to comment.