SvelteKit adapter that automatically detects deployment environment and installs appropriate platform-specific adapter
Overall
score
96%
A deployment configuration system that automatically detects the hosting environment and delegates to the appropriate deployment adapter. When no supported environment is detected, the system should handle this gracefully by providing helpful feedback to the user.
@generates
/**
* Creates a deployment adapter that automatically detects the environment
* and configures the appropriate deployment strategy.
*
* @returns {object} An adapter object with name and adapt methods
*/
function createDeploymentAdapter() {
// IMPLEMENTATION HERE
}
module.exports = { createDeploymentAdapter };Provides automatic environment detection and adapter delegation capabilities.
@satisfied-by
Install with Tessl CLI
npx tessl i tessl/npm-sveltejs--adapter-autodocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10