Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding @sap-ux/cf-deploy-config-inquirer #2436

Merged
merged 56 commits into from
Oct 16, 2024
Merged
Changes from 1 commit
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
d07dc0f
cf prompts app gen flow
kjose90 Oct 4, 2024
e1ea186
changing name to addManagedApprouter
kjose90 Oct 4, 2024
63cdbed
add overwrite logic
kjose90 Oct 7, 2024
7321e72
add test
kjose90 Oct 7, 2024
29a5862
update tests and lint
kjose90 Oct 7, 2024
cb6e1a1
refactor prompt types
kjose90 Oct 7, 2024
ab1b08d
adding additional choice lists
kjose90 Oct 8, 2024
084eea0
cf choice list
kjose90 Oct 8, 2024
35f2a3a
fix choices
kjose90 Oct 8, 2024
42a52d0
fix test
kjose90 Oct 8, 2024
6cb938d
fix dest name
kjose90 Oct 8, 2024
f3667fb
remove reference to sap system
kjose90 Oct 8, 2024
1b4f63e
added propmpts
kjose90 Oct 9, 2024
fedb82a
added propmpts
kjose90 Oct 9, 2024
bee12de
change names of answers for writers
kjose90 Oct 9, 2024
06098b9
lint
kjose90 Oct 9, 2024
94fbe4d
read me
kjose90 Oct 9, 2024
c19cbb3
cf comments
kjose90 Oct 9, 2024
85bb3cb
adding changeset
kjose90 Oct 9, 2024
cb8e94f
add js docs
kjose90 Oct 9, 2024
2136a9c
change name to projectRoot
kjose90 Oct 9, 2024
86566e3
resolve conflict
kjose90 Oct 9, 2024
ebc7162
Linting auto fix commit
github-actions[bot] Oct 9, 2024
f9e788f
Merge branch 'main' into open-source-cf-inquirer
kjose90 Oct 10, 2024
dafa3a2
remove cap reference
kjose90 Oct 10, 2024
4e3ba6a
fix readme
kjose90 Oct 10, 2024
3287b45
resolve conflict
kjose90 Oct 10, 2024
4bad05a
add tests
kjose90 Oct 10, 2024
3cfd6ff
fix sonar issues
kjose90 Oct 10, 2024
f264390
search autocomplete feature
kjose90 Oct 10, 2024
ffbc655
fix auto complete
kjose90 Oct 10, 2024
a5e110b
change name to destination
kjose90 Oct 10, 2024
fb4fe05
Linting auto fix commit
github-actions[bot] Oct 10, 2024
be1e253
adding comments
kjose90 Oct 10, 2024
16cd1cf
resolve conflict
kjose90 Oct 10, 2024
f8c3aee
Linting auto fix commit
github-actions[bot] Oct 10, 2024
bb9a84b
Merge branch 'main' into open-source-cf-inquirer
kjose90 Oct 11, 2024
f88290b
rename prompt names to cf
kjose90 Oct 11, 2024
9aea528
Merge branch 'open-source-cf-inquirer' of https://github.com/SAP/open…
kjose90 Oct 11, 2024
08a95ac
fix dest name message
kjose90 Oct 11, 2024
da446b8
rename overwrite prompt
kjose90 Oct 11, 2024
5e462bb
altering types
kjose90 Oct 11, 2024
24b9dec
Update cf-deploy-config-inquirer.i18n.json
kjose90 Oct 14, 2024
32f068a
adding addBTPdestList Flag
kjose90 Oct 14, 2024
edd6b5d
Merge branch 'open-source-cf-inquirer' of https://github.com/SAP/open…
kjose90 Oct 14, 2024
5b7cb4e
Merge branch 'main' into open-source-cf-inquirer
longieirl Oct 14, 2024
d1401d1
add log and test
kjose90 Oct 15, 2024
92b4efa
Merge branch 'open-source-cf-inquirer' of https://github.com/SAP/open…
kjose90 Oct 15, 2024
688d49c
Merge branch 'main' into open-source-cf-inquirer
kjose90 Oct 15, 2024
67aed00
add validate tests
kjose90 Oct 15, 2024
91ca450
Merge branch 'open-source-cf-inquirer' of https://github.com/SAP/open…
kjose90 Oct 15, 2024
91340bc
add log info
kjose90 Oct 15, 2024
cb688ac
add warning.btpDestinationListWarning for vscode when no list returne…
kjose90 Oct 15, 2024
8b59f22
logging
kjose90 Oct 15, 2024
fe34619
update logging
kjose90 Oct 16, 2024
c09639f
Merge branch 'main' into open-source-cf-inquirer
kjose90 Oct 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ export async function getCfSystemChoices(destinations?: Destinations): Promise<C
export async function fetchBTPDestinations(log?: Logger): Promise<Destinations | undefined> {
if (isAppStudio()) {
const destinations = await listDestinations();
log?.warn(t('warning.btpDestinationListWarning'));
return destinations;
}
log?.warn(t('warning.btpDestinationListWarning'));
IainSAP marked this conversation as resolved.
Show resolved Hide resolved
return undefined;
longieirl marked this conversation as resolved.
Show resolved Hide resolved
IainSAP marked this conversation as resolved.
Show resolved Hide resolved
}
Loading