Skip to content

Commit

Permalink
Adding code and improving README
Browse files Browse the repository at this point in the history
  • Loading branch information
dtromblee committed Apr 3, 2019
1 parent c518a9d commit b9fe5cd
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
# angular-simple-logger-light
Shim for angular-simple-logger that points to light version (doesn't require angular.js explicitly)

### Installation

`npm install angular-simple-logger-light`

### Documentation

See the [Angular Simple Logger Page](https://github.com/nmccready/angular-simple-logger)
1 change: 1 addition & 0 deletions angular-simple-logger-light.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('../angular-simple-logger/dist/angular-simple-logger.light'); // Presupposes node_module structure
18 changes: 18 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "angular-simple-logger-light",
"version": "1.0.0",
"description": "Wrapper for angular-simple-logger that points to light version (doesn't require angular.js explicitly)",
"main": "angular-simple-logger-light.js",
"scripts": {
"test": "test"
},
"keywords": [
"angular"
],
"author": "dtromblee",
"license": "ISC",
"dependencies": {
"angular-simple-logger": "~0.1.7"
}
}

0 comments on commit b9fe5cd

Please sign in to comment.