https://github.com/naivefun/karma-webpack-typescript
A simple CLI starter for karma/webpack/typescript
https://github.com/naivefun/karma-webpack-typescript
cli karma npm typescript webpack webpack2
Last synced: 4 months ago
JSON representation
A simple CLI starter for karma/webpack/typescript
- Host: GitHub
- URL: https://github.com/naivefun/karma-webpack-typescript
- Owner: naivefun
- License: mit
- Created: 2017-03-15T12:58:12.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-16T02:26:45.000Z (over 9 years ago)
- Last Synced: 2025-02-11T22:57:14.237Z (over 1 year ago)
- Topics: cli, karma, npm, typescript, webpack, webpack2
- Language: JavaScript
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# karma-webpack-typescript
A simple CLI starter for karma/webpack/typescript
## Get Started
### Start Karma
```
npm test
```
You should see the mocha report for the example tests.
Create your own tests in `test` directory and source code in `src` directory. Karma will watch changes and re-run test cases on the fly.
### Publish
- create an account on https://www.npmjs.com/
- login in terminal with `npm login`
- run `npm publish`
`examples` directory contains an example of consumption of `karma-webpack-typescript` npm package.
## TO-DO
- library target (UMD by default)
- better webpack bundle
- ...