From 166651237aa51132b6bc1b46a583ee664b4e7359 Mon Sep 17 00:00:00 2001 From: Canhua Li Date: Mon, 23 Sep 2019 16:21:49 -0700 Subject: [PATCH] lowercase filename bump version --- example/package.json | 2 +- package.json | 2 +- src/by2.ts | 4 ++-- src/index.ts | 10 +++++----- src/pageobject.ts | 4 ++-- tsconfig.json | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/example/package.json b/example/package.json index e90fe22..2b02586 100644 --- a/example/package.json +++ b/example/package.json @@ -18,7 +18,7 @@ "@types/selenium-webdriver": "^4.0.1", "babel-jest": "^24.8.0", "jest": "^24.8.0", - "selenium-appium": "^0.0.13", + "selenium-appium": "^0.0.14", "selenium-webdriver": "^4.0.0-alpha.4", "typescript": "^3.5.3", "appium": "1.14.2", diff --git a/package.json b/package.json index a2b064f..7b8b095 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "selenium-appium", - "version": "0.0.13", + "version": "0.0.14", "description": "A selenium-webdriver extension to support native app testing by Mobile JSON Wire Protocol which appium supports, also provides easy wait for element for pages or navigation among pages, and supports PageObject pattern", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/by2.ts b/src/by2.ts index 1f153c4..232108c 100644 --- a/src/by2.ts +++ b/src/by2.ts @@ -6,8 +6,8 @@ 'use strict'; import { By, Locator, WebDriver, ISize, IRectangle, ILocation, until, IWebElementId, WebElement, WebElementPromise, ThenableWebDriver, FileDetector, Session, Actions, WebElementCondition, Condition, Options, Navigation, TargetLocator } from 'selenium-webdriver' -import { driver, WebDriver2 } from './Driver' -import { Config } from './Config' +import { driver, WebDriver2 } from './driver' +import { Config } from './config' interface IWebElement extends WebElement { diff --git a/src/index.ts b/src/index.ts index 63a981a..03bc08a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,8 +5,8 @@ 'use strict'; -export { By2 } from './By2' -export { driver, WebDriver2 } from './Driver' -export { PageObject } from './PageObject' -export { windowsAppDriverCapabilities } from './WinAppDriver' -export { Config } from './Config' +export { By2 } from './by2' +export { driver, WebDriver2 } from './driver' +export { PageObject } from './pageobject' +export { windowsAppDriverCapabilities } from './winappdriver' +export { Config } from './config' diff --git a/src/pageobject.ts b/src/pageobject.ts index 617766d..b8cf46c 100644 --- a/src/pageobject.ts +++ b/src/pageobject.ts @@ -5,8 +5,8 @@ 'use strict'; -import { driver, WebDriver2 } from "./Driver"; -import { Config } from './Config' +import { driver, WebDriver2 } from "./driver"; +import { Config } from './config' export class PageObject { private webDriver2_?: WebDriver2; diff --git a/tsconfig.json b/tsconfig.json index 213c901..c711cd6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,7 @@ "strict": true, "declaration": true, "sourceMap": true, - "outDir": "./dist", + "outDir": "./dist" }, "include": [ "src"