An open API service indexing awesome lists of open source software.

https://github.com/horacehylee/starter-cli-typescript

Cli starter kit using Typescript and Webpack
https://github.com/horacehylee/starter-cli-typescript

Last synced: over 1 year ago
JSON representation

Cli starter kit using Typescript and Webpack

Awesome Lists containing this project

README

          

# Cli Starter Typescript

## Usage
```
# --depth 1 removes all but one .git commit history
git clone --depth=1 https://github.com/horacehylee/starter-cli-typescript.git

# change directory to your project folder
cd

# remove .git folder
rm -r .git

# development
npm run serve

# build
npm run build

# test
npm run test
```

## Change tool name
```typescript
// src/index.ts
const scriptName = "__tool_name__";
```

```js
//
{
"name": "starter-cli-typescript",
...
"bin": {
"__tool_name__": "./build/main.js"
},
}
```

## License

MIT © [Horace Lee](https://github.com/horacehylee)