Skip to content

Commit b9fe5cd

Browse files
committed
Adding code and improving README
1 parent c518a9d commit b9fe5cd

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
11
# angular-simple-logger-light
22
Shim for angular-simple-logger that points to light version (doesn't require angular.js explicitly)
3+
4+
### Installation
5+
6+
`npm install angular-simple-logger-light`
7+
8+
### Documentation
9+
10+
See the [Angular Simple Logger Page](https://github.com/nmccready/angular-simple-logger)

angular-simple-logger-light.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require('../angular-simple-logger/dist/angular-simple-logger.light'); // Presupposes node_module structure

package.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "angular-simple-logger-light",
3+
"version": "1.0.0",
4+
"description": "Wrapper for angular-simple-logger that points to light version (doesn't require angular.js explicitly)",
5+
"main": "angular-simple-logger-light.js",
6+
"scripts": {
7+
"test": "test"
8+
},
9+
"keywords": [
10+
"angular"
11+
],
12+
"author": "dtromblee",
13+
"license": "ISC",
14+
"dependencies": {
15+
"angular-simple-logger": "~0.1.7"
16+
}
17+
}
18+

0 commit comments

Comments
 (0)