Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/another-guy/tspck

TypeScript package generator
https://github.com/another-guy/tspck

generator npm npm-package typescript

Last synced: about 2 months ago
JSON representation

TypeScript package generator

Awesome Lists containing this project

README

        

# tspck

## Dev notes

### Main recompilation command

```sh
npm run clean-compile
```

### Rebuild from scratch and smoke test

```sh
rm -rf ./bin && tsc && node ./bin/tspck.js help && node ./bin/tspck.js help init
```

### Publish package

Make sure to replace program version everywhere, not just in `package.json`.

```sh
rm -rf ./bin && tsc && npm publish
```

### Global package install and test

```sh
npm install -g [email protected]

tspck help && tspck help init
```