Skip to content

Commit

Permalink
Merge branch 'DXCDT-867-add-experimental-ea-command-flag' into DXCDT-…
Browse files Browse the repository at this point in the history
…864-Support-ACUL-Release2-Screens
  • Loading branch information
kushalshit27 authored Feb 5, 2025
2 parents 7dceb7a + 09ae8d8 commit 6ddc689
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/using-as-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ A url for proxying requests. Only set this if you are behind a proxy.

### `--experimental_ea`

Boolean. Enables early access Auth0 resources support and experimental features. Default: `false`.
Boolean. When enabled, gain early access Auth0 resources support and experimental features. Default: `false`.

### Examples

Expand Down Expand Up @@ -77,7 +77,7 @@ Boolean. Enables more verbose error logging; useful during troubleshooting. Defa

### `--experimental_ea`

Boolean. Enables early access Auth0 resources support and experimental features. Default: `false`.
Boolean. When enabled, gain early access Auth0 resources support and experimental features. Default: `false`.

### Examples

Expand Down
4 changes: 4 additions & 0 deletions src/context/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,10 @@ export const setupContext = async (
: 'features [' + EA_FEATURES.join(',') + '] are'
} enabled. These are in a pre-release state and may change in future release.`
);
} else {
log.info(
'To enable experimental early access features use --experimental_ea flag or set AUTH0_EXPERIMENTAL_EA=true in configuration JSON.'
);
}
})(config);

Expand Down

0 comments on commit 6ddc689

Please sign in to comment.