Skip to content

Commit d11acc9

Browse files
authored
feat: add beta for testing and npm available (#1883)
* add beta for testing * add deps of @appium/base-plugin
1 parent ca91169 commit d11acc9

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

plugins/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import path from 'node:path';
22
import {fileURLToPath} from 'node:url';
33

4-
import {BasePlugin} from 'appium/plugin.js';
4+
import {BasePlugin} from '@appium/base-plugin';
55
const PLUGIN_ROOT_PATH = '/inspector';
66
const INDEX_HTML = 'index.html';
77
const ROOT_DIR = path.resolve(path.dirname(fileURLToPath(import.meta.url)), 'dist-browser');

plugins/package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "appium-inspector-plugin",
3-
"version": "2024.12.1",
3+
"version": "2024.12.1-beta.10",
44
"description": "An app inspector for use with an Appium server",
55
"repository": {
66
"type": "git",
@@ -23,7 +23,8 @@
2323
"exports": {
2424
".": {
2525
"import": "./index.mjs"
26-
}
26+
},
27+
"./package.json": "./package.json"
2728
},
2829
"peerDependencies": {
2930
"appium": "^2.0.0"
@@ -34,7 +35,9 @@
3435
"dist-browser",
3536
"README.md"
3637
],
37-
"dependencies": {},
38+
"dependencies": {
39+
"@appium/base-plugin": "^2.3.0"
40+
},
3841
"devDependencies": {},
3942
"engines": {
4043
"node": ">=20.x",

0 commit comments

Comments
 (0)