-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import type { args } from "@oclif/parser"; | ||
import { Command, flags } from "@oclif/command"; | ||
export default class Analyse extends Command { | ||
static description: string; | ||
static examples: Array<string>; | ||
static args: args.Input; | ||
static flags: flags.Input<any>; | ||
private getRunConfig; | ||
run(): Promise<void>; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import type { args } from "@oclif/parser"; | ||
import { Command, flags } from "@oclif/command"; | ||
import { CompileConfig, KipperCompileTarget, KipperLogger } from "@kipper/core"; | ||
import { KipperParseFile } from "../input/"; | ||
export default class Compile extends Command { | ||
static description: string; | ||
static examples: Array<string>; | ||
static args: args.Input; | ||
static flags: flags.Input<any>; | ||
protected getRunConfig(): Promise<{ | ||
args: { | ||
[name: string]: any; | ||
}; | ||
flags: { | ||
[x: string]: any; | ||
}; | ||
config: { | ||
stream: KipperParseFile | import("@kipper/core").KipperParseStream; | ||
target: KipperCompileTarget; | ||
outDir: string; | ||
outPath: string; | ||
encoding: any; | ||
resources: { | ||
src: string; | ||
out: string; | ||
}[]; | ||
compilerOptions: CompileConfig; | ||
}; | ||
}>; | ||
run(logger?: KipperLogger): Promise<void>; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import HelpCommand from "@oclif/plugin-help/lib/commands/help"; | ||
import { flags } from "@oclif/command"; | ||
export default class Help extends HelpCommand { | ||
static description: string; | ||
static args: { | ||
name: string; | ||
required: boolean; | ||
description: string; | ||
}[]; | ||
static flags: flags.Input<any>; | ||
static run(): Promise<void>; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import type { args } from "@oclif/parser"; | ||
import { Command, flags } from "@oclif/command"; | ||
export default class New extends Command { | ||
static description: string; | ||
static examples: Array<string>; | ||
static args: args.Input; | ||
static flags: flags.Input<any>; | ||
private getRunConfig; | ||
private fileExists; | ||
private genKipConfig; | ||
private genMainFile; | ||
private genGitignore; | ||
private genPackageJson; | ||
run(): Promise<void>; | ||
} |