Skip to main content
Module

x/enum/Jakefile

Enum is a javascript module that introduces the Enum Type. It works for node.js, in the browser and for deno.
Go to Latest
File
var smoosh = require('smoosh');
// ## BUILD// run `jake build` // will build the projects clientsources.desc('Builds the scripts');task('build', [], function(debug) { // a basic smoosh configuration object smoosh.config({ "VERSION": require('./package.json').version, "JAVASCRIPT": { "DIST_DIR": "./", "enum": [ "lib/enum.js" ] } }); // run smoosh to get minified version of the js file smoosh.build().analyze(); console.log('+ written files successfully'.green);});