@ulpi/browse 1.4.4 → 2.3.1
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/LICENSE +191 -21
- package/README.md +186 -12
- package/bin/browse-android-app.apk +0 -0
- package/bin/browse-android.apk +0 -0
- package/bin/browse-ax +0 -0
- package/bin/browse-ios-runner/BrowseRunnerApp/BrowseRunnerApp.swift +382 -0
- package/bin/browse-ios-runner/BrowseRunnerApp/RunnerStatusStore.swift +135 -0
- package/bin/browse-ios-runner/BrowseRunnerUITests/ActionHandler.swift +277 -0
- package/bin/browse-ios-runner/BrowseRunnerUITests/BrowseRunnerUITests.swift +60 -0
- package/bin/browse-ios-runner/BrowseRunnerUITests/Models.swift +78 -0
- package/bin/browse-ios-runner/BrowseRunnerUITests/RunnerServer.swift +246 -0
- package/bin/browse-ios-runner/BrowseRunnerUITests/ScreenshotHandler.swift +35 -0
- package/bin/browse-ios-runner/BrowseRunnerUITests/StateHandler.swift +82 -0
- package/bin/browse-ios-runner/BrowseRunnerUITests/TreeBuilder.swift +323 -0
- package/bin/browse-ios-runner/build.sh +81 -0
- package/bin/browse-ios-runner/project.yml +47 -0
- package/browse-ios-runner/BrowseRunnerApp/BrowseRunnerApp.swift +382 -0
- package/browse-ios-runner/BrowseRunnerApp/RunnerStatusStore.swift +135 -0
- package/browse-ios-runner/BrowseRunnerUITests/ActionHandler.swift +277 -0
- package/browse-ios-runner/BrowseRunnerUITests/BrowseRunnerUITests.swift +60 -0
- package/browse-ios-runner/BrowseRunnerUITests/Models.swift +78 -0
- package/browse-ios-runner/BrowseRunnerUITests/RunnerServer.swift +246 -0
- package/browse-ios-runner/BrowseRunnerUITests/ScreenshotHandler.swift +35 -0
- package/browse-ios-runner/BrowseRunnerUITests/StateHandler.swift +82 -0
- package/browse-ios-runner/BrowseRunnerUITests/TreeBuilder.swift +323 -0
- package/browse-ios-runner/README.md +194 -0
- package/browse-ios-runner/build.sh +81 -0
- package/browse-ios-runner/project.yml +47 -0
- package/dist/browse.cjs +26595 -13648
- package/package.json +15 -5
- package/skill/SKILL.md +33 -0
- package/skill/references/commands.md +18 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
name: BrowseRunner
|
|
2
|
+
options:
|
|
3
|
+
bundleIdPrefix: io.ulpi
|
|
4
|
+
deploymentTarget:
|
|
5
|
+
iOS: "16.0"
|
|
6
|
+
createIntermediateGroups: true
|
|
7
|
+
|
|
8
|
+
settings:
|
|
9
|
+
base:
|
|
10
|
+
SWIFT_VERSION: "5"
|
|
11
|
+
|
|
12
|
+
packages:
|
|
13
|
+
FlyingFox:
|
|
14
|
+
url: https://github.com/swhitty/FlyingFox
|
|
15
|
+
exactVersion: "0.22.0"
|
|
16
|
+
|
|
17
|
+
targets:
|
|
18
|
+
BrowseRunnerApp:
|
|
19
|
+
type: application
|
|
20
|
+
platform: iOS
|
|
21
|
+
sources:
|
|
22
|
+
- path: BrowseRunnerApp
|
|
23
|
+
settings:
|
|
24
|
+
base:
|
|
25
|
+
PRODUCT_BUNDLE_IDENTIFIER: io.ulpi.browse-ios-runner
|
|
26
|
+
CODE_SIGN_IDENTITY: ""
|
|
27
|
+
CODE_SIGNING_ALLOWED: "NO"
|
|
28
|
+
GENERATE_INFOPLIST_FILE: "YES"
|
|
29
|
+
MARKETING_VERSION: "2.2.0"
|
|
30
|
+
CURRENT_PROJECT_VERSION: "1"
|
|
31
|
+
INFOPLIST_KEY_NSAppTransportSecurity_NSAllowsLocalNetworking: YES
|
|
32
|
+
|
|
33
|
+
BrowseRunnerUITests:
|
|
34
|
+
type: bundle.ui-testing
|
|
35
|
+
platform: iOS
|
|
36
|
+
sources:
|
|
37
|
+
- path: BrowseRunnerUITests
|
|
38
|
+
dependencies:
|
|
39
|
+
- target: BrowseRunnerApp
|
|
40
|
+
- package: FlyingFox
|
|
41
|
+
settings:
|
|
42
|
+
base:
|
|
43
|
+
PRODUCT_BUNDLE_IDENTIFIER: io.ulpi.browse-ios-runner-uitests
|
|
44
|
+
CODE_SIGN_IDENTITY: ""
|
|
45
|
+
CODE_SIGNING_ALLOWED: "NO"
|
|
46
|
+
GENERATE_INFOPLIST_FILE: "YES"
|
|
47
|
+
TEST_TARGET_NAME: BrowseRunnerApp
|