Skip to content

Commit 02634f8

Browse files
web folder build exclude
1 parent d7d64e8 commit 02634f8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

gulpfile.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,9 @@ gulp.task("exportCacheXML", [
133133
});
134134

135135
gulp.task("zipRelease", ["exportCacheXML"], function () {
136-
return gulp.src("build/**/*")
136+
return gulp.src(["build/**/*", "!build/web/**/*"])
137137
.pipe(zip("CacheUMLExplorer-v" + pkg["version"] + ".zip", {
138-
comment: "Cach? UML explorer v" + pkg["version"] + " by Nikita Savchenko\n\n" +
139-
"+ WEBModule folder holds packed JS/CSS files to integrate CacheUMLExplorer to any WEB " +
140-
"application;\n" +
138+
comment: "Cache UML explorer v" + pkg["version"] + " by Nikita Savchenko\n\n" +
141139
"+ Cache folder holds XML file to import to InterSystems Cache.\n\n" +
142140
"For further information about installation and information, check README.md file."
143141
}))

0 commit comments

Comments
 (0)