Skip to content

Commit 7bee2a5

Browse files
author
Chen Asraf
committed
0.5.0
1 parent d4c049b commit 7bee2a5

20 files changed

+1655
-1647
lines changed

cmd.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import SimpleScaffold from './scaffold'
22
import * as fs from 'fs'
3-
import IScaffold from './index'
3+
import {IScaffold} from './index'
44
import * as cliArgs from 'command-line-args'
55
import * as cliUsage from 'command-line-usage'
66
import * as path from 'path'

dist/dist/cmd.d.ts dist/cmd.d.ts

File renamed without changes.

dist/cmd.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cmd.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.d.ts

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
declare namespace IScaffold {
2+
class SimpleScaffold {
3+
constructor(config: Config)
4+
run(): void
5+
}
6+
7+
export interface Config {
8+
name?: string
9+
templates: string[]
10+
output: string | ((path: string, base: string) => string)
11+
locals?: Locals
12+
createSubfolder?: boolean
13+
}
14+
15+
export interface Locals {
16+
[k: string]: string
17+
}
18+
19+
export interface FileRepr {
20+
base: string
21+
file: string
22+
}
23+
}
24+
25+
export default IScaffold.SimpleScaffold
26+
export { IScaffold }

dist/index.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)