rolldown-pnpm-config 0.7.13 → 0.7.14

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.
@@ -12,7 +12,7 @@ const root = Command.make("rolldown-pnpm-config").pipe(Command.withSubcommands([
12
12
  exportCommand,
13
13
  previewCommand
14
14
  ]));
15
- Command.run(root, { version: "0.7.13" }).pipe(Effect.provide(NodeServices.layer), NodeRuntime.runMain);
15
+ Command.run(root, { version: "0.7.14" }).pipe(Effect.provide(NodeServices.layer), NodeRuntime.runMain);
16
16
 
17
17
  //#endregion
18
18
  export { };
@@ -115,9 +115,9 @@ function runExport(opts) {
115
115
  };
116
116
  });
117
117
  }
118
- const pathArg = Argument.file("path").pipe(Argument.optional);
119
- const dryRunFlag = Flag.boolean("dry-run").pipe(Flag.withDefault(false));
120
- const fullFlag = Flag.boolean("full").pipe(Flag.withDefault(false));
118
+ const pathArg = Argument.File("path").pipe(Argument.optional);
119
+ const dryRunFlag = Flag.Boolean("dry-run").pipe(Flag.withDefault(false));
120
+ const fullFlag = Flag.Boolean("full").pipe(Flag.withDefault(false));
121
121
  /**
122
122
  * The "export" command. Materializes the plugin config into pnpm-workspace.yaml.
123
123
  * An optional path argument overrides the auto-detected workspace file. --dry-run
@@ -50,7 +50,7 @@ function runPreviewViews(opts) {
50
50
  });
51
51
  });
52
52
  }
53
- const pathArg = Argument.file("path").pipe(Argument.optional);
53
+ const pathArg = Argument.File("path").pipe(Argument.optional);
54
54
  /**
55
55
  * The "preview" command: interactive ink-tab explorer of the export diff
56
56
  * (Changes / Full / Simulated). Falls back to printing the Changes view when
@@ -540,14 +540,14 @@ function resolveTargetFile(fileOpt) {
540
540
  return picked.file;
541
541
  });
542
542
  }
543
- const fileArg = Argument.file("file", { mustExist: true }).pipe(Argument.optional);
544
- const yesFlag = Flag.boolean("yes").pipe(Flag.withAlias("y"), Flag.withDefault(false));
545
- const dryRunFlag = Flag.boolean("dry-run").pipe(Flag.withDefault(false));
546
- const catalogOption = Flag.string("catalog").pipe(Flag.optional);
547
- const previewFlag = Flag.boolean("preview").pipe(Flag.withDefault(false));
548
- const fullFlag = Flag.boolean("full").pipe(Flag.withDefault(false));
549
- const checkFlag = Flag.boolean("check").pipe(Flag.withDefault(false));
550
- const jsonFlag = Flag.boolean("json").pipe(Flag.withDefault(false));
543
+ const fileArg = Argument.File("file", { mustExist: true }).pipe(Argument.optional);
544
+ const yesFlag = Flag.Boolean("yes").pipe(Flag.withAlias("y"), Flag.withDefault(false));
545
+ const dryRunFlag = Flag.Boolean("dry-run").pipe(Flag.withDefault(false));
546
+ const catalogOption = Flag.String("catalog").pipe(Flag.optional);
547
+ const previewFlag = Flag.Boolean("preview").pipe(Flag.withDefault(false));
548
+ const fullFlag = Flag.Boolean("full").pipe(Flag.withDefault(false));
549
+ const checkFlag = Flag.Boolean("check").pipe(Flag.withDefault(false));
550
+ const jsonFlag = Flag.Boolean("json").pipe(Flag.withDefault(false));
551
551
  /**
552
552
  * The "upgrade" command. The default path runs the interactive table;
553
553
  * --yes applies latest-in-range non-interactively; --dry-run runs the identical
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rolldown-pnpm-config",
3
- "version": "0.7.13",
3
+ "version": "0.7.14",
4
4
  "private": false,
5
5
  "description": "A dogfooding example of our plugin",
6
6
  "repository": {
@@ -35,16 +35,16 @@
35
35
  "rolldown-pnpm-config": "bin/rolldown-pnpm-config.js"
36
36
  },
37
37
  "dependencies": {
38
- "@effect/platform-node": "4.0.0-rc.112",
39
- "@effected/npm": "^0.13.0",
40
- "@effected/semver": "^0.6.0",
41
- "@effected/workspaces": "^0.20.3",
42
- "@effected/yaml": "^0.14.0",
43
- "effect": "4.0.0-rc.112",
38
+ "@effect/platform-node": "4.0.0-rc.115",
39
+ "@effected/npm": "^0.14.0",
40
+ "@effected/semver": "^0.7.0",
41
+ "@effected/workspaces": "^0.21.0",
42
+ "@effected/yaml": "^0.15.0",
43
+ "effect": "4.0.0-rc.115",
44
44
  "ink": "^7.1.1",
45
45
  "ink-tab": "^5.2.0",
46
46
  "oxc-parser": "^0.149.0",
47
- "react": "^19.2.8",
47
+ "react": "^19.3.0",
48
48
  "std-env": "^4.2.0",
49
49
  "std-osc8": "^0.2.0"
50
50
  },