Skip to content

Commit

Permalink
improve build and run scripts to support app deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
pauliusguzas committed Nov 5, 2024
1 parent ae92bd8 commit 9e675d1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions packages/app-harness/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
},
"scripts": {
"bootstrap": "cd ../.. && yarn bootstrap",
"build:android-test": "npx rnv build -p android -s test -c harness --packageManager yarn --ci -r",
"build:androidtv-test": "npx rnv build -p androidtv -s test -c harness --packageManager yarn --ci -r",
"build:android-test": "npx rnv build -p android -s test -c harness --packageManager yarn --ci --yes -r",
"build:androidtv-test": "npx rnv build -p androidtv -s test -c harness --packageManager yarn --ci --yes -r",
"build:ios-test": "npx rnv build -p ios -s test -c harness --packageManager yarn --ci -r",
"build:macos-test": "npx rnv build -p macos -s test -c harness --packageManager yarn --ci -r",
"build:tvos-test": "npx rnv build -p tvos -s test -c harness --packageManager yarn --ci -r",
Expand All @@ -30,8 +30,8 @@
"report": "yarn report:generate && yarn report:open",
"report:generate": "npx allure generate --clean reporting/allure-results -o reporting/allure-report",
"report:open": "npx allure open reporting/allure-report",
"run:android-test": "npx rnv run -p android -s test -c harness --packageManager yarn --ci -r",
"run:androidtv-test": "npx rnv run -p androidtv -s test -c harness --packageManager yarn --ci -r",
"run:android-test": "npx rnv run -p android -s test -c harness --packageManager yarn --ci --yes -r",
"run:androidtv-test": "npx rnv run -p androidtv -s test -c harness --packageManager yarn --ci --yes -r",
"run:ios-test": "npx rnv run -p ios -s test -c harness --packageManager yarn --ci -r",
"run:tvos-test": "npx rnv run -p tvos -s test -c harness --packageManager yarn --ci -r",
"run:web-test": "npx rnv run -p web -s test -c harness --packageManager yarn --ci",
Expand Down
8 changes: 4 additions & 4 deletions packages/template-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@
},
"scripts": {
"bootstrap": "cd ../.. && yarn bootstrap",
"build:android-test": "npx rnv build -p android -s test -c template --packageManager yarn --ci -r",
"build:androidtv-test": "npx rnv build -p androidtv -s test -c template --packageManager yarn --ci -r",
"build:android-test": "npx rnv build -p android -s test -c template --packageManager yarn --ci --yes -r",
"build:androidtv-test": "npx rnv build -p androidtv -s test -c template --packageManager yarn --ci --yes -r",
"build:ios-test": "npx rnv build -p ios -s test -c template --packageManager yarn --ci -r",
"build:macos-test": "npx rnv build -p macos -s test -c template --packageManager yarn --ci -r",
"build:tvos-test": "npx rnv build -p tvos -s test -c template --packageManager yarn --ci -r",
Expand All @@ -87,8 +87,8 @@
"report": "yarn report:generate && yarn report:open",
"report:generate": "npx allure generate --clean reporting/allure-results -o reporting/allure-report",
"report:open": "npx allure open reporting/allure-report",
"run:android-test": "npx rnv run -p android -s test -c template --packageManager yarn --ci -r",
"run:androidtv-test": "npx rnv run -p androidtv -s test -c template --packageManager yarn --ci -r",
"run:android-test": "npx rnv run -p android -s test -c template --packageManager yarn --ci --yes -r",
"run:androidtv-test": "npx rnv run -p androidtv -s test -c template --packageManager yarn --ci --yes -r",
"run:ios-test": "npx rnv run -p ios -s test -c template --packageManager yarn --ci -r",
"run:tvos-test": "npx rnv run -p tvos -s test -c template --packageManager yarn --ci -r",
"run:web-test": "npx rnv run -p web -s test -c template --packageManager yarn --ci",
Expand Down

0 comments on commit 9e675d1

Please sign in to comment.