Skip to content

Commit 21f82de

Browse files
committed
push to github
1 parent 17db274 commit 21f82de

File tree

12 files changed

+49
-49
lines changed

12 files changed

+49
-49
lines changed

bun.lock

Lines changed: 37 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/create-magnitude-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "create-magnitude-app",
2+
"name": "@isaacdyor/create-magnitude-app",
33
"version": "0.0.7",
44
"description": "Create Magnitude apps quickly",
55
"type": "module",

packages/magnitude-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@isaacdyor/magnitude-core",
3-
"version": "0.2.32",
3+
"version": "0.2.33",
44
"description": "Magnitude e2e testing agent",
55
"publishConfig": {
66
"access": "public"

packages/magnitude-extract/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "magnitude-extract",
2+
"name": "@isaacdyor/magnitude-extract",
33
"version": "0.0.2",
44
"description": "TypeScript DOM cleaning and structuring library",
55
"type": "module",

packages/magnitude-mcp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "magnitude-mcp",
2+
"name": "@isaacdyor/magnitude-mcp",
33
"version": "0.0.4",
44
"description": "MCP server for Magnitude testing",
55
"main": "build/index.js",

packages/magnitude-test/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "magnitude-test",
2+
"name": "@isaacdyor/magnitude-test",
33
"version": "0.3.10",
44
"description": "A TypeScript client for running automated UI tests through the Magnitude testing platform",
55
"publishConfig": {
@@ -75,7 +75,7 @@
7575
"glob": "^11.0.1",
7676
"jiti": "^2.4.2",
7777
"log-update": "^6.1.0",
78-
"magnitude-core": "0.2.31",
78+
"@isaacdyor/magnitude-core": "workspace:*",
7979
"pino": "^9.6.0",
8080
"pino-pretty": "^13.0.0",
8181
"playwright": "^1.51.0",

packages/magnitude-test/src/agent/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BrowserAgent, AgentOptions, BrowserConnectorOptions, buildDefaultBrowserAgentOptions, AgentError, AgentEvents } from "magnitude-core";
1+
import { BrowserAgent, AgentOptions, BrowserConnectorOptions, buildDefaultBrowserAgentOptions, AgentError, AgentEvents } from "@isaacdyor/magnitude-core";
22
import z from "zod/v3";
33
import EventEmitter from "eventemitter3";
44

packages/magnitude-test/src/discovery/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { BrowserContext, BrowserContextOptions, LaunchOptions, Page } from "playwright";
22
//import type { PlannerClient, ExecutorClient, TestCaseAgent, Magnus } from 'magnitude-core';
3-
import { BrowserOptions, GroundingClient, LLMClient } from "magnitude-core";
3+
import { BrowserOptions, GroundingClient, LLMClient } from "@isaacdyor/magnitude-core";
44
import { TestCaseAgent } from "@/agent";
55

66
export interface TestOptions {

packages/magnitude-test/src/runner/state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { TestCaseAgent } from "@/agent"
2-
import { Action, LLMClient, LLMClientIdentifier, ModelUsage } from "magnitude-core"
2+
import { Action, LLMClient, LLMClientIdentifier, ModelUsage } from "@isaacdyor/magnitude-core"
33
import EventEmitter from "eventemitter3";
44

55
export interface ActionDescriptor {

packages/magnitude-test/src/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as fs from 'node:fs';
22
import * as path from 'node:path';
33
import * as os from 'node:os';
4-
//import { PlannerClient, TestCaseDefinition } from "magnitude-core";
4+
//import { PlannerClient, TestCaseDefinition } from "@isaacdyor/magnitude-core";
55
import { init } from '@paralleldrive/cuid2';
66
import logger from './logger';
77
import { LLMClient, LLMClientIdentifier } from 'magnitude-core';

0 commit comments

Comments
 (0)