UNPKG

@patchworkdev/pdk

Version:

Patchwork Development Kit

17 lines (16 loc) 509 B
"use strict"; // services/env.ts Object.defineProperty(exports, "__esModule", { value: true }); exports.EnvGenerator = void 0; class EnvGenerator { configPath; constructor(configPath) { this.configPath = configPath; } async generateEnvironments() { // comment out and leave as dummy function while we transition to plugin system // await generatePonderEnv(this.configPath); // await generateWWWEnv(this.configPath); } } exports.EnvGenerator = EnvGenerator;