We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1a45b7 commit f92325aCopy full SHA for f92325a
gulpfile.js
@@ -103,15 +103,15 @@ let transpileJSForProd = () => {
103
104
let copyUnprocessedAssetsForProd = () => {
105
return src([
106
- `dev/*.*`, // Source all files,
107
- `dev/**`, // and all folders,
108
- `!dev/html/`, // but not the HTML folder
109
- `!dev/html/*.*`, // or any files in it
110
- `!dev/html/**`, // or any sub folders;
111
- `!dev/img/`, // ignore images;
112
- `!dev/img/.gitignore`, // ignore .gitignore;
113
- `!dev/**/*.js`, // ignore JS;
114
- `!dev/styles/**` // and, ignore Sass/CSS.
+ `dev/*.*`, // Source all files,
+ `dev/**`, // and all folders,
+ `!dev/html/`, // but not the HTML folder
+ `!dev/html/*.*`, // or any files in it
+ `!dev/html/**`, // or any sub folders;
+ `!dev/img/`, // ignore images;
+ `!dev/img/.gitignore`, // ignore .gitignore;
+ `!dev/**/*.js`, // ignore JS;
+ `!dev/styles/**` // and, ignore Sass/CSS.
115
], {dot: true})
116
.pipe(dest(`prod`));
117
};
0 commit comments