Skip to content

Commit b526e22

Browse files
committed
Fix package-lock.json sync issue and update PostCSS config for TailwindCSS 4.x
1 parent 4132437 commit b526e22

File tree

4 files changed

+572
-2438
lines changed

4 files changed

+572
-2438
lines changed

.gitignore

Lines changed: 106 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -4,59 +4,126 @@ logs
44
npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
7-
pnpm-debug.log*
87
lerna-debug.log*
98

10-
node_modules
11-
dist
12-
dist-ssr
13-
*.local
14-
15-
# Editor directories and files
16-
.vscode/*
17-
!.vscode/extensions.json
18-
.idea
19-
.DS_Store
20-
*.suo
21-
*.ntvs*
22-
*.njsproj
23-
*.sln
24-
*.sw?
25-
26-
# Environment variables
27-
.env
28-
.env.local
29-
.env.development.local
30-
.env.test.local
31-
.env.production.local
9+
# Diagnostic reports (https://nodejs.org/api/report.html)
10+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
3211

33-
# Cache directories
34-
.cache
35-
.parcel-cache
36-
.vite
37-
.rollup.cache
12+
# Runtime data
13+
pids
14+
*.pid
15+
*.seed
16+
*.pid.lock
17+
18+
# Directory for instrumented libs generated by jscoverage/JSCover
19+
lib-cov
3820

3921
# Coverage directory used by tools like istanbul
40-
coverage/
22+
coverage
4123
*.lcov
4224

43-
# ESLint cache
44-
.eslintcache
25+
# nyc test coverage
26+
.nyc_output
27+
28+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29+
.grunt
30+
31+
# Bower dependency directory (https://bower.io/)
32+
bower_components
33+
34+
# node-waf configuration
35+
.lock-wscript
36+
37+
# Compiled binary addons (https://nodejs.org/api/addons.html)
38+
build/Release
4539

46-
# Temporary folders
47-
tmp/
48-
temp/
40+
# Dependency directories
41+
node_modules/
42+
jspm_packages/
4943

50-
# OS generated files
51-
Thumbs.db
52-
ehthumbs.db
44+
# Snowpack dependency directory (https://snowpack.dev/)
45+
web_modules/
46+
47+
# TypeScript cache
48+
*.tsbuildinfo
5349

5450
# Optional npm cache directory
5551
.npm
5652

53+
# Optional eslint cache
54+
.eslintcache
55+
56+
# Optional stylelint cache
57+
.stylelintcache
58+
59+
# Optional REPL history
60+
.node_repl_history
61+
62+
# Output of 'npm pack'
63+
*.tgz
64+
5765
# Yarn Integrity file
5866
.yarn-integrity
5967

60-
# Build info
61-
*.tsbuildinfo
68+
# dotenv environment variable files
69+
.env
70+
.env.*
71+
!.env.example
72+
73+
# parcel-bundler cache (https://parceljs.org/)
74+
.cache
75+
.parcel-cache
76+
77+
# Next.js build output
78+
.next
79+
out
80+
81+
# Nuxt.js build / generate output
82+
.nuxt
83+
dist
84+
85+
# Gatsby files
86+
.cache/
87+
# Comment in the public line in if your project uses Gatsby and not Next.js
88+
# https://nextjs.org/blog/next-9-1#public-directory-support
89+
# public
90+
91+
# vuepress build output
92+
.vuepress/dist
93+
94+
# vuepress v2.x temp and cache directory
95+
.temp
96+
.cache
97+
98+
# vitepress build output
99+
**/.vitepress/dist
100+
101+
# vitepress cache directory
102+
**/.vitepress/cache
103+
104+
# Docusaurus cache and generated files
105+
.docusaurus
106+
107+
# Serverless directories
108+
.serverless/
109+
110+
# FuseBox cache
111+
.fusebox/
112+
113+
# DynamoDB Local files
114+
.dynamodb/
115+
116+
# TernJS port file
117+
.tern-port
118+
119+
# Stores VSCode versions used for testing VSCode extensions
120+
.vscode-test
62121

122+
# yarn v3
123+
.pnp.*
124+
.yarn/*
125+
!.yarn/patches
126+
!.yarn/plugins
127+
!.yarn/releases
128+
!.yarn/sdks
129+
!.yarn/versions

0 commit comments

Comments
 (0)