@rrlab/ts-plugin 0.0.1-git-06ed46c.0 → 0.1.1-git-bcee084.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.mjs CHANGED
@@ -67,7 +67,7 @@ async function install(ctx) {
67
67
  const presetInfo = PRESETS[await pickPreset(ctx)];
68
68
  const devDependencies = {
69
69
  typescript: TOOL_VERSIONS.typescript.install,
70
- "@rrlab/ts-config": "^0.1.0"
70
+ "@rrlab/ts-config": "latest"
71
71
  };
72
72
  if (presetInfo.needsNode) devDependencies["@types/node"] = TOOL_VERSIONS["@types/node"].install;
73
73
  const wrapper = { extends: presetInfo.extendsPath };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rrlab/ts-plugin",
3
- "version": "0.0.1-git-06ed46c.0",
3
+ "version": "0.1.1-git-bcee084.0",
4
4
  "description": "TypeScript plugin for @rrlab/cli — provides the tsc capability.",
5
5
  "homepage": "https://github.com/variableland/dx/tree/main/run-run/ts-plugin#readme",
6
6
  "bugs": {
@@ -38,12 +38,12 @@
38
38
  },
39
39
  "peerDependencies": {
40
40
  "typescript": ">=5.0.0",
41
- "@rrlab/cli": "0.0.2-git-06ed46c.0"
41
+ "@rrlab/cli": "0.0.2"
42
42
  },
43
43
  "devDependencies": {
44
44
  "typescript": "6.0.3",
45
- "@rrlab/tsdown-config": "^0.0.1-git-06ed46c.0",
46
- "@rrlab/cli": "0.0.2-git-06ed46c.0"
45
+ "@rrlab/tsdown-config": "^0.1.0",
46
+ "@rrlab/cli": "0.0.2"
47
47
  },
48
48
  "scripts": {
49
49
  "build": "tsdown",
package/src/index.ts CHANGED
@@ -66,7 +66,7 @@ export async function install(ctx: InstallContext): Promise<InstallResult> {
66
66
 
67
67
  const devDependencies: Record<string, string> = {
68
68
  typescript: TOOL_VERSIONS.typescript.install,
69
- "@rrlab/ts-config": "^0.1.0",
69
+ "@rrlab/ts-config": "latest",
70
70
  };
71
71
  if (presetInfo.needsNode) devDependencies["@types/node"] = TOOL_VERSIONS["@types/node"].install;
72
72