Skip to content

Commit

Permalink
build: use tsup instead of tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
lukesthl committed Mar 26, 2023
1 parent 597b4f8 commit ab8a682
Show file tree
Hide file tree
Showing 5 changed files with 459 additions and 197 deletions.
Binary file modified .DS_Store
Binary file not shown.
14 changes: 6 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,17 @@
"name": "@lukesthl/ts-axios-digest-auth",
"version": "0.0.0-development",
"description": "A library which implements HTTP digest authentication for axios clients. With generic typescript support",
"main": "./lib/index.js",
"main": "./dist/index.js",
"files": [
"lib/**/*"
"dist/**/*"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf ./lib/",
"cm": "cz",
"build": "tsup",
"clean": "rm -rf ./dist/",
"lint": "eslint ./src/ --fix",
"semantic-release": "semantic-release",
"test:watch": "jest --watch",
"test": "jest --coverage",
"typecheck": "tsc --noEmit"
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -52,11 +50,11 @@
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"semantic-release": "^21.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.2"
},
"config": {
Expand Down

0 comments on commit ab8a682

Please sign in to comment.