UNPKG

@bscotch/stitch

Version:

Stitch: The GameMaker Studio 2 Asset Pipeline Development Kit.

14 lines 499 B
#!/usr/bin/env node import { stitchCliMerge } from './lib/merge.js'; import { globalParams, mergeOptionsParams, mergeSourceParams, parseStitchArgs, targetParams, } from './lib/params.js'; export const args = parseStitchArgs({ ...globalParams, ...targetParams, ...mergeSourceParams, ...mergeOptionsParams, }, { title: 'Stitch Merge', description: 'Merge assets from one GameMaker project into another.', }); await stitchCliMerge(args); //# sourceMappingURL=stitch-merge.js.map