Skip to content

Commit

Permalink
feat: use tsup to bundle the app
Browse files Browse the repository at this point in the history
  • Loading branch information
nimaa77 committed Apr 20, 2023
1 parent 1f4c085 commit 5f3b0b3
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions packages/after.js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
"description": "Build isomorphic Javascript applications with ease.",
"repository": "jaredpalmer/after.js",
"author": "Jared Palmer <[email protected]>",
"module": "dist/esm/index.esm.js",
"sideEffects": false,
"version": "3.2.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"build": "tsup src/index.tsx --format cjs,esm --dts --legacy-output --clean",
"dev": "npm run build -- --watch",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
Expand Down Expand Up @@ -56,10 +56,8 @@
"react-router-dom": "^5.1.2",
"serialize-javascript": "^3.0.0",
"size-limit": "^6.0.4",
"ts-jest": "^25.4.0",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
"tsup": "^6.7.0",
"typescript": "^4.4.4",
},
"dependencies": {
"babel-plugin-after": "^3.2.0"
Expand Down

0 comments on commit 5f3b0b3

Please sign in to comment.