9 lines
187 B
JavaScript
Executable File
9 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);
|
|
});
|