1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/oclif/bin/dev

9 lines
213 B
Text
Raw Normal View History

2022-04-15 10:46:49 +09:00
#!/usr/bin/env node
2022-04-15 15:57:00 +09:00
process.env.NODE_ENV = "development";
2022-04-15 10:46:49 +09:00
2022-04-15 15:57:00 +09:00
require("esbuild-register")
const oclif = require("@oclif/core");
2022-04-15 10:46:49 +09:00
oclif.settings.debug = true;
2022-04-15 15:57:00 +09:00
oclif.run().then(oclif.flush).catch(oclif.Errors.handle);