Skip to content

Commit

Permalink
Refactor build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
aidenybai committed Feb 25, 2022
1 parent 5b6c71b commit b176137
Show file tree
Hide file tree
Showing 5 changed files with 802 additions and 9 deletions.
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
"name": "tiny-vdom",
"version": "0.0.2",
"description": "🤏 Smallest possible virtual DOM implementation",
"main": "dist/vdom.js",
"module": "dist/vdom.js",
"browser": "dist/vdom.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "esbuild src/vdom.ts --minify --outfile=dist/vdom.js"
"build": "tsup src/index.ts --dts"
},
"repository": {
"type": "git",
Expand All @@ -19,6 +20,7 @@
},
"homepage": "https://github.com/aidenybai/tiny-vdom#readme",
"devDependencies": {
"esbuild": "^0.12.28"
"tsup": "^5.11.13",
"typescript": "^4.5.5"
}
}
Loading

0 comments on commit b176137

Please sign in to comment.