@delance/builder 0.2.12 → 0.2.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/cli.js +2 -2
  2. package/dist/index.js +286 -364
  3. package/package.json +24 -22
package/dist/cli.js CHANGED
@@ -38,7 +38,7 @@ var bgBlack = formatter("\x1B[40m", "\x1B[49m");
38
38
  var bgBlue = formatter("\x1B[44m", "\x1B[49m");
39
39
 
40
40
  // cli.ts
41
- var hl = function(..._arguments) {
41
+ function hl(..._arguments) {
42
42
  return bgBlack(` ${dim(magenta("$"))} ${[...function* () {
43
43
  for (let i = 0;i < _arguments.length; i++) {
44
44
  const argument = _arguments[i];
@@ -68,7 +68,7 @@ var hl = function(..._arguments) {
68
68
  yield argument;
69
69
  }
70
70
  }()].join(" ")} `);
71
- };
71
+ }
72
72
  async function main(argv2) {
73
73
  debug.enable("*,-babel");
74
74
  const cwd = argv2.pop();