Skip to content

Commit

Permalink
fix merge (helper file rename) breakage
Browse files Browse the repository at this point in the history
  • Loading branch information
jldec committed May 31, 2024
1 parent 52084b1 commit 075d664
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion inlang/source-code/sdk/load-test/load-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
createMessageBundle,
addSlots,
injectJSONNewlines,
} from "../src/v2/createMessageBundle.js"
} from "../src/v2/helper.js"
import { MessageBundle } from "../src/v2/types.js"

import { createEffect } from "../src/reactivity/solid.js"
Expand Down
7 changes: 1 addition & 6 deletions inlang/source-code/sdk/src/persistence/store.test.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
import { test, expect } from "vitest"
import { createNodeishMemoryFs } from "../test-utilities/index.js"
import type { MessageBundle } from "../v2/types.js"
import {
createMessageBundle,
createMessage,
injectJSONNewlines,
addSlots,
} from "../v2/createMessageBundle.js"
import { createMessageBundle, createMessage, injectJSONNewlines, addSlots } from "../v2/helper.js"
import { openStore, readJSON, writeJSON } from "./store.js"

const locales = ["en", "de"]
Expand Down
2 changes: 1 addition & 1 deletion inlang/source-code/sdk/src/persistence/store.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { MessageBundle } from "../v2/types.js"
import { addSlots, removeSlots, injectJSONNewlines } from "../v2/createMessageBundle.js"
import { addSlots, removeSlots, injectJSONNewlines } from "../v2/helper.js"
import { getDirname, type NodeishFilesystem } from "@lix-js/fs"
import { acquireFileLock } from "./filelock/acquireFileLock.js"
import { releaseLock } from "./filelock/releaseLock.js"
Expand Down
2 changes: 1 addition & 1 deletion inlang/source-code/sdk/src/v2/shim.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { test, expect } from "vitest"
import * as V2 from "./types.js"
import * as V1 from "@inlang/message"
import { createMessageBundle, createMessage } from "./createMessageBundle.js"
import { createMessageBundle, createMessage } from "./helper.js"
import { toV1Message, fromV1Message } from "./shim.js"
import { Value } from "@sinclair/typebox/value"

Expand Down

0 comments on commit 075d664

Please sign in to comment.