Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix broken internal dependency #2557

Merged
merged 1 commit into from
Apr 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion inlang/development-projects/inlang-nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@inlang/cli": "file:../../source-code/cli",
"@inlang/cli": "workspace:*",
"@types/node": "^20.2.3",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.4",
Expand Down
2 changes: 1 addition & 1 deletion inlang/development-projects/inlang-svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch"
},
"devDependencies": {
"@inlang/sdk-js": "file:../../../..",
"@inlang/sdk": "workspace:*",
"@sveltejs/adapter-auto": "^2.0.1",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/adapter-vercel": "^2.4.3",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script>
import { navigating } from '$app/stores'
import { language, languages } from "@inlang/sdk-js"
import { language, languages } from "@inlang/sdk"
export let data

$: console.info(1, data.language);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { initState } from "@inlang/sdk-js/adapter-sveltekit/server"
import { initState } from "@inlang/sdk/adapter-sveltekit/server"

export const load = () => {
return { "page.server.ts": 1 }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
import { i, languages, changeLanguageTag } from "@inlang/sdk-js"
import { i, languages, changeLanguageTag } from "@inlang/sdk"

export let data
</script>
Expand Down
2 changes: 1 addition & 1 deletion inlang/development-projects/inlang-svelte/vite.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { sveltekit } from "@sveltejs/kit/vite"
import { defineConfig } from "vite"
import inlangPlugin from "@inlang/sdk-js/adapter-sveltekit"
import inlangPlugin from "@inlang/sdk/adapter-sveltekit"

export default defineConfig({
plugins: [inlangPlugin(), sveltekit()],
Expand Down
2 changes: 1 addition & 1 deletion inlang/rfcs/sdk-js/RFC.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# RFC for `@inlang/sdk-js`
# RFC for `@inlang/sdk`

This package will provide an SDK on top of inlang for different frameworks and meta-frameworks.
The RFC is the first draft on how this could look like.
Expand Down
Loading
Loading