Skip to content

Commit 266719a

Browse files
committed
Nightwatch devtools release plan
1 parent d5961f1 commit 266719a

File tree

6 files changed

+24
-7
lines changed

6 files changed

+24
-7
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,11 @@ jobs:
4747
run: pnpm install
4848
- name: Build
4949
run: |
50-
pnpm --filter "@wdio/devtools-backend" build
5150
pnpm --filter "@wdio/devtools-script" build
52-
pnpm --filter "@wdio/devtools-service" build
5351
pnpm --filter "@wdio/devtools-app" build
52+
pnpm --filter "@wdio/devtools-backend" build
53+
pnpm --filter "@wdio/devtools-service" build
54+
pnpm --filter "@wdio/nightwatch-devtools" build
5455
- name: Release
5556
run: pnpm -r publish --access public --no-git-checks
5657
env:

packages/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wdio/devtools-app",
3-
"version": "1.2.1",
3+
"version": "1.3.0",
44
"description": "Browser devtools extension for debugging WebdriverIO tests.",
55
"type": "module",
66
"repository": {

packages/backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wdio/devtools-backend",
3-
"version": "1.2.1",
3+
"version": "1.3.0",
44
"description": "Backend service to spin up WebdriverIO Devtools",
55
"author": "Christian Bromann <mail@bromann.dev>",
66
"license": "MIT",

packages/nightwatch-devtools/package.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,26 @@
11
{
22
"name": "@wdio/nightwatch-devtools",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"description": "Nightwatch adapter for WebdriverIO DevTools - reuses existing backend, UI, and capture infrastructure",
55
"type": "module",
66
"main": "dist/index.js",
77
"types": "dist/index.d.ts",
8+
"repository": {
9+
"type": "git",
10+
"url": "git+https://github.com/webdriverio/devtools.git",
11+
"directory": "packages/nightwatch-devtools"
12+
},
13+
"exports": {
14+
".": {
15+
"types": "./dist/index.d.ts",
16+
"import": "./dist/index.js",
17+
"require": "./dist/index.js"
18+
}
19+
},
20+
"files": [
21+
"dist",
22+
"README.md"
23+
],
824
"nightwatch": {
925
"plugin": true
1026
},

packages/script/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wdio/devtools-script",
3-
"version": "1.2.1",
3+
"version": "1.3.0",
44
"description": "Script to be injected into a page to trace the page",
55
"author": "Christian Bromann <mail@bromann.dev>",
66
"repository": {

packages/service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wdio/devtools-service",
3-
"version": "10.2.1",
3+
"version": "10.3.0",
44
"description": "Hook up WebdriverIO with DevTools",
55
"author": "Christian Bromann <mail@bromann.dev>",
66
"repository": {

0 commit comments

Comments
 (0)