Skip to content

Commit 7083d96

Browse files
committed
fix: include dist directories to package
`dist-*` doesn't work with `npm@9` and nothing is packed. This commit fixes `files` to a proper glob pattern so that `npm pack` can include all files with `npm@9`.
1 parent 93dfc75 commit 7083d96

File tree

1 file changed

+1
-1
lines changed
  • smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen

1 file changed

+1
-1
lines changed

smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/base-package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
"dist-types/*": ["dist-types/ts3.4/*"]
3636
}
3737
},
38-
"files": ["dist-*"]
38+
"files": ["dist-*/**"]
3939
}

0 commit comments

Comments
 (0)