Skip to content

Commit

Permalink
Update templates .gitnignore file
Browse files Browse the repository at this point in the history
  • Loading branch information
cezaraugusto committed Sep 1, 2024
1 parent b48f0f8 commit 3522ec7
Show file tree
Hide file tree
Showing 48 changed files with 424 additions and 323 deletions.
11 changes: 3 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@
# ██╔══╝ ██╔██╗ ██║ ██╔══╝ ██║╚██╗██║╚════██║██║██║ ██║██║╚██╗██║
# ███████╗██╔╝ ██╗ ██║ ███████╗██║ ╚████║███████║██║╚██████╔╝██║ ╚████║
# ╚══════╝╚═╝ ╚═╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═══╝
# ██████╗██████╗ ███████╗ █████╗ ████████╗███████╗
# ██╔════╝██╔══██╗██╔════╝██╔══██╗╚══██╔══╝██╔════╝
# ██║ ██████╔╝█████╗ ███████║ ██║ █████╗
# ██║ ██╔══██╗██╔══╝ ██╔══██║ ██║ ██╔══╝
# ╚██████╗██║ ██║███████╗██║ ██║ ██║ ███████╗
# ╚═════╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ ╚═╝ ╚══════╝

# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

Expand All @@ -21,7 +15,7 @@
node_modules
.pnp
.pnp.js

# testing
coverage

Expand Down Expand Up @@ -61,4 +55,5 @@ __TEST__

# Examples
/examples/**/package-lock.json
/examples/**/yarn.lock
/examples/**/yarn.lock
/examples/**/extension-env.d.ts
18 changes: 12 additions & 6 deletions examples/action-chatgpt/.gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
node_modules

# testing
/coverage
coverage

# production
/dist
dist

# misc
.DS_Store

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# lock files
yarn.lock
package-lock.json

# debug files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# lock files
yarn.lock
package-lock.json
# extension.js
extension-env.d.ts
9 changes: 0 additions & 9 deletions examples/action-chatgpt/extension-env.d.ts

This file was deleted.

18 changes: 12 additions & 6 deletions examples/action/.gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
node_modules

# testing
/coverage
coverage

# production
/dist
dist

# misc
.DS_Store

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# lock files
yarn.lock
package-lock.json

# debug files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# lock files
yarn.lock
package-lock.json
# extension.js
extension-env.d.ts
18 changes: 12 additions & 6 deletions examples/config-babel/.gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
node_modules

# testing
/coverage
coverage

# production
/dist
dist

# misc
.DS_Store

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# lock files
yarn.lock
package-lock.json

# debug files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# lock files
yarn.lock
package-lock.json
# extension.js
extension-env.d.ts
18 changes: 12 additions & 6 deletions examples/config-stylelint/.gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
node_modules

# testing
/coverage
coverage

# production
/dist
dist

# misc
.DS_Store

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# lock files
yarn.lock
package-lock.json

# debug files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# lock files
yarn.lock
package-lock.json
# extension.js
extension-env.d.ts
18 changes: 12 additions & 6 deletions examples/content-css-module/.gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
node_modules

# testing
/coverage
coverage

# production
/dist
dist

# misc
.DS_Store

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# lock files
yarn.lock
package-lock.json

# debug files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# lock files
yarn.lock
package-lock.json
# extension.js
extension-env.d.ts
18 changes: 12 additions & 6 deletions examples/content-extension-config/.gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
node_modules

# testing
/coverage
coverage

# production
/dist
dist

# misc
.DS_Store

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# lock files
yarn.lock
package-lock.json

# debug files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# lock files
yarn.lock
package-lock.json
# extension.js
extension-env.d.ts
9 changes: 0 additions & 9 deletions examples/content-extension-config/extension-env.d.ts

This file was deleted.

18 changes: 12 additions & 6 deletions examples/content-less/.gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
node_modules

# testing
/coverage
coverage

# production
/dist
dist

# misc
.DS_Store

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# lock files
yarn.lock
package-lock.json

# debug files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# lock files
yarn.lock
package-lock.json
# extension.js
extension-env.d.ts
18 changes: 12 additions & 6 deletions examples/content-main-world/.gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
node_modules

# testing
/coverage
coverage

# production
/dist
dist

# misc
.DS_Store

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# lock files
yarn.lock
package-lock.json

# debug files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# lock files
yarn.lock
package-lock.json
# extension.js
extension-env.d.ts
18 changes: 12 additions & 6 deletions examples/content-preact/.gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
node_modules

# testing
/coverage
coverage

# production
/dist
dist

# misc
.DS_Store

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# lock files
yarn.lock
package-lock.json

# debug files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# lock files
yarn.lock
package-lock.json
# extension.js
extension-env.d.ts
Loading

0 comments on commit 3522ec7

Please sign in to comment.