Skip to content

Commit b3bfc50

Browse files
authored
Merge pull request #114 from gluestack/fix/create-flags
Fix/create flags
2 parents 527e313 + a344818 commit b3bfc50

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

packages/gluestack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"cli"
1111
],
1212
"description": "A CLI tool for working with gluestack",
13-
"version": "2.0.3",
13+
"version": "2.0.4",
1414
"license": "MIT",
1515
"main": "./dist/index.js",
1616
"bin": "./dist/index.js",

packages/gluestack/src/v2.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ export async function main(args: string[]) {
1818
)
1919
);
2020

21-
const supportedFrameworkArgs = ['--expo', '--next-app-router', '--universal'];
21+
const supportedFrameworkArgs = [
22+
'--expo-router',
23+
'--next-app-router',
24+
'--universal',
25+
];
2226

2327
const supportedStyleArgs = ['--gs', '--nw'];
2428

0 commit comments

Comments
 (0)