Skip to content

Commit

Permalink
dot.*ignore updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ilg-ul committed Sep 4, 2023
1 parent 26b029b commit f97c456
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 15 deletions.
51 changes: 39 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
Expand Down Expand Up @@ -35,15 +36,14 @@ bower_components
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
# build/Release
build/
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo
Expand All @@ -54,6 +54,9 @@ typings/
# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
Expand All @@ -69,29 +72,41 @@ typings/
# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
# dotenv environment variable files
.env
.env.test
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

Expand All @@ -104,18 +119,30 @@ dist
# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# added for xPack

.vscode/c_cpp_properties.json

# xpm
xpacks/
xpack-*.tgz
build*/

/*.tgz

# Windows
Thumbs.db

# macOS
.DS_Store

.vscode/c_cpp_properties.json

build/

# end
18 changes: 15 additions & 3 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,28 @@
.github/
.gitignore
.gitmodules
.clang-*
.cmake-format

.vscode/

patches/
pkgconfig/
scripts/
tests/
extras/
test*/
build*/
ci/
docs/
example*/

xpacks/
node_modules/

/*.tgz

README-*
LICENSE-*
CONTRIBUTING**

*.tgz
wrappers/
extras/

0 comments on commit f97c456

Please sign in to comment.