.nmpignore 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. # Ignore source code
  2. src
  3. # ------------- Defaults ------------- #
  4. # gitHub actions
  5. .github
  6. # eslint
  7. .eslintrc
  8. # typescript
  9. tsconfig.json
  10. # vscode
  11. .vscode
  12. # nodemon
  13. nodemon.json
  14. # Logs
  15. logs
  16. *.log
  17. npm-debug.log*
  18. yarn-debug.log*
  19. yarn-error.log*
  20. lerna-debug.log*
  21. # Diagnostic reports (https://nodejs.org/api/report.html)
  22. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  23. # Runtime data
  24. pids
  25. *.pid
  26. *.seed
  27. *.pid.lock
  28. # Directory for instrumented libs generated by jscoverage/JSCover
  29. lib-cov
  30. # Coverage directory used by tools like istanbul
  31. coverage
  32. *.lcov
  33. # nyc test coverage
  34. .nyc_output
  35. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  36. .grunt
  37. # Bower dependency directory (https://bower.io/)
  38. bower_components
  39. # node-waf configuration
  40. .lock-wscript
  41. # Compiled binary addons (https://nodejs.org/api/addons.html)
  42. build/Release
  43. # Dependency directories
  44. node_modules/
  45. jspm_packages/
  46. # Snowpack dependency directory (https://snowpack.dev/)
  47. web_modules/
  48. # TypeScript cache
  49. *.tsbuildinfo
  50. # Optional npm cache directory
  51. .npm
  52. # Optional eslint cache
  53. .eslintcache
  54. # Microbundle cache
  55. .rpt2_cache/
  56. .rts2_cache_cjs/
  57. .rts2_cache_es/
  58. .rts2_cache_umd/
  59. # Optional REPL history
  60. .node_repl_history
  61. # Output of 'npm pack'
  62. *.tgz
  63. # Yarn Integrity file
  64. .yarn-integrity
  65. # dotenv environment variables file
  66. .env
  67. .env.test
  68. # parcel-bundler cache (https://parceljs.org/)
  69. .cache
  70. .parcel-cache
  71. # Next.js build output
  72. .next
  73. # Nuxt.js build / generate output
  74. .nuxt
  75. # Gatsby files
  76. .cache/
  77. # Comment in the public line in if your project uses Gatsby and not Next.js
  78. # https://nextjs.org/blog/next-9-1#public-directory-support
  79. # public
  80. # vuepress build output
  81. .vuepress/dist
  82. # Serverless directories
  83. .serverless/
  84. # FuseBox cache
  85. .fusebox/
  86. # DynamoDB Local files
  87. .dynamodb/
  88. # TernJS port file
  89. .tern-port
  90. # Stores VSCode versions used for testing VSCode extensions
  91. .vscode-test
  92. # yarn v2
  93. .yarn/cache
  94. .yarn/unplugged
  95. .yarn/build-state.yml
  96. .pnp.*