@rrlab/tsdown-plugin 0.1.2-git-c5c6e0f.0 → 0.1.2-git-9887d65.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.
package/dist/index.d.mts CHANGED
@@ -5,7 +5,6 @@ import { ShellService } from "@vlandoss/clibuddy";
5
5
  declare const TOOL_VERSIONS: {
6
6
  readonly tsdown: {
7
7
  readonly install: "^0.22.0";
8
- readonly peer: ">=0.22.0";
9
8
  };
10
9
  };
11
10
  //#endregion
package/dist/index.mjs CHANGED
@@ -4,10 +4,7 @@ import { ToolService, decideScaffold, definePlugin, pickPreset } from "@rrlab/cl
4
4
  import { colorize } from "@vlandoss/clibuddy";
5
5
  import { generateCode, parseModule } from "magicast";
6
6
  //#region src/tool-versions.ts
7
- const TOOL_VERSIONS = { tsdown: {
8
- install: "^0.22.0",
9
- peer: ">=0.22.0"
10
- } };
7
+ const TOOL_VERSIONS = { tsdown: { install: "^0.22.0" } };
11
8
  //#endregion
12
9
  //#region src/index.ts
13
10
  const FROM = import.meta.url;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rrlab/tsdown-plugin",
3
- "version": "0.1.2-git-c5c6e0f.0",
3
+ "version": "0.1.2-git-9887d65.0",
4
4
  "description": "tsdown plugin for @rrlab/cli — provides the pack capability for building TS libraries.",
5
5
  "homepage": "https://github.com/variableland/dx/tree/main/run-run/tsdown-plugin#readme",
6
6
  "bugs": {
@@ -38,11 +38,13 @@
38
38
  },
39
39
  "peerDependencies": {
40
40
  "tsdown": ">=0.22.0",
41
- "@rrlab/cli": "0.0.4-git-c5c6e0f.0"
41
+ "@rrlab/cli": "^0.0.4-git-9887d65.0"
42
42
  },
43
43
  "devDependencies": {
44
+ "@types/semver": "^7.7.1",
45
+ "semver": "^7.8.1",
44
46
  "tsdown": "0.22.0",
45
- "@rrlab/cli": "0.0.4-git-c5c6e0f.0",
47
+ "@rrlab/cli": "0.0.4-git-9887d65.0",
46
48
  "@rrlab/tsdown-config": "^0.1.0"
47
49
  },
48
50
  "scripts": {
@@ -1,3 +1,3 @@
1
1
  export const TOOL_VERSIONS = {
2
- tsdown: { install: "^0.22.0", peer: ">=0.22.0" },
2
+ tsdown: { install: "^0.22.0" },
3
3
  } as const;