Skip to content

Commit

Permalink
fix: watch task
Browse files Browse the repository at this point in the history
  • Loading branch information
luangjokaj committed Apr 1, 2021
1 parent 9099357 commit 4b00cd5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
3 changes: 2 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ function devServer() {

watch('./src/assets/css/**/*.css', stylesDev);
watch('./src/assets/img/**', series(copyImagesDev, Reload));
watch('./src/**/*.html', series(staticFilesDev, Reload));
watch('./src/includes/*.html', series(stylesDev, staticFilesDev, Reload));
watch('./src/*.html', series(stylesDev, staticFilesDev, Reload));
}

function Reload(done) {
Expand Down
6 changes: 3 additions & 3 deletions installer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fuzzymail",
"version": "0.0.8-17",
"version": "0.0.8-18",
"description": "Making emails fun again.",
"keywords": [
"boilerplate",
Expand Down Expand Up @@ -50,9 +50,9 @@
"gulp-util": "^3.0.8",
"jquery": "^3.6.0",
"normalize.css": "^8.0.1",
"postcss": "^8.2.8",
"postcss": "^8.2.9",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.0",
"postcss-import": "^14.0.1",
"postcss-preset-env": "^6.7.0"
}
}
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fuzzymail",
"version": "0.0.8-17",
"version": "0.0.8-18",
"description": "Making emails fun again.",
"keywords": [
"boilerplate",
Expand Down Expand Up @@ -37,6 +37,6 @@
"download": "^8.0.0",
"execa": "^5.0.0",
"ora": "^5.4.0",
"prompts": "^2.4.0"
"prompts": "^2.4.1"
}
}

0 comments on commit 4b00cd5

Please sign in to comment.