create-nx-workspace 19.7.0-beta.1 → 19.7.0-beta.2
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.
|
@@ -420,7 +420,9 @@ async function determineReactOptions(parsedArgs) {
|
|
|
420
420
|
e2eTestRunner = await determineE2eTestRunner(parsedArgs);
|
|
421
421
|
}
|
|
422
422
|
else if (preset === preset_1.Preset.RemixMonorepo ||
|
|
423
|
-
preset === preset_1.Preset.RemixStandalone
|
|
423
|
+
preset === preset_1.Preset.RemixStandalone ||
|
|
424
|
+
preset === preset_1.Preset.ReactNative ||
|
|
425
|
+
preset === preset_1.Preset.Expo) {
|
|
424
426
|
e2eTestRunner = await determineE2eTestRunner(parsedArgs);
|
|
425
427
|
}
|
|
426
428
|
if (parsedArgs.style) {
|
package/package.json
CHANGED
|
@@ -7,10 +7,10 @@ const is_ci_1 = require("../ci/is-ci");
|
|
|
7
7
|
const package_manager_1 = require("../package-manager");
|
|
8
8
|
exports.NxCloudChoices = [
|
|
9
9
|
'github',
|
|
10
|
-
'circleci',
|
|
11
10
|
'gitlab',
|
|
12
11
|
'azure',
|
|
13
12
|
'bitbucket-pipelines',
|
|
13
|
+
'circleci',
|
|
14
14
|
'skip',
|
|
15
15
|
'yes', // Deprecated but still handled
|
|
16
16
|
];
|
|
@@ -25,10 +25,10 @@ const messageOptions = {
|
|
|
25
25
|
initial: 0,
|
|
26
26
|
choices: [
|
|
27
27
|
{ value: 'github', name: 'GitHub Actions' },
|
|
28
|
-
{ value: 'circleci', name: 'Circle CI' },
|
|
29
28
|
{ value: 'gitlab', name: 'Gitlab' },
|
|
30
29
|
{ value: 'azure', name: 'Azure DevOps' },
|
|
31
30
|
{ value: 'bitbucket-pipelines', name: 'BitBucket Pipelines' },
|
|
31
|
+
{ value: 'circleci', name: 'Circle CI' },
|
|
32
32
|
{ value: 'skip', name: '\nDo it later' },
|
|
33
33
|
],
|
|
34
34
|
footer: '\nRemote caching, task distribution and test splitting are provided by Nx Cloud. Read more at https://nx.dev/ci',
|