@effect/tsgo 0.0.14 → 0.0.15

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.
@@ -195732,7 +195732,7 @@ var FileReadError = class extends TaggedError("FileReadError") {
195732
195732
  //#endregion
195733
195733
  //#region package.json
195734
195734
  var name = "@effect/tsgo";
195735
- var version = "0.0.14";
195735
+ var version = "0.0.15";
195736
195736
 
195737
195737
  //#endregion
195738
195738
  //#region src/setup/consts.ts
@@ -196029,8 +196029,7 @@ const computePackageJsonChanges = (current, target) => {
196029
196029
  } else if (isSome(current.prepareScript) && !current.prepareScript.value.hasPatch) {
196030
196030
  descriptions.push("Update prepare script to include patch command");
196031
196031
  const newScript = `${current.prepareScript.value.script} && ${PATCH_COMMAND}`;
196032
- const newPrepareProp = import_typescript.factory.createPropertyAssignment(import_typescript.factory.createStringLiteral("prepare"), import_typescript.factory.createStringLiteral(newScript));
196033
- tracker.replaceNode(current.sourceFile, prepareProperty, newPrepareProp);
196032
+ tracker.replaceNode(current.sourceFile, prepareProperty.initializer, import_typescript.factory.createStringLiteral(newScript));
196034
196033
  }
196035
196034
  }
196036
196035
  } else if (isNone(target.lspVersion) && isSome(current.prepareScript) && current.prepareScript.value.hasPatch) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect/tsgo",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "description": "Effect Language Service for TypeScript-Go — Effect-specific diagnostics and hover features.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -21,13 +21,13 @@
21
21
  "bin/"
22
22
  ],
23
23
  "optionalDependencies": {
24
- "@effect/tsgo-win32-x64": "0.0.14",
25
- "@effect/tsgo-win32-arm64": "0.0.14",
26
- "@effect/tsgo-linux-x64": "0.0.14",
27
- "@effect/tsgo-linux-arm64": "0.0.14",
28
- "@effect/tsgo-linux-arm": "0.0.14",
29
- "@effect/tsgo-darwin-x64": "0.0.14",
30
- "@effect/tsgo-darwin-arm64": "0.0.14"
24
+ "@effect/tsgo-win32-x64": "0.0.15",
25
+ "@effect/tsgo-win32-arm64": "0.0.15",
26
+ "@effect/tsgo-linux-x64": "0.0.15",
27
+ "@effect/tsgo-linux-arm64": "0.0.15",
28
+ "@effect/tsgo-linux-arm": "0.0.15",
29
+ "@effect/tsgo-darwin-x64": "0.0.15",
30
+ "@effect/tsgo-darwin-arm64": "0.0.15"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@effect/platform-node": "4.0.0-beta.11",