Initial webpack config with JS build support

This commit is contained in:
Jeff Avallone
2016-10-15 12:16:42 -04:00
parent 25473f8b21
commit c55adb13d9
3 changed files with 48 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
var canopy = require('canopy');
module.exports = function(source) {
this.cacheable();
return canopy.compile(source);
};