Skip to content

Commit

Permalink
chore: change lib folder to dist
Browse files Browse the repository at this point in the history
  • Loading branch information
EdieLemoine committed Dec 19, 2023
1 parent cc5476a commit 981f383
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
coverage/
lib/
dist/
node_modules/

.yarn/*
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
"author": "Edie Lemoine <[email protected]>",
"type": "module",
"exports": {
"require": "./lib/index.cjs",
"import": "./lib/index.js"
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"types": "lib/index.d.ts",
"types": "dist/index.d.ts",
"files": [
"lib"
"dist"
],
"scripts": {
"build": "tsup src/index.ts -d lib --dts --format esm,cjs",
"build": "tsup src/index.ts --dts --format esm,cjs",
"prepare": "is-ci || husky install",
"test": "vitest",
"test:run": "vitest run",
Expand Down

0 comments on commit 981f383

Please sign in to comment.