@inlang/sdk 0.3.0 → 0.4.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.
@@ -1,4 +1,4 @@
1
- import { dedent } from "ts-dedent";
1
+ import dedent from "dedent";
2
2
  import { normalizePath } from "@lix-js/fs";
3
3
  import { ModuleImportError } from "./errors.js";
4
4
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@inlang/sdk",
3
3
  "type": "module",
4
- "version": "0.3.0",
4
+ "version": "0.4.0",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -42,7 +42,7 @@
42
42
  "deepmerge-ts": "^5.1.0",
43
43
  "solid-js": "1.6.12",
44
44
  "throttle-debounce": "5.0.0",
45
- "ts-dedent": "2.2.0"
45
+ "dedent": "1.5.1"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@lix-js/fs": "*",
@@ -1,4 +1,4 @@
1
- import { dedent } from "ts-dedent"
1
+ import dedent from "dedent"
2
2
  import { normalizePath } from "@lix-js/fs"
3
3
  import type { NodeishFilesystemSubset } from "@inlang/plugin"
4
4
  import { ModuleImportError } from "./errors.js"