Skip to content

Commit 87340c3

Browse files
[feat]: update dev script (#3)
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.
2 parents 9078591 + 6a8de32 commit 87340c3

File tree

3 files changed

+868
-7
lines changed

3 files changed

+868
-7
lines changed

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "html-tailwind",
3-
"version": "0.0.1",
3+
"version": "1.0.0",
44
"description": "",
55
"main": "index.js",
66
"scripts": {
7-
"dev": "concurrently \"pnpm run build\" \"pnpm run serve\" \"pnpm run sync\"",
7+
"dev": "npm-run-all --parallel build serve sync",
88
"serve": "nodemon main.mjs",
99
"sync": "browser-sync start --config bs-config.js",
1010
"build": "tailwindcss -i ./src/styles.css -o ./src/output.css --watch"
@@ -17,6 +17,7 @@
1717
"browser-sync": "^3.0.2",
1818
"concurrently": "^8.2.2",
1919
"nodemon": "^3.1.4",
20+
"npm-run-all": "^4.1.5",
2021
"postcss": "^8.4.41",
2122
"postcss-cli": "^11.0.0",
2223
"tailwindcss": "^3.4.7"

0 commit comments

Comments
 (0)