From 070ac0263cccda84bf121440f2278a071cd98930 Mon Sep 17 00:00:00 2001 From: Unknownamae Date: Mon, 11 May 2026 19:27:16 +0200 Subject: [PATCH] Add iOS scaffold option --- index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 21bc82ed..5b9ec6c8 100755 --- a/index.js +++ b/index.js @@ -29,7 +29,7 @@ program program .command('new ') - .option('-s, --scaffold ', 'The framework to use. Options include react, angular, vuejs, nextjs and node.') + .option('-s, --scaffold ', 'The framework to use. Options include react, angular, vuejs, nextjs, ios and node.') .option('-r, --restURL ', 'The rest URL to use. default: https://rest.bitbox.earth/v1/') .option('-e, --environment ', 'environment of running BITBOX instance. Ex: production, staging. (Default: development)') .description(`create a new BITBOX application`) @@ -68,6 +68,8 @@ program repo = 'https://github.com/Bitcoin-com/bitbox-scaffold-next.git'; } else if(scaffold === 'react') { repo = 'https://github.com/Bitcoin-com/bitbox-scaffold-react.git'; + } else if(scaffold === 'ios') { + repo = 'https://github.com/Unknownamae/bitbox-scaffold-ios.git'; } else if(scaffold === 'vue') { repo = 'https://github.com/Bitcoin-com/bitbox-scaffold-vue.git'; } else {