Skip to content

Commit

Permalink
chore(utilities): tear out build system and export source directly
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Nov 13, 2024
1 parent f95d64c commit 24a934d
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions packages/utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,20 @@
"type": "module",
"exports": {
".": {
"import": "./dist/index.esm.js"
},
"./hooks": {
"import": "./dist/index.esm2.js"
},
"./src": {
"import": "./src/index.js"
},
"./src/hooks": {
"./hooks": {
"import": "./src/hooks/index.js"
}
},
"main": "./src/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "vite build --config ../../vite.config.js",
"build:watch": "chokidar \"src/**/*.(js|jsx|css)\" -c \"npm run build\"",
"build": "echo 'This package does not have a build process.'",
"check-types": "tsc",
"check-types-watch": "tsc --watch",
"test": "vitest --config ../../vite.config.js"
},
"peerDependencies": {
Expand Down

0 comments on commit 24a934d

Please sign in to comment.