Skip to content

Commit

Permalink
cleanup jspm + updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenlautier committed May 16, 2016
1 parent 1904d06 commit 78d6a25
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 102 deletions.
6 changes: 1 addition & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,9 @@ environment:
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
- npm install -g gulp jspm
- npm install -g gulp
# install modules
- npm install
- jspm --version
#- jspm config registries.github.auth %JSPM_GITHUB_AUTH_TOKEN%
#- jspm registry export github
- jspm install

# Post-install test scripts.
test_script:
Expand Down
22 changes: 4 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
"gulp-typescript": "^2.13.0",
"gulp-util": "^3.0.7",
"jasmine-core": "^2.4.1",
"jspm": "^0.16.34",
"karma": "^0.13.22",
"karma-appveyor-reporter": "^0.3.0",
"karma-chrome-launcher": "^0.2.3",
Expand All @@ -46,29 +45,16 @@
"systemjs": "^0.19.27",
"tslint": "^3.8.1",
"typescript": "^1.8.10",
"yargs": "^4.6.0"
"yargs": "^4.6.0",
"@angular/core": "^2.0.0-rc.1",
"rxjs": "5.0.0-beta.6",
"zone.js": "^0.6.12"
},
"dependencies": {},
"peerDependencies": {
"@angular/core": "^2.0.0-rc.1",
"rxjs": "5.0.0-beta.6",
"zone.js": "^0.6.12"
},
"jspm": {
"registry": "jspm",
"main": "amd/index",
"format": "amd",
"directories": {
"dist": "dist"
},
"configFile": "system.config.js",
"dependencies": {
"aurelia-logging": "npm:aurelia-logging@^1.0.0-beta.1.2.0",
"aurelia-router": "npm:aurelia-router@^1.0.0-beta.1.2.1",
"lodash": "npm:lodash@^4.0.0",
"ssv-core": "npm:ssv-core@^0.6.4"
},
"devDependencies": {}
},
"typings": "dist/typings/index.d.ts"
}
17 changes: 15 additions & 2 deletions src/logging/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
# Logger Sample

## Register providers

```ts

import {LOGGER_PROVIDERS} from "ssv-ng2-core";

// within bootstrap or AppComponent
providers: [
LOGGER_PROVIDERS
]

```

## Usage

```javascript
import {LogService, ILog} from "ssv-ng2-core";
```ts
import {LoggerFactory, ILog} from "ssv-ng2-core";

const id = "auth.service";

Expand Down
77 changes: 0 additions & 77 deletions system.config.js

This file was deleted.

0 comments on commit 78d6a25

Please sign in to comment.