1.0.2 • Published 5 years ago

@xxyyzz2050/project-creator v1.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

Project Creator

This package is a part of The Creator workflow, just add it to creator.json file

usage

[
'@eldeeb/project-creator'
]

or

[
  ['@eldeeb/project-creator', {/*options*/} ]
]

commands

init

initiates a workspace and creates some basic files such as package.json, .gitignore, tsconfig.json, ...

Examples

//init a new project
[
  ['@eldeeb/project-creator', {
    name:"projectName",
    tsconfig:{/*tsconfig options, override project-creator's defaults*/},
    gitignore:['node_modules','dist'],
    npmignore:[],
    //and other package.json stuff
    } ]
]

Options

  • name project name, also applies by default for other builders such as @eldeeb/angular-creator if no other project name provided

  • info project & author info

  • gitignore : [] | string add or modify the default .gitignore entries

  • tsconfig tsconfig options

default options

{}