Skip to content

Commit

Permalink
PUSH
Browse files Browse the repository at this point in the history
-> Upload src!
  • Loading branch information
NaysKutzu committed Jul 5, 2024
1 parent 816028f commit f91f890
Show file tree
Hide file tree
Showing 10 changed files with 788 additions and 6 deletions.
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"php.version": "8.3"
"php.version": "8.3",
"cSpell.words": [
"tailwindcss"
]
}
3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@
"push": [
"bash devtools/push.bash",
"git push origin develop"
],
"frontend:watch": [
"npx tailwindcss -i styles.css -o ./public/style.css --watch"
]
}
}
1 change: 0 additions & 1 deletion devtools/push.bash
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,4 @@ echo '{
"key": ""
}
}' > settings.json
echo "" > migrated_files.txt
echo "This is the first install file ;)" > FIRST_INSTALL
1 change: 0 additions & 1 deletion migrated_files.txt

This file was deleted.

9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"devDependencies": {
"autoprefixer": "^10.4.19",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.4"
},
"scripts": {
"watch": "npx tailwindcss -i ./style.css -o ./public/theme.css --watch",
"build": "npx tailwindcss -i ./style.css -o ./public/theme.css",
"watch": "npx tailwindcss -i styles.css -o ./public/style.css --watch",
"build": "npx tailwindcss -i styles.css -o ./public/style.css --minify --jit",
"clean": "rm -rf ./public/theme.css",
"tests": "composer run tests"
},
Expand Down
6 changes: 6 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};
Loading

0 comments on commit f91f890

Please sign in to comment.