Skip to content

Commit

Permalink
removed references for typings, fixes travis, improved readme
Browse files Browse the repository at this point in the history
  • Loading branch information
vladotesanovic committed Nov 25, 2016
1 parent fb07908 commit 71a787b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -2,4 +2,4 @@ language: node_js
node_js:
- "6"
- "5"
script: npm run typings && npm run tsc
script: npm run tsc
10 changes: 4 additions & 6 deletions README.md
Expand Up @@ -2,7 +2,7 @@
[![Dependency Status](https://david-dm.org/vladotesanovic/ngSemantic.svg)](https://david-dm.org/vladotesanovic/ngSemantic)
[![Build Status](https://travis-ci.org/vladotesanovic/ngSemantic.svg?branch=master)](https://travis-ci.org/vladotesanovic/ngSemantic)
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/hyperium/hyper/master/LICENSE)
[![Support via PayPal](https://cdn.rawgit.com/twolfson/paypal-github-button/1.0.0/dist/button.svg)](https://www.paypal.me/ngsemantic)
[![Support via PayPal](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/ngsemantic)

# Angular2 & Semantic UI
<p align="center">
Expand All @@ -27,8 +27,6 @@ npm install ng-semantic --save

Install `ng-semantic` and `jQuery`
```bash
npm install ng-semantic --save

npm install jquery --save
```

Expand Down Expand Up @@ -85,7 +83,7 @@ export class DemoComponent {}
```
## Custom configuration

Semantic UI ( minified versions of css and js ) must be loaded
Semantic UI ( minified versions of css and js ) must be loaded in index.html

```html
<link type="text/css" rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.2/semantic.min.css">
Expand All @@ -96,7 +94,7 @@ Semantic UI ( minified versions of css and js ) must be loaded

## Support / Donations

You can support this project by donating on PayPal. If you have special needs or feature request, mail me.
If you’d like to support me developing this project you’re able to do so by donating on PayPal or if you have any special needs/ feature requests don’t hesitate to send me an email.

[![Support via PayPal](https://cdn.rawgit.com/twolfson/paypal-github-button/1.0.0/dist/button.svg)](https://www.paypal.me/ngsemantic)

Expand All @@ -112,7 +110,7 @@ git clone https://github.com/vladotesanovic/ngSemantic.git
cd ngSemantic

# install dependencies
npm install && npm run typings
npm install

# compile demo project
npm start
Expand Down
23 changes: 11 additions & 12 deletions package.json
Expand Up @@ -7,7 +7,6 @@
"demo:lint": "tslint -c ./tslint.json 'demo/app/**/*.ts'",
"library:lint": "tslint -c ./tslint.json 'ng-semantic/**/*.ts'",
"demo:server": "node server.js",
"typings": "typings install",
"tsc": "tsc",
"tsc:w": "tsc -w -p './demo'",
"start": "tsc && concurrently \"tsc -w\" \"npm run tsc:w\" \"lite-server -c dev.config.js\" ",
Expand Down Expand Up @@ -36,17 +35,17 @@
"homepage": "https://ng-semantic.herokuapp.com/",
"license": "MIT",
"devDependencies": {
"@angular/common": "2.0.1",
"@angular/compiler": "2.0.1",
"@angular/core": "2.0.1",
"@angular/forms": "2.0.1",
"@angular/http": "2.0.1",
"@angular/platform-browser": "2.0.1",
"@angular/platform-browser-dynamic": "2.0.1",
"@angular/router": "3.0.0",
"@angular/upgrade": "2.0.1",
"@angular/common": "^2.0.1",
"@angular/compiler": "^2.0.1",
"@angular/core": "^2.0.1",
"@angular/forms": "^2.0.1",
"@angular/http": "^2.0.1",
"@angular/platform-browser": "^2.0.1",
"@angular/platform-browser-dynamic": "^2.0.1",
"@angular/router": "^3.0.0",
"@angular/upgrade": "^2.0.1",
"angular2-in-memory-web-api": "0.0.20",
"systemjs": "0.19.27",
"systemjs": "^0.19.27",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.12",
Expand All @@ -56,7 +55,7 @@
"systemjs-builder": "^0.15.26",
"tslint": "^3.14.0",
"typescript": "^2.0.2",
"codelyzer": "1.0.0-beta.0",
"codelyzer": "1.0.0-beta.4",
"@types/node": "^6.0.46",
"@types/jasmine": "^2.5.36"
}
Expand Down

0 comments on commit 71a787b

Please sign in to comment.