Skip to content

Commit

Permalink
chore: change package names to be scoped under @wix-pilot.
Browse files Browse the repository at this point in the history
  • Loading branch information
asafkorem committed Feb 6, 2025
1 parent 9155dba commit 3341247
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 20 deletions.
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@wix/pilot",
"name": "@wix-pilot/core",
"version": "1.0.0",
"description": "A flexible plugin that drives your tests with human-written commands, enhanced by the power of large language models (LLMs)",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/playwright/examples/example.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import copilot from "@wix/pilot";
import copilot from "@wix-pilot/core";
import { PromptHandler } from "../utils/promptHandler";
import { PlaywrightFrameworkDriver } from "../index";

Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/playwright/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
TestingFrameworkAPICatalog,
TestingFrameworkDriver,
} from "@wix/pilot";
} from "@wix-pilot/core";
import * as playwright from "playwright";
import { expect as playwrightExpect } from "@playwright/test";
import path from "path";
Expand Down
4 changes: 2 additions & 2 deletions packages/drivers/playwright/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@wix/pilot-playwright",
"name": "@wix-pilot/playwright",
"version": "1.0.0",
"description": "Playwright driver for pilot and copilot usage",
"main": "dist/index.js",
Expand Down Expand Up @@ -28,7 +28,7 @@
"url": "https://github.com/wix-incubator/detox-copilot/issues"
},
"dependencies": {
"@wix/pilot": "^1.0.0"
"@wix-pilot/core": "^1.0.0"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/puppeteer/examples/example.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import copilot from "@wix/pilot";
import copilot from "@wix-pilot/core";
import puppeteer from "puppeteer";
import { PromptHandler } from "../utils/promptHandler";
import { PuppeteerFrameworkDriver } from "../index";
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/puppeteer/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
TestingFrameworkAPICatalog,
TestingFrameworkDriver,
} from "@wix/pilot";
} from "@wix-pilot/core";
import * as puppeteer from "puppeteer-core";
import path from "path";
import fs from "fs";
Expand Down
4 changes: 2 additions & 2 deletions packages/drivers/puppeteer/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@wix/pilot-puppeteer",
"name": "@wix-pilot/puppeteer",
"version": "1.0.0",
"description": "Puppeterr driver for pilot and copilot usage",
"main": "dist/index.js",
Expand Down Expand Up @@ -28,7 +28,7 @@
"url": "https://github.com/wix-incubator/detox-copilot/issues"
},
"dependencies": {
"@wix/pilot": "^1.0.0"
"@wix-pilot/core": "^1.0.0"
},
"devDependencies": {
"puppeteer": "^20.8.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@wix/pilot-web-utils",
"name": "@wix-pilot/web-utils",
"version": "1.0.0",
"description": "Driver utils for pilot and copilot usage",
"main": "dist/index.js",
Expand Down

0 comments on commit 3341247

Please sign in to comment.