Skip to content

Commit

Permalink
switch to tsup
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Mar 4, 2024
1 parent 80de0f9 commit 26d939e
Show file tree
Hide file tree
Showing 5 changed files with 535 additions and 192 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
],
"license": "MIT",
"dependencies": {
"@nsis/language-data": "^0.9.0"
"@nsis/language-data": "^0.9.0",
"tsup": "^8.0.2"
},
"devDependencies": {
"@types/node": "^20.4.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"esbuild": "^0.18.11",
"eslint": "^8.44.0",
"eslint-plugin-json": "^3.1.0",
"husky": "^8.0.3",
Expand All @@ -49,8 +49,8 @@
"which": "^3.0.1"
},
"scripts": {
"build": "esbuild src/makensis.ts --bundle --platform=node --outfile=dist/makensis.mjs --format=esm --external:@nsis/language-data",
"dev": "esbuild src/makensis.ts --bundle --platform=node --outfile=dist/makensis.mjs --format=esm --external:@nsis/language-data --watch",
"build": "tsup",
"dev": "npm run build -- --watch",
"fix": "eslint --fix ./src",
"lint:code": "eslint ./src --ignore-path .gitignore",
"lint:md": "remark . --quiet --frail --ignore-path .gitignore",
Expand Down
Loading

0 comments on commit 26d939e

Please sign in to comment.