Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/another-guy/tspck
- Owner: another-guy
- Created: 2017-12-02T00:40:30.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-21T04:53:21.000Z (about 7 years ago)
- Last Synced: 2024-11-13T19:42:39.657Z (2 months ago)
- Topics: generator, npm, npm-package, typescript
- Language: TypeScript
- Size: 56.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```