Skip to content

Commit

Permalink
fix: local commands parameters (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
okwasniewski committed Mar 26, 2024
1 parent f85b399 commit 9db67ce
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions packages/react-native/local-cli/localCommands.js
Original file line number Diff line number Diff line change
@@ -1,43 +1,45 @@
const {
buildOptions,
createBuild,
createLog,
createRun,
logOptions,
runOptions,
getRunOptions,
getLogOptions,
getBuildOptions,
} = require('@react-native-community/cli-platform-apple');

const platformName = 'visionos';

const run = {
name: 'run-visionos',
description: 'builds your app and starts it on visionOS simulator',
func: createRun({platformName: 'visionos'}),
func: createRun({platformName}),
examples: [
{
desc: 'Run on a specific simulator',
cmd: 'npx @callstack/react-native-visionos run-visionos --simulator "Apple Vision Pro"',
},
],
options: runOptions,
options: getRunOptions({platformName}),
};

const log = {
name: 'log-visionos',
description: 'starts visionOS device syslog tail',
func: createLog({platformName: 'visionos'}),
options: logOptions,
options: getLogOptions({platformName}),
};

const build = {
name: 'build-visionos',
description: 'builds your app for visionOS platform',
func: createBuild({platformName: 'visionos'}),
func: createBuild({platformName}),
examples: [
{
desc: 'Build the app for all visionOS devices in Release mode',
cmd: 'npx @callstack/react-native-visionos build-visionos --mode "Release"',
},
],
options: buildOptions,
options: getBuildOptions({platformName}),
};

module.exports = [run, log, build];

0 comments on commit 9db67ce

Please sign in to comment.