From b4fa467e3ed9472e1505fa9ff338d473cb722d86 Mon Sep 17 00:00:00 2001 From: Samir Menon Date: Tue, 7 Feb 2023 18:55:38 -0800 Subject: [PATCH] Fix package names --- examples/node/main.ts | 2 +- examples/node/package.json | 2 +- examples/react-complex/package.json | 2 +- examples/react-complex/src/App.tsx | 2 +- js/bridge/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/node/main.ts b/examples/node/main.ts index bacacf5..1b4af70 100644 --- a/examples/node/main.ts +++ b/examples/node/main.ts @@ -1,4 +1,4 @@ -import { Client } from '@blyss/client-sdk'; +import { Client } from '@blyss/sdk'; async function main() { const client = new Client(''); diff --git a/examples/node/package.json b/examples/node/package.json index 80d5255..d35758a 100644 --- a/examples/node/package.json +++ b/examples/node/package.json @@ -1,7 +1,7 @@ { "type": "module", "dependencies": { - "@blyss/client-sdk": "latest" + "@blyss/sdk": "latest" }, "devDependencies": { "ts-node": "^10.9.1", diff --git a/examples/react-complex/package.json b/examples/react-complex/package.json index 4304afb..373d029 100644 --- a/examples/react-complex/package.json +++ b/examples/react-complex/package.json @@ -10,7 +10,7 @@ "react-dom": "^18.2.0", "react-scripts": "5.0.1", "typescript": "^4.9.4", - "@blyss/client-sdk": "latest" + "@blyss/sdk": "latest" }, "scripts": { "start": "react-scripts start", diff --git a/examples/react-complex/src/App.tsx b/examples/react-complex/src/App.tsx index b5f38cd..9a24bb2 100644 --- a/examples/react-complex/src/App.tsx +++ b/examples/react-complex/src/App.tsx @@ -1,5 +1,5 @@ import './App.css'; -import { Bucket, Client } from '@blyss/client-sdk'; +import { Bucket, Client } from '@blyss/sdk'; import React, { ReactNode } from 'react'; // This function gets called only on the first query diff --git a/js/bridge/Cargo.toml b/js/bridge/Cargo.toml index 6f51faf..9d481af 100644 --- a/js/bridge/Cargo.toml +++ b/js/bridge/Cargo.toml @@ -4,7 +4,7 @@ description = "Bridge crate between the spiral-rs-client library and the JS clie version = "0.1.0" authors = ["Samir Menon "] license = "MIT" -repository = "https://github.com/blyssprivacy/client-sdk" +repository = "https://github.com/blyssprivacy/sdk" categories = ["wasm"] readme = "README.md" edition = "2018"