Skip to content

Commit

Permalink
[feat]: update dev script (#3)
Browse files Browse the repository at this point in the history
Package version bumped to 1.0.0 and updated dependencies in lock file. Replaced `concurrently` with `npm-run-all` in development script. Added support for `npm-run-all`. Removed redundant CSS class and added new CSS class.
  • Loading branch information
creative-tutorials authored Aug 7, 2024
2 parents 9078591 + 6a8de32 commit 87340c3
Show file tree
Hide file tree
Showing 3 changed files with 868 additions and 7 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "html-tailwind",
"version": "0.0.1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently \"pnpm run build\" \"pnpm run serve\" \"pnpm run sync\"",
"dev": "npm-run-all --parallel build serve sync",
"serve": "nodemon main.mjs",
"sync": "browser-sync start --config bs-config.js",
"build": "tailwindcss -i ./src/styles.css -o ./src/output.css --watch"
Expand All @@ -17,6 +17,7 @@
"browser-sync": "^3.0.2",
"concurrently": "^8.2.2",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.41",
"postcss-cli": "^11.0.0",
"tailwindcss": "^3.4.7"
Expand Down
Loading

0 comments on commit 87340c3

Please sign in to comment.