appium-ios-remotexpc 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/build/src/base-plist-service.d.ts +51 -0
- package/build/src/base-plist-service.d.ts.map +1 -0
- package/build/src/base-plist-service.js +61 -0
- package/build/src/base-socket-service.d.ts +15 -0
- package/build/src/base-socket-service.d.ts.map +1 -0
- package/build/src/base-socket-service.js +46 -0
- package/build/src/index.d.ts +9 -0
- package/build/src/index.d.ts.map +1 -0
- package/build/src/index.js +7 -0
- package/build/src/lib/apple-tv/constants.d.ts +49 -0
- package/build/src/lib/apple-tv/constants.d.ts.map +1 -0
- package/build/src/lib/apple-tv/constants.js +71 -0
- package/build/src/lib/apple-tv/errors.d.ts +17 -0
- package/build/src/lib/apple-tv/errors.d.ts.map +1 -0
- package/build/src/lib/apple-tv/errors.js +30 -0
- package/build/src/lib/apple-tv/tlv/decoder.d.ts +19 -0
- package/build/src/lib/apple-tv/tlv/decoder.d.ts.map +1 -0
- package/build/src/lib/apple-tv/tlv/decoder.js +49 -0
- package/build/src/lib/apple-tv/tlv/encoder.d.ts +10 -0
- package/build/src/lib/apple-tv/tlv/encoder.d.ts.map +1 -0
- package/build/src/lib/apple-tv/tlv/encoder.js +20 -0
- package/build/src/lib/apple-tv/tlv/index.d.ts +4 -0
- package/build/src/lib/apple-tv/tlv/index.d.ts.map +1 -0
- package/build/src/lib/apple-tv/tlv/index.js +3 -0
- package/build/src/lib/apple-tv/tlv/pairing-tlv.d.ts +14 -0
- package/build/src/lib/apple-tv/tlv/pairing-tlv.d.ts.map +1 -0
- package/build/src/lib/apple-tv/tlv/pairing-tlv.js +27 -0
- package/build/src/lib/apple-tv/types.d.ts +36 -0
- package/build/src/lib/apple-tv/types.d.ts.map +1 -0
- package/build/src/lib/apple-tv/types.js +1 -0
- package/build/src/lib/apple-tv/utils/buffer-utils.d.ts +40 -0
- package/build/src/lib/apple-tv/utils/buffer-utils.d.ts.map +1 -0
- package/build/src/lib/apple-tv/utils/buffer-utils.js +76 -0
- package/build/src/lib/apple-tv/utils/index.d.ts +3 -0
- package/build/src/lib/apple-tv/utils/index.d.ts.map +1 -0
- package/build/src/lib/apple-tv/utils/index.js +2 -0
- package/build/src/lib/apple-tv/utils/uuid-generator.d.ts +9 -0
- package/build/src/lib/apple-tv/utils/uuid-generator.d.ts.map +1 -0
- package/build/src/lib/apple-tv/utils/uuid-generator.js +36 -0
- package/build/src/lib/lockdown/index.d.ts +87 -0
- package/build/src/lib/lockdown/index.d.ts.map +1 -0
- package/build/src/lib/lockdown/index.js +324 -0
- package/build/src/lib/pair-record/index.d.ts +3 -0
- package/build/src/lib/pair-record/index.d.ts.map +1 -0
- package/build/src/lib/pair-record/index.js +2 -0
- package/build/src/lib/pair-record/pair-record.d.ts +48 -0
- package/build/src/lib/pair-record/pair-record.d.ts.map +1 -0
- package/build/src/lib/pair-record/pair-record.js +85 -0
- package/build/src/lib/plist/binary-plist-creator.d.ts +14 -0
- package/build/src/lib/plist/binary-plist-creator.d.ts.map +1 -0
- package/build/src/lib/plist/binary-plist-creator.js +475 -0
- package/build/src/lib/plist/binary-plist-parser.d.ts +14 -0
- package/build/src/lib/plist/binary-plist-parser.d.ts.map +1 -0
- package/build/src/lib/plist/binary-plist-parser.js +449 -0
- package/build/src/lib/plist/constants.d.ts +36 -0
- package/build/src/lib/plist/constants.d.ts.map +1 -0
- package/build/src/lib/plist/constants.js +43 -0
- package/build/src/lib/plist/index.d.ts +14 -0
- package/build/src/lib/plist/index.d.ts.map +1 -0
- package/build/src/lib/plist/index.js +16 -0
- package/build/src/lib/plist/length-based-splitter.d.ts +43 -0
- package/build/src/lib/plist/length-based-splitter.d.ts.map +1 -0
- package/build/src/lib/plist/length-based-splitter.js +228 -0
- package/build/src/lib/plist/plist-creator.d.ts +8 -0
- package/build/src/lib/plist/plist-creator.d.ts.map +1 -0
- package/build/src/lib/plist/plist-creator.js +33 -0
- package/build/src/lib/plist/plist-decoder.d.ts +25 -0
- package/build/src/lib/plist/plist-decoder.d.ts.map +1 -0
- package/build/src/lib/plist/plist-decoder.js +103 -0
- package/build/src/lib/plist/plist-encoder.d.ts +10 -0
- package/build/src/lib/plist/plist-encoder.d.ts.map +1 -0
- package/build/src/lib/plist/plist-encoder.js +27 -0
- package/build/src/lib/plist/plist-parser.d.ts +9 -0
- package/build/src/lib/plist/plist-parser.d.ts.map +1 -0
- package/build/src/lib/plist/plist-parser.js +109 -0
- package/build/src/lib/plist/plist-service.d.ts +86 -0
- package/build/src/lib/plist/plist-service.d.ts.map +1 -0
- package/build/src/lib/plist/plist-service.js +180 -0
- package/build/src/lib/plist/unified-plist-creator.d.ts +9 -0
- package/build/src/lib/plist/unified-plist-creator.d.ts.map +1 -0
- package/build/src/lib/plist/unified-plist-creator.js +14 -0
- package/build/src/lib/plist/unified-plist-parser.d.ts +8 -0
- package/build/src/lib/plist/unified-plist-parser.d.ts.map +1 -0
- package/build/src/lib/plist/unified-plist-parser.js +23 -0
- package/build/src/lib/plist/utils.d.ts +97 -0
- package/build/src/lib/plist/utils.d.ts.map +1 -0
- package/build/src/lib/plist/utils.js +287 -0
- package/build/src/lib/remote-xpc/constants.d.ts +20 -0
- package/build/src/lib/remote-xpc/constants.d.ts.map +1 -0
- package/build/src/lib/remote-xpc/constants.js +21 -0
- package/build/src/lib/remote-xpc/handshake-frames.d.ts +74 -0
- package/build/src/lib/remote-xpc/handshake-frames.d.ts.map +1 -0
- package/build/src/lib/remote-xpc/handshake-frames.js +285 -0
- package/build/src/lib/remote-xpc/handshake.d.ts +14 -0
- package/build/src/lib/remote-xpc/handshake.d.ts.map +1 -0
- package/build/src/lib/remote-xpc/handshake.js +95 -0
- package/build/src/lib/remote-xpc/remote-xpc-connection.d.ts +55 -0
- package/build/src/lib/remote-xpc/remote-xpc-connection.d.ts.map +1 -0
- package/build/src/lib/remote-xpc/remote-xpc-connection.js +365 -0
- package/build/src/lib/remote-xpc/xpc-protocol.d.ts +22 -0
- package/build/src/lib/remote-xpc/xpc-protocol.d.ts.map +1 -0
- package/build/src/lib/remote-xpc/xpc-protocol.js +368 -0
- package/build/src/lib/tunnel/index.d.ts +69 -0
- package/build/src/lib/tunnel/index.d.ts.map +1 -0
- package/build/src/lib/tunnel/index.js +205 -0
- package/build/src/lib/tunnel/packet-stream-client.d.ts +46 -0
- package/build/src/lib/tunnel/packet-stream-client.d.ts.map +1 -0
- package/build/src/lib/tunnel/packet-stream-client.js +152 -0
- package/build/src/lib/tunnel/packet-stream-server.d.ts +37 -0
- package/build/src/lib/tunnel/packet-stream-server.d.ts.map +1 -0
- package/build/src/lib/tunnel/packet-stream-server.js +109 -0
- package/build/src/lib/tunnel/tunnel-api-client.d.ts +85 -0
- package/build/src/lib/tunnel/tunnel-api-client.d.ts.map +1 -0
- package/build/src/lib/tunnel/tunnel-api-client.js +207 -0
- package/build/src/lib/tunnel/tunnel-registry-server.d.ts +68 -0
- package/build/src/lib/tunnel/tunnel-registry-server.d.ts.map +1 -0
- package/build/src/lib/tunnel/tunnel-registry-server.js +351 -0
- package/build/src/lib/types.d.ts +238 -0
- package/build/src/lib/types.d.ts.map +1 -0
- package/build/src/lib/types.js +4 -0
- package/build/src/lib/usbmux/index.d.ts +177 -0
- package/build/src/lib/usbmux/index.d.ts.map +1 -0
- package/build/src/lib/usbmux/index.js +490 -0
- package/build/src/lib/usbmux/usbmux-decoder.d.ts +19 -0
- package/build/src/lib/usbmux/usbmux-decoder.d.ts.map +1 -0
- package/build/src/lib/usbmux/usbmux-decoder.js +38 -0
- package/build/src/lib/usbmux/usbmux-encoder.d.ts +12 -0
- package/build/src/lib/usbmux/usbmux-encoder.d.ts.map +1 -0
- package/build/src/lib/usbmux/usbmux-encoder.js +32 -0
- package/build/src/service-connection.d.ts +34 -0
- package/build/src/service-connection.d.ts.map +1 -0
- package/build/src/service-connection.js +51 -0
- package/build/src/services/index.d.ts +6 -0
- package/build/src/services/index.d.ts.map +1 -0
- package/build/src/services/index.js +5 -0
- package/build/src/services/ios/base-service.d.ts +35 -0
- package/build/src/services/ios/base-service.d.ts.map +1 -0
- package/build/src/services/ios/base-service.js +55 -0
- package/build/src/services/ios/diagnostic-service/index.d.ts +46 -0
- package/build/src/services/ios/diagnostic-service/index.d.ts.map +1 -0
- package/build/src/services/ios/diagnostic-service/index.js +169 -0
- package/build/src/services/ios/diagnostic-service/keys.d.ts +5 -0
- package/build/src/services/ios/diagnostic-service/keys.d.ts.map +1 -0
- package/build/src/services/ios/diagnostic-service/keys.js +770 -0
- package/build/src/services/ios/syslog-service/index.d.ts +91 -0
- package/build/src/services/ios/syslog-service/index.d.ts.map +1 -0
- package/build/src/services/ios/syslog-service/index.js +323 -0
- package/build/src/services/ios/tunnel-service/index.d.ts +17 -0
- package/build/src/services/ios/tunnel-service/index.d.ts.map +1 -0
- package/build/src/services/ios/tunnel-service/index.js +57 -0
- package/build/src/services.d.ts +14 -0
- package/build/src/services.d.ts.map +1 -0
- package/build/src/services.js +48 -0
- package/package.json +12 -3
- package/.github/dependabot.yml +0 -38
- package/.github/workflows/format-check.yml +0 -43
- package/.github/workflows/lint-and-build.yml +0 -40
- package/.github/workflows/pr-title.yml +0 -16
- package/.github/workflows/publish.js.yml +0 -41
- package/.github/workflows/test-validation.yml +0 -40
- package/.mocharc.json +0 -8
- package/.prettierignore +0 -3
- package/.prettierrc +0 -17
- package/.releaserc +0 -48
- package/assets/images/ios-arch.png +0 -0
- package/eslint.config.js +0 -45
- package/npm-shrinkwrap.json +0 -2711
- package/test/integration/diagnostics-test.ts +0 -44
- package/test/integration/read-pair-record-test.ts +0 -39
- package/test/integration/tunnel-test.ts +0 -104
- package/test/unit/apple-tv/tlv/decoder.spec.ts +0 -144
- package/test/unit/apple-tv/tlv/encoder.spec.ts +0 -91
- package/test/unit/apple-tv/tlv/pairing-tlv.spec.ts +0 -101
- package/test/unit/apple-tv/tlv/tlv-integration.spec.ts +0 -146
- package/test/unit/apple-tv/utils/buffer-utils.spec.ts +0 -74
- package/test/unit/apple-tv/utils/uuid-generator.spec.ts +0 -39
- package/test/unit/fixtures/index.ts +0 -88
- package/test/unit/fixtures/usbmuxconnectmessage.bin +0 -0
- package/test/unit/fixtures/usbmuxlistdevicemessage.bin +0 -0
- package/test/unit/plist/error-handling.spec.ts +0 -101
- package/test/unit/plist/fixtures/sample.binary.plist +0 -0
- package/test/unit/plist/fixtures/sample.xml.plist +0 -38
- package/test/unit/plist/plist-parser.spec.ts +0 -283
- package/test/unit/plist/plist.spec.ts +0 -205
- package/test/unit/plist/tag-position-handling.spec.ts +0 -90
- package/test/unit/plist/unified-plist-parser.spec.ts +0 -227
- package/test/unit/plist/utils.spec.ts +0 -249
- package/test/unit/plist/xml-cleaning.spec.ts +0 -60
- package/test/unit/tunnel/tunnel-registry-server.spec.ts +0 -194
- package/test/unit/usbmux/usbmux-specs.ts +0 -71
- package/tsconfig.json +0 -36
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
name: Format Check
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches: [ main ]
|
|
6
|
-
pull_request:
|
|
7
|
-
branches: [ main ]
|
|
8
|
-
|
|
9
|
-
jobs:
|
|
10
|
-
prepare_matrix:
|
|
11
|
-
runs-on: ubuntu-latest
|
|
12
|
-
outputs:
|
|
13
|
-
versions: ${{ steps.generate-matrix.outputs.lts }}
|
|
14
|
-
steps:
|
|
15
|
-
- name: Select all current LTS versions of Node.js
|
|
16
|
-
id: generate-matrix
|
|
17
|
-
uses: msimerson/node-lts-versions@v1
|
|
18
|
-
|
|
19
|
-
format-check:
|
|
20
|
-
runs-on: macos-latest
|
|
21
|
-
needs:
|
|
22
|
-
- prepare_matrix
|
|
23
|
-
strategy:
|
|
24
|
-
fail-fast: false
|
|
25
|
-
matrix:
|
|
26
|
-
node-version: ${{ fromJSON(needs.prepare_matrix.outputs.versions) }}
|
|
27
|
-
steps:
|
|
28
|
-
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
|
|
29
|
-
- name: Use Node.js ${{ matrix.node-version }}
|
|
30
|
-
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3
|
|
31
|
-
with:
|
|
32
|
-
node-version: ${{ matrix.node-version }}
|
|
33
|
-
- name: Install dependencies
|
|
34
|
-
run: npm install
|
|
35
|
-
|
|
36
|
-
- name: Check formatting
|
|
37
|
-
# Run prettier in check mode (doesn't modify files)
|
|
38
|
-
run: npm run format:check
|
|
39
|
-
|
|
40
|
-
- name: Format instructions (if check fails)
|
|
41
|
-
if: ${{ failure() }}
|
|
42
|
-
run: |
|
|
43
|
-
echo "::error::Formatting issues detected. Run 'npm run format' locally to fix."
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
name: Lint and Build
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches: [ main ]
|
|
6
|
-
pull_request:
|
|
7
|
-
branches: [ main ]
|
|
8
|
-
|
|
9
|
-
jobs:
|
|
10
|
-
prepare_matrix:
|
|
11
|
-
runs-on: ubuntu-latest
|
|
12
|
-
outputs:
|
|
13
|
-
versions: ${{ steps.generate-matrix.outputs.lts }}
|
|
14
|
-
steps:
|
|
15
|
-
- name: Select all current LTS versions of Node.js
|
|
16
|
-
id: generate-matrix
|
|
17
|
-
uses: msimerson/node-lts-versions@v1
|
|
18
|
-
|
|
19
|
-
lint-and-build:
|
|
20
|
-
runs-on: macos-latest
|
|
21
|
-
needs:
|
|
22
|
-
- prepare_matrix
|
|
23
|
-
strategy:
|
|
24
|
-
fail-fast: false
|
|
25
|
-
matrix:
|
|
26
|
-
node-version: ${{ fromJSON(needs.prepare_matrix.outputs.versions) }}
|
|
27
|
-
steps:
|
|
28
|
-
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
|
|
29
|
-
- name: Use Node.js ${{ matrix.node-version }}
|
|
30
|
-
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3
|
|
31
|
-
with:
|
|
32
|
-
node-version: ${{ matrix.node-version }}
|
|
33
|
-
- name: Install dependencies
|
|
34
|
-
run: npm install
|
|
35
|
-
|
|
36
|
-
- name: Lint
|
|
37
|
-
run: npm run lint
|
|
38
|
-
|
|
39
|
-
- name: Build
|
|
40
|
-
run: npm run build
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
name: Conventional Commits
|
|
2
|
-
on:
|
|
3
|
-
pull_request:
|
|
4
|
-
types: [opened, edited, synchronize, reopened]
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
jobs:
|
|
8
|
-
lint:
|
|
9
|
-
name: https://www.conventionalcommits.org
|
|
10
|
-
runs-on: ubuntu-latest
|
|
11
|
-
steps:
|
|
12
|
-
- uses: beemojs/conventional-pr-action@v3
|
|
13
|
-
with:
|
|
14
|
-
config-preset: angular
|
|
15
|
-
env:
|
|
16
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
|
|
2
|
-
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
|
3
|
-
|
|
4
|
-
name: Release
|
|
5
|
-
|
|
6
|
-
on:
|
|
7
|
-
workflow_dispatch:
|
|
8
|
-
push:
|
|
9
|
-
branches: [ main ]
|
|
10
|
-
|
|
11
|
-
permissions:
|
|
12
|
-
contents: write
|
|
13
|
-
|
|
14
|
-
jobs:
|
|
15
|
-
build:
|
|
16
|
-
runs-on: ubuntu-latest
|
|
17
|
-
steps:
|
|
18
|
-
- uses: actions/checkout@v3
|
|
19
|
-
- name: Use Node.js LTS
|
|
20
|
-
uses: actions/setup-node@v3
|
|
21
|
-
with:
|
|
22
|
-
node-version: lts/*
|
|
23
|
-
check-latest: true
|
|
24
|
-
- run: npm install --no-package-lock
|
|
25
|
-
name: Install dependencies
|
|
26
|
-
- run: npm run test:unit
|
|
27
|
-
name: Run NPM Test
|
|
28
|
-
- run: |
|
|
29
|
-
rm -rf node_modules package-lock.json
|
|
30
|
-
npm prune --omit=dev --omit=peer --no-package-lock
|
|
31
|
-
name: Remove dev dependencies and appium peer dependencies
|
|
32
|
-
- run: npm shrinkwrap --omit=dev --omit=peer
|
|
33
|
-
name: Create shrinkwrap
|
|
34
|
-
# "--no-package-lock" prevent adding dev dependencies in the shrinkwrap
|
|
35
|
-
- run: npm install --only=dev --no-package-lock
|
|
36
|
-
name: Install dev dependencies for the release
|
|
37
|
-
- run: npx semantic-release
|
|
38
|
-
env:
|
|
39
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
40
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
41
|
-
name: Release
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
name: Test Validation
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches: [ main ]
|
|
6
|
-
pull_request:
|
|
7
|
-
branches: [ main ]
|
|
8
|
-
|
|
9
|
-
jobs:
|
|
10
|
-
prepare_matrix:
|
|
11
|
-
runs-on: ubuntu-latest
|
|
12
|
-
outputs:
|
|
13
|
-
versions: ${{ steps.generate-matrix.outputs.lts }}
|
|
14
|
-
steps:
|
|
15
|
-
- name: Select all current LTS versions of Node.js
|
|
16
|
-
id: generate-matrix
|
|
17
|
-
uses: msimerson/node-lts-versions@v1
|
|
18
|
-
|
|
19
|
-
validate-tests:
|
|
20
|
-
runs-on: macos-latest
|
|
21
|
-
needs:
|
|
22
|
-
- prepare_matrix
|
|
23
|
-
strategy:
|
|
24
|
-
fail-fast: false
|
|
25
|
-
matrix:
|
|
26
|
-
node-version: ${{ fromJSON(needs.prepare_matrix.outputs.versions) }}
|
|
27
|
-
steps:
|
|
28
|
-
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
|
|
29
|
-
- name: Use Node.js ${{ matrix.node-version }}
|
|
30
|
-
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3
|
|
31
|
-
with:
|
|
32
|
-
node-version: ${{ matrix.node-version }}
|
|
33
|
-
- name: Install dependencies
|
|
34
|
-
run: npm install
|
|
35
|
-
|
|
36
|
-
- name: Build project including tests
|
|
37
|
-
run: npm run build
|
|
38
|
-
|
|
39
|
-
- name: Run unit tests
|
|
40
|
-
run: npm run test:unit
|
package/.mocharc.json
DELETED
package/.prettierignore
DELETED
package/.prettierrc
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"printWidth": 80,
|
|
3
|
-
"tabWidth": 2,
|
|
4
|
-
"useTabs": false,
|
|
5
|
-
"semi": true,
|
|
6
|
-
"singleQuote": true,
|
|
7
|
-
"quoteProps": "as-needed",
|
|
8
|
-
"trailingComma": "all",
|
|
9
|
-
"bracketSpacing": true,
|
|
10
|
-
"bracketSameLine": false,
|
|
11
|
-
"arrowParens": "always",
|
|
12
|
-
"endOfLine": "lf",
|
|
13
|
-
"plugins": ["@trivago/prettier-plugin-sort-imports"],
|
|
14
|
-
"importOrder": ["^\\u0000", "^@?\\w", "^[./]"],
|
|
15
|
-
"importOrderSeparation": true,
|
|
16
|
-
"importOrderSortSpecifiers": true
|
|
17
|
-
}
|
package/.releaserc
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"plugins": [
|
|
3
|
-
["@semantic-release/commit-analyzer", {
|
|
4
|
-
"preset": "angular",
|
|
5
|
-
"releaseRules": [
|
|
6
|
-
{"type": "chore", "release": "patch"},
|
|
7
|
-
{"type": "feat", "release": "minor"},
|
|
8
|
-
{"type": "fix", "release": "patch"},
|
|
9
|
-
{"type": "perf", "release": "patch"},
|
|
10
|
-
{"type": "refactor", "release": "patch"},
|
|
11
|
-
{"type": "style", "release": "patch"},
|
|
12
|
-
{"type": "docs", "release": "patch"},
|
|
13
|
-
{"type": "chore", "release": "patch"},
|
|
14
|
-
{"breaking": true, "release": "minor"}
|
|
15
|
-
]
|
|
16
|
-
}],
|
|
17
|
-
["@semantic-release/release-notes-generator", {
|
|
18
|
-
"preset": "conventionalcommits",
|
|
19
|
-
"presetConfig": {
|
|
20
|
-
"types": [
|
|
21
|
-
{"type": "feat", "section": "Features"},
|
|
22
|
-
{"type": "fix", "section": "Bug Fixes"},
|
|
23
|
-
{"type": "perf", "section": "Performance Improvements"},
|
|
24
|
-
{"type": "revert", "section": "Reverts"},
|
|
25
|
-
{"type": "chore", "section": "Miscellaneous Chores"},
|
|
26
|
-
{"type": "refactor", "section": "Code Refactoring"},
|
|
27
|
-
{"type": "docs", "section": "Documentation", "hidden": true},
|
|
28
|
-
{"type": "style", "section": "Styles", "hidden": true},
|
|
29
|
-
{"type": "test", "section": "Tests", "hidden": true},
|
|
30
|
-
{"type": "build", "section": "Build System", "hidden": true},
|
|
31
|
-
{"type": "ci", "section": "Continuous Integration", "hidden": true}
|
|
32
|
-
]
|
|
33
|
-
}
|
|
34
|
-
}],
|
|
35
|
-
["@semantic-release/changelog", {
|
|
36
|
-
"changelogFile": "CHANGELOG.md"
|
|
37
|
-
}],
|
|
38
|
-
"@semantic-release/npm",
|
|
39
|
-
["@semantic-release/git", {
|
|
40
|
-
"assets": ["docs", "package.json", "CHANGELOG.md"],
|
|
41
|
-
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
42
|
-
}],
|
|
43
|
-
"@semantic-release/github"
|
|
44
|
-
],
|
|
45
|
-
"versionFilter": {
|
|
46
|
-
"maxVersion": "0.99.999"
|
|
47
|
-
}
|
|
48
|
-
}
|
|
Binary file
|
package/eslint.config.js
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import appiumConfig from '@appium/eslint-config-appium-ts';
|
|
2
|
-
import unicorn from 'eslint-plugin-unicorn';
|
|
3
|
-
|
|
4
|
-
export default [
|
|
5
|
-
...appiumConfig,
|
|
6
|
-
{
|
|
7
|
-
files: ['**/*.ts'],
|
|
8
|
-
linterOptions: {
|
|
9
|
-
reportUnusedDisableDirectives: 'off',
|
|
10
|
-
},
|
|
11
|
-
plugins: {
|
|
12
|
-
unicorn: unicorn,
|
|
13
|
-
},
|
|
14
|
-
rules: {
|
|
15
|
-
quotes: ['error', 'single'],
|
|
16
|
-
semi: ['error', 'always'],
|
|
17
|
-
'@typescript-eslint/no-explicit-any': 'off',
|
|
18
|
-
'@typescript-eslint/member-ordering': [
|
|
19
|
-
'error',
|
|
20
|
-
{
|
|
21
|
-
default: [
|
|
22
|
-
// ─── PUBLIC METHODS ─────────────────────────────────────────────────────
|
|
23
|
-
'public-static-method',
|
|
24
|
-
'public-instance-method',
|
|
25
|
-
|
|
26
|
-
// ─── PROTECTED METHODS ──────────────────────────────────────────────────
|
|
27
|
-
'protected-static-method',
|
|
28
|
-
'protected-instance-method',
|
|
29
|
-
|
|
30
|
-
// ─── PRIVATE METHODS ────────────────────────────────────────────────────
|
|
31
|
-
'private-static-method',
|
|
32
|
-
'private-instance-method',
|
|
33
|
-
],
|
|
34
|
-
},
|
|
35
|
-
],
|
|
36
|
-
'unicorn/filename-case': [
|
|
37
|
-
'error',
|
|
38
|
-
{
|
|
39
|
-
case: 'kebabCase',
|
|
40
|
-
},
|
|
41
|
-
],
|
|
42
|
-
},
|
|
43
|
-
ignores: ['**/build/**', '**/node_modules/**'],
|
|
44
|
-
},
|
|
45
|
-
];
|