From 71a787bc3029b178b97a3fed055f23e0bb50a00f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vlado=20Te=C5=A1anovi=C4=87?= Date: Fri, 25 Nov 2016 22:34:56 +0100 Subject: [PATCH] removed references for typings, fixes travis, improved readme --- .travis.yml | 2 +- README.md | 10 ++++------ package.json | 23 +++++++++++------------ 3 files changed, 16 insertions(+), 19 deletions(-) diff --git a/.travis.yml b/.travis.yml index 33d233c7..3b500d7e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,4 +2,4 @@ language: node_js node_js: - "6" - "5" -script: npm run typings && npm run tsc +script: npm run tsc diff --git a/README.md b/README.md index 972be948..3757862f 100644 --- a/README.md +++ b/README.md @@ -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

@@ -27,8 +27,6 @@ npm install ng-semantic --save Install `ng-semantic` and `jQuery` ```bash -npm install ng-semantic --save - npm install jquery --save ``` @@ -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 @@ -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) @@ -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 diff --git a/package.json b/package.json index 27a060fd..e48121ee 100644 --- a/package.json +++ b/package.json @@ -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\" ", @@ -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", @@ -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" }