oauth-init 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +1 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -9388,10 +9388,7 @@ async function main() {
9388
9388
  }
9389
9389
  const orchestrator = new Orchestrator(projectName).setupOAuthServices(oauthToSetup);
9390
9390
  }
9391
- program.name("oauth-init").description("Set up OAuth providers for your project").version("0.1.0");
9392
- program.command("check").description("Check if your project is ready for npm publish").action(checkNpmReadiness);
9393
- program.action(main);
9394
- program.parse();
9391
+ main();
9395
9392
  export {
9396
9393
  GoogleAuthProvider
9397
9394
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oauth-init",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "CLI for setting up OAuth providers for your project",
5
5
  "license": "MIT",
6
6
  "type": "module",