You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
273 B

5 years ago
  1. var fs = require("fs");
  2. var envify = require('envify/custom')
  3. var browserify = require("browserify");
  4. browserify("./govue.js")
  5. .transform({ global: true }, envify({ NODE_ENV: 'production' }))
  6. .bundle()
  7. .pipe(fs.createWriteStream("../govue-runtime/govue.js"));