-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleaned up project a bit and renamed to ngx
- Loading branch information
Showing
9 changed files
with
267 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,26 @@ | ||
# Node | ||
node_modules/* | ||
npm-debug.log | ||
|
||
# TypeScript | ||
*.js | ||
*.map | ||
*.d.ts | ||
|
||
# JetBrains | ||
.idea | ||
.project | ||
.settings | ||
.idea/* | ||
*.iml | ||
node_modules | ||
|
||
# VS Code | ||
.vscode/* | ||
|
||
# Windows | ||
Thumbs.db | ||
Desktop.ini | ||
|
||
# Mac | ||
.DS_Store | ||
**/.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Node | ||
node_modules/* | ||
npm-debug.log | ||
|
||
# DO NOT IGNORE TYPESCRIPT FILES FOR NPM | ||
# TypeScript | ||
# *.js | ||
# *.map | ||
# *.d.ts | ||
|
||
# JetBrains | ||
.idea | ||
.project | ||
.settings | ||
.idea/* | ||
*.iml | ||
|
||
# VS Code | ||
.vscode/* | ||
|
||
# Windows | ||
Thumbs.db | ||
Desktop.ini | ||
|
||
# Mac | ||
.DS_Store | ||
**/.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
language: node_js | ||
sudo: false | ||
node_js: | ||
- '4.2.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,21 @@ | ||
export * from "./src/loggly-service"; | ||
export class LogglyModule {} | ||
import {NgModule, ModuleWithProviders} from '@angular/core'; | ||
import {CommonModule} from '@angular/common'; | ||
import {LogglyService} from './src/loggly.service'; | ||
|
||
export * from './src/loggly.service'; | ||
|
||
@NgModule({ | ||
imports: [ | ||
CommonModule | ||
], | ||
declarations: [], | ||
exports: [] | ||
}) | ||
export class NgxLogglyModule { | ||
static forRoot(): ModuleWithProviders { | ||
return { | ||
ngModule: NgxLogglyModule, | ||
providers: [LogglyService] | ||
}; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,51 @@ | ||
{ | ||
"name": "angular2-loggly-logger", | ||
"version": "0.0.10", | ||
"description": "Angular2 Service for logging to Loggly", | ||
"scripts": {}, | ||
"contributors": [], | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/node": "^6.0.38", | ||
"angular2-template-loader": "^0.6.0", | ||
"awesome-typescript-loader": "~3.0.0-beta.17", | ||
"css-loader": "^0.26.0", | ||
"raw-loader": "^0.5.1", | ||
"to-string-loader": "^1.1.4", | ||
"typescript": "^2.0.10", | ||
"webpack": "2.2.0-rc.3", | ||
"webpack-dev-server": "2.2.0-rc.0", | ||
"webpack-merge": "~2.3.1" | ||
"name": "ngx-loggly-logger", | ||
"version": "0.0.19", | ||
"scripts": { | ||
"build": "ngc -p tsconfig.json", | ||
"lint": "tslint src/**/*.ts", | ||
"test": "tsc && karma start", | ||
"prepublish": "tsc", | ||
"tsc": "tsc" | ||
}, | ||
"dependencies": { | ||
"@angular/common": "~2.4.1", | ||
"@angular/compiler": "~2.4.1", | ||
"@angular/core": "~2.4.1", | ||
"@angular/forms": "~2.4.1", | ||
"@angular/http": "~2.4.1", | ||
"@angular/platform-browser": "~2.4.1", | ||
"@angular/platform-browser-dynamic": "~2.4.1", | ||
"@angular/platform-server": "~2.4.1", | ||
"@angular/router": "~3.4.1", | ||
"@angular/upgrade": "~2.4.1", | ||
"core-js": "^2.4.1", | ||
"ie-shim": "^0.1.0", | ||
"ng2-cookies": "^1.0.4", | ||
"reflect-metadata": "^0.1.9", | ||
"rxjs": "~5.0.2", | ||
"zone.js": "~0.7.4" | ||
}, | ||
"keywords": [ | ||
"Angular2", | ||
"angular2-loggly", | ||
"ng2-loggly", | ||
"angular2-loggly-logger", | ||
"ng2-loggly-logger" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Tgure/angular2-loggly-logger.git" | ||
"url": "https://github.com/Tgure/ngx-loggly-logger" | ||
}, | ||
"author": { | ||
"name": "Aaron Newman", | ||
"email": "[email protected]" | ||
}, | ||
"keywords": [ | ||
"angular" | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/Tgure/angular2-loggly-logger/issues" | ||
"url": "https://github.com/Tgure/ngx-loggly-logger/issues" | ||
}, | ||
"main": "./dist/index.js", | ||
"dependencies": { | ||
"ng2-cookies": "~1.0.4" | ||
}, | ||
"devDependencies": { | ||
"@angular/common": "~2.4.8", | ||
"@angular/http": "~2.4.1", | ||
"@angular/platform-browser": "~2.4.1", | ||
"@angular/compiler": "~2.4.5", | ||
"@angular/compiler-cli": "~2.4.5", | ||
"@angular/core": "~2.4.8", | ||
"@angular/platform-server": "~2.4.5", | ||
"codelyzer": "~2.0.0", | ||
"rxjs": "~5.1.1", | ||
"tslint": "~4.4.2", | ||
"typescript": "~2.1.6", | ||
"zone.js": "~0.7.7", | ||
"@types/es6-shim": "~0.31.32", | ||
"@types/protractor": "~4.0.0", | ||
"@types/jasmine": "~2.5.40", | ||
"@types/selenium-webdriver": "~2.53.39" | ||
}, | ||
"homepage": "https://github.com/Tgure/angular2-loggly-logger#readme" | ||
"engines": { | ||
"node": ">=0.8.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,26 @@ | ||
{ | ||
"compilerOptions": { | ||
"noImplicitAny": true, | ||
"module": "commonjs", | ||
"target": "es5", | ||
"outDir": "dist", | ||
"rootDir": ".", | ||
"sourceMap": true, | ||
"target": "ES5", | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"moduleResolution": "node", | ||
"types": [ | ||
"core-js", | ||
"node" | ||
] | ||
"sourceMap": true, | ||
"declaration": true, | ||
"outDir": "./dist", | ||
"typeRoots": [ | ||
"node_modules/@types" | ||
] | ||
}, | ||
"files": [ | ||
"index.ts" | ||
], | ||
"exclude": [ | ||
"node_modules" | ||
] | ||
"node_modules", | ||
"dist", | ||
"**/*.spec.ts" | ||
], | ||
"angularCompilerOptions": { | ||
"strictMetadataEmit": true | ||
} | ||
} |
Oops, something went wrong.