UNPKG

datum-merge

Version:

Simplified diff and merging for deeply nested objects

19 lines (17 loc) 427 B
import esbuild from "esbuild"; import process from "process"; esbuild.build({ entryPoints: ['deep-diff.ts'], tsconfig: 'tsconfig.lib.json', bundle: true, platform: 'browser', format: 'iife', globalName: 'DeepDiff', target: 'es6', external: [], logLevel: 'info', sourcemap: 'external', minify: true, treeShaking: false, outfile: 'dist-diff/umd/deep-diff.min.js', }).catch(() => process.exit(1));