Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 4a33d76

Browse files
authored
Merge pull request #49 from kaishin/reda/css-build
Add asset pipeline for CSS
2 parents ac7e049 + b09ffc0 commit 4a33d76

File tree

15 files changed

+5149
-1281
lines changed

15 files changed

+5149
-1281
lines changed

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.node/package-lock.json -diff -merge
2+
.node/package-lock.json linguist-generated=true
3+
4+
Resources/all.min.css -diff -merge
5+
Resources/all.min.css linguist-generated=true

.gitignore

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,68 @@
44
/*.xcodeproj
55
xcuserdata/
66
.swiftpm
7+
8+
# NodeJS
9+
## Logs
10+
logs
11+
*.log
12+
npm-debug.log*
13+
yarn-debug.log*
14+
yarn-error.log*
15+
lerna-debug.log*
16+
17+
## Diagnostic reports (https://nodejs.org/api/report.html)
18+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
19+
20+
## Runtime data
21+
pids
22+
*.pid
23+
*.seed
24+
*.pid.lock
25+
26+
## Dependency directories
27+
node_modules/
28+
jspm_packages/
29+
30+
## Snowpack dependency directory (https://snowpack.dev/)
31+
web_modules/
32+
33+
## Optional npm cache directory
34+
.npm
35+
36+
## Optional eslint cache
37+
.eslintcache
38+
39+
## Yarn Integrity file
40+
.yarn-integrity
41+
42+
## pnpm lockfile
43+
pnpm-lock.yaml
44+
45+
## dotenv environment variables file
46+
.env
47+
.env.test
48+
49+
## parcel-bundler cache (https://parceljs.org/)
50+
.cache
51+
.parcel-cache
52+
53+
## Gatsby files
54+
.cache/
55+
56+
## yarn v2
57+
.yarn/cache
58+
.yarn/unplugged
59+
.yarn/build-state.yml
60+
.pnp.*
61+
62+
# VS Code
63+
.vscode/*
64+
!.vscode/settings.json
65+
!.vscode/tasks.json
66+
!.vscode/launch.json
67+
!.vscode/extensions.json
68+
*.code-workspace
69+
70+
## Local History for Visual Studio Code
71+
.history/

0 commit comments

Comments
 (0)