Skip to content
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
7 changes: 1 addition & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,7 @@ jobs:
- name: Install Dependencies
run: pnpm install
- name: Build
run: |
pnpm --filter "@wdio/devtools-script" build
pnpm --filter "@wdio/devtools-backend" build
pnpm --filter "@wdio/devtools-service" build
pnpm --filter "@wdio/devtools-app" build
pnpm --filter "@wdio/nightwatch-devtools" build
run: pnpm -r build
- name: Release
run: pnpm -r publish --access public --no-git-checks
env:
Expand Down
5 changes: 3 additions & 2 deletions packages/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wdio/devtools-app",
"version": "1.4.0",
"version": "1.4.1",
"description": "Browser devtools extension for debugging WebdriverIO tests.",
"type": "module",
"repository": {
Expand All @@ -13,7 +13,8 @@
"dev": "vite build --watch",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint ."
"lint": "eslint .",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.5",
Expand Down
5 changes: 3 additions & 2 deletions packages/backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wdio/devtools-backend",
"version": "1.4.0",
"version": "1.4.1",
"description": "Backend service to spin up WebdriverIO Devtools",
"author": "Christian Bromann <mail@bromann.dev>",
"license": "MIT",
Expand All @@ -20,7 +20,8 @@
"dev:ts": "tsc --watch",
"dev:app": "nodemon --watch ./dist ./dist/index.js",
"build": "tsc -p ./tsconfig.json",
"lint": "eslint ."
"lint": "eslint .",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@fastify/rate-limit": "^10.3.0",
Expand Down
6 changes: 4 additions & 2 deletions packages/nightwatch-devtools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wdio/nightwatch-devtools",
"version": "1.1.0",
"version": "1.1.1",
"description": "Nightwatch adapter for WebdriverIO DevTools - reuses existing backend, UI, and capture infrastructure",
"type": "module",
"main": "dist/index.js",
Expand Down Expand Up @@ -29,7 +29,8 @@
"watch": "tsc --watch",
"clean": "rm -rf dist",
"lint": "eslint .",
"example": "nightwatch -c example/nightwatch.conf.cjs"
"example": "nightwatch -c example/nightwatch.conf.cjs",
"prepublishOnly": "pnpm build"
},
"keywords": [
"nightwatch",
Expand All @@ -56,6 +57,7 @@
"typescript": "^6.0.2"
},
"peerDependencies": {
"devtools": "^8.42.0",
"nightwatch": ">=3.0.0"
}
}
5 changes: 3 additions & 2 deletions packages/script/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wdio/devtools-script",
"version": "1.4.0",
"version": "1.4.1",
"description": "Script to be injected into a page to trace the page",
"author": "Christian Bromann <mail@bromann.dev>",
"repository": {
Expand All @@ -16,7 +16,8 @@
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint ."
"lint": "eslint .",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"htm": "^3.1.1",
Expand Down
3 changes: 2 additions & 1 deletion packages/selenium-devtools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wdio/selenium-devtools",
"version": "1.0.0",
"version": "1.0.1",
"description": "Selenium WebDriver adapter for WebdriverIO DevTools — runner-agnostic, reuses existing backend, UI, and capture infrastructure",
"type": "module",
"main": "dist/index.js",
Expand All @@ -26,6 +26,7 @@
"watch": "tsc --watch",
"clean": "rm -rf dist",
"lint": "eslint .",
"prepublishOnly": "pnpm build",
"example:mocha": "mocha --require @wdio/selenium-devtools --timeout 60000 example/mocha-test/test/example.js",
"example:jest": "NODE_OPTIONS=--experimental-vm-modules jest --config example/jest-test/jest.config.json",
"example:vitest": "vitest run --config example/vitest-test/vitest.config.js",
Expand Down
5 changes: 3 additions & 2 deletions packages/service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wdio/devtools-service",
"version": "10.4.0",
"version": "10.4.1",
"description": "Hook up WebdriverIO with DevTools",
"author": "Christian Bromann <mail@bromann.dev>",
"repository": {
Expand Down Expand Up @@ -31,7 +31,8 @@
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build",
"lint": "eslint ."
"lint": "eslint .",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@babel/parser": "^7.28.4",
Expand Down
Loading