reposets 1.0.8 → 1.0.10

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/bin/reposets.js +1 -1
  2. package/package.json +2 -2
package/bin/reposets.js CHANGED
@@ -79,7 +79,7 @@ const reportAndExit = (error) => Effect.gen(function* () {
79
79
  });
80
80
  /** Whether a caught value is a tagged error of a given tag. */
81
81
  const isTagged = (error, tag) => typeof error === "object" && error !== null && "_tag" in error && error._tag === tag;
82
- cli.pipe(Command.run({ version: "1.0.8" }), Effect.catch(reportAndExit), Effect.provide(MainLive), NodeRuntime.runMain);
82
+ cli.pipe(Command.run({ version: "1.0.10" }), Effect.catch(reportAndExit), Effect.provide(MainLive), NodeRuntime.runMain);
83
83
 
84
84
  //#endregion
85
85
  export { };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reposets",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "private": false,
5
5
  "description": "CLI tool to sync GitHub repo settings, secrets and rulesets across personal repositories",
6
6
  "keywords": [
@@ -49,7 +49,7 @@
49
49
  "dependencies": {
50
50
  "@1password/sdk": "^0.5.0",
51
51
  "@effect/platform-node": "4.0.0-rc.109",
52
- "@effected/app": "^0.12.2",
52
+ "@effected/app": "^0.13.1",
53
53
  "@effected/config-file": "^0.5.2",
54
54
  "@effected/github": "^0.8.0",
55
55
  "@effected/store": "^0.5.0",