Skip to content

Commit

Permalink
fix: root gitignore file (#4460)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanettin committed Jun 12, 2023
1 parent 1d1126d commit eed8a43
Showing 1 changed file with 31 additions and 21 deletions.
52 changes: 31 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,31 +1,41 @@
# Keep "OS" and "IDE and local environment" ignores on your local machine in user home
# git config --global core.excludesFile ~/.gitignore
# https://git-scm.com/docs/gitignore
/.vscode/settings.json

# Dependencies
# OS
**/.DS_Store
etc
temp
.history
*.
**/*.log
*.node
*.log
/.pnpm-store/
/.yarn/
!/.yarn/releases
/node_modules/

# Application
/dist-dev/
/etc/
/lib/
/external/
/packages/qwik/src/napi/package-*
/qwik-app/
/server/
/target/
/temp/
/todo-express/
/tsdoc-metadata.json
qwik-app/
**/server/
todo-express/
target
!/packages/docs/src/routes/demo/events/target
src/napi/package-*

# Tests
# Node
node_modules

# Artifacts
tsc-out
dist
dist-dev
external
lib
tsdoc-metadata.json

# IDE and local environment
.vscode/settings.json
.idea
.eslintcache

# Distribution
/packages/qwik/dist/
# Package Managers
.yarn/*
!.yarn/releases
.pnpm-store/*

0 comments on commit eed8a43

Please sign in to comment.