Skip to content

Commit 8e8358a

Browse files
committed
chore(create-pyth-app): removed log files from gitignore
1 parent d465115 commit 8e8358a

File tree

3 files changed

+131
-15
lines changed

3 files changed

+131
-15
lines changed

packages/create-pyth-package/src/templates/cli/.gitignore

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
.env*.local
2-
# Logs
3-
logs
4-
*.log
5-
npm-debug.log*
6-
yarn-debug.log*
7-
yarn-error.log*
8-
lerna-debug.log*
92

103
# Diagnostic reports (https://nodejs.org/api/report.html)
114
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

packages/create-pyth-package/src/templates/library/.gitignore

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
.env*.local
2-
# Logs
3-
logs
4-
*.log
5-
npm-debug.log*
6-
yarn-debug.log*
7-
yarn-error.log*
8-
lerna-debug.log*
92

103
# Diagnostic reports (https://nodejs.org/api/report.html)
114
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
Lines changed: 131 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,133 @@
11
.env*.local
22

3-
dist/
3+
# Diagnostic reports (https://nodejs.org/api/report.html)
4+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
*.pid.lock
11+
12+
# Directory for instrumented libs generated by jscoverage/JSCover
13+
lib-cov
14+
15+
# Coverage directory used by tools like istanbul
16+
coverage
17+
*.lcov
18+
19+
# nyc test coverage
20+
.nyc_output
21+
22+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
23+
.grunt
24+
25+
# Bower dependency directory (https://bower.io/)
26+
bower_components
27+
28+
# node-waf configuration
29+
.lock-wscript
30+
31+
# Compiled binary addons (https://nodejs.org/api/addons.html)
32+
build/Release
33+
34+
# Dependency directories
35+
node_modules/
36+
jspm_packages/
37+
38+
# Snowpack dependency directory (https://snowpack.dev/)
39+
web_modules/
40+
41+
# TypeScript cache
42+
*.tsbuildinfo
43+
44+
# Optional npm cache directory
45+
.npm
46+
47+
# Optional eslint cache
48+
.eslintcache
49+
50+
# Optional stylelint cache
51+
.stylelintcache
52+
53+
# Optional REPL history
54+
.node_repl_history
55+
56+
# Output of 'npm pack'
57+
*.tgz
58+
59+
# Yarn Integrity file
60+
.yarn-integrity
61+
62+
# dotenv environment variable files
63+
.env
64+
.env.*
65+
!.env.example
66+
67+
# parcel-bundler cache (https://parceljs.org/)
68+
.cache
69+
.parcel-cache
70+
71+
# Next.js build output
72+
.next
73+
out
74+
75+
# Nuxt.js build / generate output
76+
.nuxt
77+
dist
78+
79+
# Gatsby files
80+
.cache/
81+
# Comment in the public line in if your project uses Gatsby and not Next.js
82+
# https://nextjs.org/blog/next-9-1#public-directory-support
83+
# public
84+
85+
# vuepress build output
86+
.vuepress/dist
87+
88+
# vuepress v2.x temp and cache directory
89+
.temp
90+
.cache
91+
92+
# Sveltekit cache directory
93+
.svelte-kit/
94+
95+
# vitepress build output
96+
**/.vitepress/dist
97+
98+
# vitepress cache directory
99+
**/.vitepress/cache
100+
101+
# Docusaurus cache and generated files
102+
.docusaurus
103+
104+
# Serverless directories
105+
.serverless/
106+
107+
# FuseBox cache
108+
.fusebox/
109+
110+
# DynamoDB Local files
111+
.dynamodb/
112+
113+
# Firebase cache directory
114+
.firebase/
115+
116+
# TernJS port file
117+
.tern-port
118+
119+
# Stores VSCode versions used for testing VSCode extensions
120+
.vscode-test
121+
122+
# yarn v3
123+
.pnp.*
124+
.yarn/*
125+
!.yarn/patches
126+
!.yarn/plugins
127+
!.yarn/releases
128+
!.yarn/sdks
129+
!.yarn/versions
130+
131+
# Vite logs files
132+
vite.config.js.timestamp-*
133+
vite.config.ts.timestamp-*

0 commit comments

Comments
 (0)