Skip to content

Commit

Permalink
fix(key-card): add .npmignore to fix npm export
Browse files Browse the repository at this point in the history
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
  • Loading branch information
abanka27 committed Jun 26, 2023
1 parent e471169 commit c6d51be
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions modules/key-card/.npmignore
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c6d51be

Please sign in to comment.