-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0f126c7
commit b86fcc9
Showing
10 changed files
with
728 additions
and
2,107 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
.parcel-cache | ||
node_modules | ||
# Packages | ||
/node_modules | ||
|
||
dist | ||
bundle | ||
src | ||
# Build | ||
/bundle | ||
/dist | ||
/src | ||
|
||
preview | ||
# Social images | ||
/preview |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
.github | ||
.parcel-cache | ||
# Folders | ||
/.github | ||
/bundle | ||
/dist | ||
/node_modules | ||
/preview | ||
|
||
node_modules | ||
dist | ||
bundle | ||
src | ||
|
||
LICENSE | ||
# File types | ||
*.md | ||
*.code-workspace | ||
|
||
*.min.css | ||
*.theme.css | ||
*.theme.css | ||
|
||
# Files | ||
LICENSE | ||
pnpm-lock.yaml |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"useTabs": false, | ||
"singleQuote": false, | ||
"printWidth": 140, | ||
"tabWidth": 4, | ||
"trailingComma": "none", | ||
"overrides": [ | ||
{ | ||
"files": "*.json", | ||
"options": { | ||
"tabWidth": 2 | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,25 +5,20 @@ | |
"repository": "github:Saltssaumure/ieytd-discord-theme", | ||
"author": "Saltssaumure <[email protected]>", | ||
"license": "GPL-3.0", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"dev": "bd-scss dev", | ||
"dev:bd": "bd-scss dev", | ||
"dev:rp": "replugged build theme --watch", | ||
"dev:vc": "bd-scss dev:vc", | ||
"bd": "bd-scss build", | ||
"rp": "replugged bundle theme", | ||
"build:bd": "bd-scss build", | ||
"build:rp": "replugged bundle theme", | ||
"lint": "prettier ./scss --check", | ||
"lint:fix": "prettier ./scss --write --log-level warn", | ||
"release": "replugged release" | ||
}, | ||
"type": "module", | ||
"dependencies": { | ||
"@parcel/config-default": "^2.10.0", | ||
"@parcel/core": "^2.10.0", | ||
"@parcel/transformer-sass": "^2.10.0", | ||
"@types/node": "^20.8.7", | ||
"devDependencies": { | ||
"prettier": "^3.0.3", | ||
"replugged": "^4.6.5", | ||
"replugged": "^4.7.4", | ||
"salt-bd-scss": "^1.1.0" | ||
} | ||
} |
Oops, something went wrong.