This repository has been archived on 2021-04-21. You can view files and clone it, but cannot push or open issues or pull requests.
Files
node-pcsclite/.npmignore
Martin Endler dacf2a082f Remove bindings dependency (require the built addon directly because the build output location is well-known and constant)
Add note about a possible error and its solution to the README
Improve .editorconfig
Run tests in CI workflow
2020-02-23 18:09:39 +01:00

39 lines
711 B
Plaintext

# Keeping files out of your package
# docs: https://docs.npmjs.com/misc/developers#keeping-files-out-of-your-package
# note: when both .npmignore and .gitignore are present, only .npmignore has effect
# related: https://stackoverflow.com/questions/24942161/does-npm-ignore-files-listed-in-gitignore
### GENERAL
# Windows
Thumbs.db
Desktop.ini
# macOS
.DS_Store
.supported
# common code editors
.atom/
.vscode/
# NetBeans
nbproject/private/
# JetBrains IDEs
# no need to ship metadata
.idea/
# common files
*.log
### PROJECT
# node, npm
node_modules/
# built Node.js C++ addon (must be build specifically on the target platform,
# which is done automatically during installation via node-gyp)
/build/