npm install create-ts-index --save-devPlease using ctix
ctix next generation export generation tool. ctix use TypeScript compiler API. So Many problem solve in create-ts-index. For example, separate project(using by tsconfig.json) and support default function, auto detect file that have export statement, etc. I need more help for improvement at ctix.
index.ts file create for exportation. If don't have business logic in index.ts that use to only exportation, create-ts-index help easy importing. Or if you have library project need this export process(for example, blueprint.js etc ...). cti(create-ts-index) create export index.ts file.
For example, sample directory below.
src/
app.ts
component/
Nav.ts
Button.ts
create-ts-index create sub-command create index.ts file below.
src/
app.ts
> index.ts
// created from 'create-ts-index'
export * from './component';
export * from './app';
component/
Nav.ts
Button.ts
> index.ts
// created from 'create-ts-index'
export * from './Nav';
export * from './Button';
create-ts-index entrypoint sub-command create index.ts file below.
src/
app.ts
component/
Nav.ts
Button.ts
> entrypoint.ts
// created from 'create-ts-index'
export * from './src/app.ts'
export * from './src/component/Nav.ts'
export * from './src/component/Button.ts'
fileFirst: booleanexport list create filefirst. default falseaddNewline: booleandecide add newline file ending. default trueuseSemicolon: booleandecide use semicolon line ending. default trueuseTimestamp: booleandecide use timestamp(YYYY-MM-DD HH:mm) top line comment. default falseincludeCWD: booleandecide include cwd directory. default trueexcludes: string[]pass exclude directory. default exclude directory is['@types', 'typings', '__test__', '__tests__']fileExcludePatterns: string[]pass exclude filename pattern. default exclude patterns is[]targetExts: string[]pass include extname. default extname is['ts', 'tsx']. extname pass without dot character.globOptions: glob.IOptionspass include glob options. node-glob option use it.quotedecide quote character. Single quote character use to default.verboseverbose log message displaywithoutCommentremove create-ts-index comment that top of line in index.tswithoutBackupFileDon't create backup file if already exists target fileoutputindex.ts or entrypoint.ts filename changeincludeDeclarationFilespass declaration files (*.d.ts). default is false
-f --filefirstexport list create file first, no option false, option true-n --addnewlinedecide add newline file ending. no option true, option false-s --usesemicolondecide use semicolon line ending. no option true, option false-t --usetimestampdecide use timestamp(YYYY-MM-DD HH:mm) top line comment. no option false, option true-c --includecwddecide include cwd directory. no option true, option true-e --excludes [comma separated exclude directories]pass exclude directory. default exclude directory is['@types', 'typings', '__test__', '__tests__']-i --fileexcludes [comma separated extname]pass exclude filename pattern. default exclude patterns is[]-x --targetexts [comma separated extname]pass include extname. default extname is['ts', 'tsx']. extname pass without dot character.-q --quotedecide quote character. default quote character single quote-v --verbosedisplay verbose log message. no option false, option true-w --withoutcommentremove create-ts-index comment that top of line in index.ts-b --withoutbackupDon't create backup file if already exists target file-o --outputindex.ts or entrypoint.ts filename change-d --includeDeclarationFilespass declaration files (*.d.ts). default is false
const tsiw = new TypeScritIndexWriter();
const option = TypeScritIndexWriter.getDefaultOption('./src');
(async () => {
await tsiw.create(option);
// or
await tsiw.createEntrypoint(option);
})();(async () => {
const option = CreateTsIndexOption.getOption({});
const createCommand = new CreateCommandModule();
await createCommand.do(process.cwd(), option);
});cli use git-style sub-command
- create
- cti create index.ts file
- entrypoint
- cti create webpack entrypoint
- init
- create
.ctircfile
- create
- clean
- cti clean index.ts file recursively
# basic usage
cti create ./src # or cti create ./src
## or
cti entrypoint ./src # or cti create ./src
# without newline
## create sub-command, create sub-command is a default command
cti -n ./src
cti create -n ./src
## entrypoint sub-command
cti entrypoint -n ./src
# custom exclude directories
cti create -n -e @types,typings,__test__,__tests__,pages ./src
## or
cti entrypoint -n -e @types,typings,__test__,__tests__,pages ./src
# clean index.ts
cti clean ./src # or cti clean ./src
# loop through every sub-directory in current path (thanks Mohsen)
for f in *; do cti create ./$f; done
# Pass variadic directories
cti create ./src/server ./src/client ./src/modulecreate-ts-index cli support .ctirc configuration file. Available name is only .ctirc. .ctirc configuration file can applied by each target directories and script working directory. Every configuration overwrited same feature. Also cti cli arguments forced applied. And .ctirc file can write json5 format. json5 spec. can comment and more feature.
See below search, apply order.
# execute on /Users/cti/github/create-ts-index
sh> cti create ./example/type01
# search configuration file on "/Users/cti/github/create-ts-index"
# search configuration file on "/Users/cti/github/create-ts-index/example/type01"
# apply configuration by "/Users/cti/github/create-ts-index"
# apply configuration by "/Users/cti/github/create-ts-index/example/type01"
# every configuration is overwrited You can use cli for .ctirc file creation.
# create current directory
> cti init
# create multiple directory
> cti init ./example/type03 ./example/type02