Skip to content

Instantly share code, notes, and snippets.

@wufe
Created November 2, 2018 09:41
Show Gist options
  • Save wufe/ec0b817bfae608239fb5d19700d02323 to your computer and use it in GitHub Desktop.
Save wufe/ec0b817bfae608239fb5d19700d02323 to your computer and use it in GitHub Desktop.
Parcel on visual studio
var gulp = require("gulp"),
shell = require("gulp-shell");
gulp.task("build-parcel:compile", shell.task("parcel build wwwroot/js/site.js", { cwd: __dirname }));
gulp.task("build-parcel:watch", function(){
gulp.watch([
"wwwroot/**/*.js",
"wwwroot/**/*.vue",
], ["build-parcel:compile"]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment