Skip to content

Commit

Permalink
Merge pull request #368 from salesforce/fix_npm_packaging
Browse files Browse the repository at this point in the history
Fix allow listed `files` for what to include in npm package
  • Loading branch information
colincasey committed Feb 29, 2024
2 parents 1b6db59 + d9187a0 commit e391ebf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
5 changes: 0 additions & 5 deletions .npmignore

This file was deleted.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,9 @@
"main": "./dist/cookie/index.js",
"types": "./dist/cookie/index.d.ts",
"files": [
"dist/*.js",
"dist/*.d.ts"
"dist/**/*.js",
"dist/**/*.d.ts",
"!__tests__"
],
"scripts": {
"build": "npm run clean && tsc",
Expand Down

0 comments on commit e391ebf

Please sign in to comment.