From c6d51be6ddf310a53b1a8a2ca5ad4038f70d5c56 Mon Sep 17 00:00:00 2001 From: Anshuman Banka Date: Mon, 26 Jun 2023 09:12:56 -0400 Subject: [PATCH] fix(key-card): add .npmignore to fix npm export In the absence of an .npmignore file, npm uses .gitignore to determine which files to not publish -- as a result the built distribution was not exported. Ticket: CE-1215 --- modules/key-card/.npmignore | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 modules/key-card/.npmignore diff --git a/modules/key-card/.npmignore b/modules/key-card/.npmignore new file mode 100644 index 0000000000..90a7ae9fe7 --- /dev/null +++ b/modules/key-card/.npmignore @@ -0,0 +1,13 @@ +!dist/ +dist/test/ +dist/tsconfig.tsbuildinfo +.idea/ +tsconfig.json +src/ +test/ +.nyc_output +CODEOWNERS +CHANGELOG.md +README.md +node_modules/ +.mocharc.js