Skip to content

Commit 046b080

Browse files
chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 (#1121)
* chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.2. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](microsoft/TypeScript@v5.9.3...v6.0.2) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.2 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * moar * format --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mykola Mokhnach <mokhnach@gmail.com>
1 parent 71e5659 commit 046b080

4 files changed

Lines changed: 18 additions & 16 deletions

File tree

index.ts

Lines changed: 0 additions & 7 deletions
This file was deleted.

lib/index.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export {bundleWDASim} from './check-dependencies';
2+
export {NoSessionProxy} from './no-session-proxy';
3+
export {WebDriverAgent} from './webdriveragent';
4+
export {WDA_BASE_URL, WDA_RUNNER_BUNDLE_ID, PROJECT_FILE} from './constants';
5+
export {resetTestProcesses, BOOTSTRAP_PATH} from './utils';
6+
7+
export * from './types';

package.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "appium-webdriveragent",
33
"version": "11.4.2",
44
"description": "Package bundling WebDriverAgent",
5-
"main": "./build/index.js",
6-
"types": "./build/index.d.ts",
5+
"main": "./build/lib/index.js",
6+
"types": "./build/lib/index.d.ts",
77
"scripts": {
88
"build": "tsc -b",
99
"dev": "npm run build -- --watch",
@@ -69,7 +69,7 @@
6969
"semver": "^7.3.7",
7070
"sinon": "^21.0.0",
7171
"ts-node": "^10.9.1",
72-
"typescript": "^5.4.2"
72+
"typescript": "^6.0.2"
7373
},
7474
"dependencies": {
7575
"@appium/base-driver": "^10.0.0-rc.1",
@@ -85,9 +85,8 @@
8585
"teen_process": "^4.0.7"
8686
},
8787
"files": [
88-
"index.ts",
8988
"lib",
90-
"build",
89+
"build/lib",
9190
"Scripts/build.sh",
9291
"Scripts/*.mjs",
9392
"Configurations",
@@ -97,7 +96,6 @@
9796
"WebDriverAgentRunner",
9897
"WebDriverAgentTests",
9998
"XCTWebDriverAgentLib",
100-
"CHANGELOG.md",
101-
"!build/test"
99+
"CHANGELOG.md"
102100
]
103101
}

tsconfig.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,18 @@
22
"$schema": "https://json.schemastore.org/tsconfig",
33
"extends": "@appium/tsconfig/tsconfig.json",
44
"compilerOptions": {
5-
"strict": false, // TODO: make this flag true
65
"esModuleInterop": true,
76
"outDir": "build",
87
"types": ["node", "mocha"],
98
"checkJs": true
109
},
10+
"ts-node": {
11+
"transpileOnly": true,
12+
"compilerOptions": {
13+
"rootDir": "."
14+
}
15+
},
1116
"include": [
12-
"index.ts",
1317
"lib",
1418
"test"
1519
]

0 commit comments

Comments
 (0)