Skip to content

Commit

Permalink
Merge pull request #1 from embroider-build/use-tsup
Browse files Browse the repository at this point in the history
use tsup
  • Loading branch information
mansona committed Nov 17, 2023
2 parents 1e4da57 + 132f7f3 commit 591c414
Show file tree
Hide file tree
Showing 4 changed files with 653 additions and 56 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/node_modules/
/build/
/dist/
/.git/
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"version": "1.0.0",
"description": "",
"type": "module",
"bin": {
"release-plan": "./src/cli.js"
},
"bin": "./dist/cli.js",
"repository": "https://github.com/embroider-build/release-plan",
"scripts": {
"prepare": "tsc",
"prepare": "npm run build",
"build": "tsup src/cli.ts --format esm",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
Expand All @@ -32,6 +32,7 @@
"yargs": "^17.0.1"
},
"devDependencies": {
"tsup": "^7.3.0",
"typescript": "^5.2.2"
}
}
Loading

0 comments on commit 591c414

Please sign in to comment.