Skip to content

Commit

Permalink
Change the name of the scope
Browse files Browse the repository at this point in the history
  • Loading branch information
samihamine committed Sep 10, 2023
1 parent cdc7fc5 commit 2a3f6c3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @astrolabe/analytics-next
# @astrolabe-ai/analytics-next

## 1.51.0

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ To test the browser build, pass the `apiHost` parameter when instantiating. An e

```jsx
// Import Astrolabe SDK:
import { AnalyticsBrowser } from "@astrolabe/analytics-next";
import { AnalyticsBrowser } from "@astrolabe-ai/analytics-next";

// Near the entrypoint of your app, instantiate AnalyticsBrowser:
let [analytics] = await AnalyticsBrowser.load({
Expand All @@ -57,7 +57,7 @@ To test the Node build, pass the `apiHost` and `httpScheme` parameter when insta

```jsx
// Import Astrolabe SDK:
import { AnalyticsNode } from "@astrolabe/analytics-next";
import { AnalyticsNode } from "@astrolabe-ai/analytics-next";

// Instantiate AnalyticsNode:
const [nodeAnalytics] = await AnalyticsNode.load({
Expand All @@ -81,7 +81,7 @@ const [nodeAnalytics] = await AnalyticsNode.load({
script.onload = function () {
window.analytics.page();
}
script.src = "https://unpkg.com/@astrolabe/analytics-next/dist/umd/standalone.js";
script.src = "https://unpkg.com/@astrolabe-ai/analytics-next/dist/umd/standalone.js";
var first = document.getElementsByTagName('script')[0];
first.parentNode.insertBefore(script, first);
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@astrolabe/analytics-next",
"name": "@astrolabe-ai/analytics-next",
"version": "1.0.0",
"license": "MIT",
"main": "./dist/cjs/index.js",
Expand Down

0 comments on commit 2a3f6c3

Please sign in to comment.