extendscript-bundlr
Version:
a tool for bundling Adobe ExtendScripts that use the `#include 'path/to/file'` statement
12 lines (11 loc) • 349 B
JavaScript
import {
defaults
} from './defaults.js';
export const messages = {
nosource: 'No source file path provided!',
sourceDoesNotExist: function(p) {
return `The file at path "${p}" does not exist`;
},
targetexists: 'target file exists. clearing',
notarget: `No target file path provided. using default name: "${defaults.targetfile}"`
};