@lando/platformsh
Version:
A Lando plugin that provides a tight integration with Platform.sh.
24 lines (21 loc) • 902 B
JavaScript
;
exports.unsupportedServices = (services = '') => ({
title: 'Unsupported Platform.sh services detected',
detail: [
'Lando has detected services in your Platform.sh config which are not yet supported.',
'This may result in errors or reduced functionality.',
`The unsupported services are: ${services}`,
'See the documentation below for more detail:',
],
url: 'https://docs.lando.dev/config/platformsh.html',
});
exports.unsupportedLanguages = (languages = '') => ({
title: 'Unsupported Platform.sh languages detected',
detail: [
'Lando has detected application languages in your Platform.sh config which are not yet supported.',
'This may result in errors or reduced functionality.',
`The unsupported languages are: ${languages}`,
'See the documentation below for more detail:',
],
url: 'https://docs.lando.dev/config/platformsh.html',
});