Add note about a possible error and its solution to the README Improve .editorconfig Run tests in CI workflow
39 lines
711 B
Plaintext
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/
|