Skip to content

Commit a05ec2a

Browse files
authored
Merge pull request #9 from MagicDuck/bugfix/package-files-glob
fixing the files glob to include all files in lib/ except spec ones
2 parents 3c86754 + f724178 commit a05ec2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"license": "MIT",
2323
"main": "lib/connection.js",
2424
"files": [
25-
"lib/*.js",
26-
"lib/*.d.ts"
25+
"lib/*.{js,d.ts}",
26+
"lib/!(spec)/**/*.{js,d.ts}"
2727
],
2828
"devDependencies": {
2929
"@types/jest": "^27.0.2",

0 commit comments

Comments
 (0)