Skip to content

Commit

Permalink
Fixes missing types and adds source maps to package
Browse files Browse the repository at this point in the history
  • Loading branch information
webketje committed May 8, 2023
1 parent 61976dc commit 78eaefc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ npm-debug.log*
coverage.info
test/fixtures/*/build
lib/*.*js
lib/*.map
node_modules
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"type": "module",
"types": "lib/index.d.ts",
"files": [
"lib/*.js"
"lib/*"
],
"directories": {
"lib": "lib",
Expand All @@ -45,7 +45,7 @@
"lint": "eslint --fix .",
"lint:check": "eslint --fix-dry-run .",
"release": "npm run build && release-it .",
"build": "microbundle --target node --no-sourcemap -f cjs,esm --generateTypes=false",
"build": "microbundle --target node -f cjs,esm --generateTypes=false",
"test": "nyc mocha",
"pretest": "npm run build"
},
Expand Down

0 comments on commit 78eaefc

Please sign in to comment.