UNPKG

extendscript-bundlr

Version:

a tool for bundling Adobe ExtendScripts that use the `#include 'path/to/file'` statement

16 lines (13 loc) 363 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.pad = pad; var chalk = require('chalk'); var error = exports.error = chalk.bold.red; var warn = exports.warn = chalk.bold.yellow; var woohoo = exports.woohoo = chalk.bold.green; var say = exports.say = chalk.gray; function pad(msg) { return '------ ' + msg + ' ------'; }