Skip to content

Commit

Permalink
feat: add beta for testing and npm available (#1883)
Browse files Browse the repository at this point in the history
* add beta for testing

* add deps of @appium/base-plugin
  • Loading branch information
KazuCocoa authored Jan 10, 2025
1 parent ca91169 commit d11acc9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugins/index.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import path from 'node:path';
import {fileURLToPath} from 'node:url';

import {BasePlugin} from 'appium/plugin.js';
import {BasePlugin} from '@appium/base-plugin';
const PLUGIN_ROOT_PATH = '/inspector';
const INDEX_HTML = 'index.html';
const ROOT_DIR = path.resolve(path.dirname(fileURLToPath(import.meta.url)), 'dist-browser');
Expand Down
9 changes: 6 additions & 3 deletions plugins/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "appium-inspector-plugin",
"version": "2024.12.1",
"version": "2024.12.1-beta.10",
"description": "An app inspector for use with an Appium server",
"repository": {
"type": "git",
Expand All @@ -23,7 +23,8 @@
"exports": {
".": {
"import": "./index.mjs"
}
},
"./package.json": "./package.json"
},
"peerDependencies": {
"appium": "^2.0.0"
Expand All @@ -34,7 +35,9 @@
"dist-browser",
"README.md"
],
"dependencies": {},
"dependencies": {
"@appium/base-plugin": "^2.3.0"
},
"devDependencies": {},
"engines": {
"node": ">=20.x",
Expand Down

0 comments on commit d11acc9

Please sign in to comment.