Compare commits
4 Commits
5b7fed2cb8
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
994107305b | ||
|
|
514dc490b5 | ||
|
|
f4782bc9cd | ||
|
|
361f57424c |
10
.vscode/settings.json
vendored
10
.vscode/settings.json
vendored
@@ -3,6 +3,14 @@
|
||||
"tree.indentGuidesStroke": "#3d92ec",
|
||||
"activityBar.background": "#213309",
|
||||
"titleBar.activeBackground": "#2E470C",
|
||||
"titleBar.activeForeground": "#F6FCEE"
|
||||
"titleBar.activeForeground": "#F6FCEE",
|
||||
"titleBar.inactiveBackground": "#213209",
|
||||
"titleBar.inactiveForeground": "#F7FCEF",
|
||||
"statusBar.background": "#213209",
|
||||
"statusBar.foreground": "#F7FCEF",
|
||||
"statusBar.debuggingBackground": "#213209",
|
||||
"statusBar.debuggingForeground": "#F7FCEF",
|
||||
"statusBar.noFolderBackground": "#213209",
|
||||
"statusBar.noFolderForeground": "#F7FCEF"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@ const cwd = path.resolve("..");
|
||||
module.exports.tailwindToCSS = debounce(() => {
|
||||
try {
|
||||
require("child_process").execSync(
|
||||
`npx @tailwindcss/cli -i styles/theme.css -o static/dist/theme.css`,
|
||||
`./node_modules/.bin/tailwindcss -i styles/theme.css -o static/dist/theme.css`,
|
||||
{ stdio: "inherit" }
|
||||
);
|
||||
} catch (error) {
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"scripts": {
|
||||
"start": "npm run watch",
|
||||
"watch": "node bin/.watch.js",
|
||||
"build": "npx @tailwindcss/cli -i ./styles/theme.css -o ./static/dist/theme.css --optimize"
|
||||
"build": "./node_modules/.bin/tailwindcss -i ./styles/theme.css -o ./static/dist/theme.css --optimize"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -32,11 +32,11 @@
|
||||
"dotenv": "^16.4.7"
|
||||
},
|
||||
"dependencies": {
|
||||
"tailwindcss": "^4.0.13",
|
||||
"@tailwindcss/cli": "^4.0.13",
|
||||
"@tailwindcss/typography": "^0.5.16",
|
||||
"glob": "^10.3.10",
|
||||
"lodash": "^4.17.21",
|
||||
"lodash.debounce": "^4.0.8",
|
||||
"tailwindcss": "^4.0.13"
|
||||
"lodash.debounce": "^4.0.8"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user