A collection of games I worked on in high school.
at main 15 lines 257 B view raw
1const p = { 2 feathers: "./src", 3 vue: "./public/src/main.js", 4 dest: "./public/dist/js" 5}; 6 7export default function* () { 8 yield this.start(["build"]); 9} 10 11export function* build() { 12 yield this 13 .source(p.vue) 14 .webpack(require("./webpack.config.js")); 15}