Skip to content

Commit

Permalink
Default escape label attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
Andries Smit authored and Andries-Smit committed Jan 31, 2020
1 parent d4efc4a commit 75f2e00
Show file tree
Hide file tree
Showing 9 changed files with 380 additions and 244 deletions.
6 changes: 3 additions & 3 deletions Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ var pkg = require("./package.json"),
gulp.task("build", gulp.series(["compress"]));

gulp.task("default", gulp.series(['build'], function() {
gulp.watch("./src/**/*", ["compress"]);
gulp.watch("./src/**/*.js", ["copy:js"]);
gulp.watch("./src/**/*.html", ["copy:html"])
gulp.watch("./src/**/*", gulp.series(["compress"]));
gulp.watch("./src/**/*.js", gulp.series(["copy:js"]));
gulp.watch("./src/**/*.html", gulp.series(["copy:html"]));
}));

gulp.task("compress", gulp.series(["clean"], function () {
Expand Down
Binary file modified dist/RadioButtonList.mpk
Binary file not shown.
Loading

0 comments on commit 75f2e00

Please sign in to comment.