Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
8 lines
187 B
JavaScript
Executable file
8 lines
187 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
const {DumpPlugin} = require("../build/dump-plugin");
|
|
|
|
new DumpPlugin().run().catch(_ => {
|
|
process.stderr.write('failed to run plugin');
|
|
process.exit(1);
|
|
});
|