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

Extend the script configuration schema #88

Open
Tracked by #63
umbopepato opened this issue Nov 3, 2021 · 0 comments
Open
Tracked by #63

Extend the script configuration schema #88

umbopepato opened this issue Nov 3, 2021 · 0 comments
Labels
🧩 feature A new feature to be implemented
Projects

Comments

@umbopepato
Copy link
Member

Add the install and dependencies top-level sections:

interface InstallOptions extends Omit<DenoCliOptions, 'watch'> {
  entry: string;
  name?: string;
  location?: string;
  prompt?: boolean;
  seed?: number;
}

export interface ScriptsConfiguration extends ScriptOptions {
  scripts: Scripts;
  install: InstallOptions;
  dependencies: Record<string, string | InstallOptions>;
}
@umbopepato umbopepato added the 🧩 feature A new feature to be implemented label Nov 3, 2021
@umbopepato umbopepato added this to To do in Workflow via automation Nov 3, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🧩 feature A new feature to be implemented
Projects
Development

No branches or pull requests

1 participant