style fixes

This commit is contained in:
2024-05-03 12:18:24 -04:00
parent 3d9ef61176
commit 6f06b603d4
4 changed files with 16 additions and 498 deletions

View File

@@ -10,9 +10,10 @@
"wp-start": "wp-scripts start --webpack-no-externals --output-path=assets/js",
"tailwind-watch": "npx tailwindcss -i ./src/styles/vendors/tailwind/_source.scss -o ./src/styles/vendors/tailwind/_tailwind.scss --watch",
"tailwind-build": "npx tailwindcss -i ./src/styles/vendors/tailwind/_source.scss -o ../src/styles/vendors/tailwind/_tailwind.scss --minify",
"sass": "npx sass --watch --no-source-map ./src/styles/styles.scss:./assets/css/styles.css",
"dev": "npm-run-all --parallel wp-start tailwind-watch sass sync",
"prod": "npm-run-all --sequential tailwind-build sass wp-build",
"sass-dev": "npx sass --watch --no-source-map ./src/styles/styles.scss:./assets/css/styles.css",
"sass-prod": "npx sass --no-source-map ./src/styles/styles.scss:./assets/css/styles.css",
"dev": "npm-run-all --parallel wp-start tailwind-watch sass-dev sync",
"prod": "npm-run-all --sequential tailwind-build sass-prod wp-build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],