https://github.com/another-guy/tspck
TypeScript package generator
https://github.com/another-guy/tspck
generator npm npm-package typescript
Last synced: 6 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-21T04:53:21.000Z (over 8 years ago)
- Last Synced: 2025-02-22T22:47:54.247Z (over 1 year 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 tspck@1.0.0-alphaX
tspck help && tspck help init
```