diff --git a/README.md b/README.md index bc5fa21..5f89467 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/angular-simple-logger-light.js b/angular-simple-logger-light.js new file mode 100644 index 0000000..015bd0f --- /dev/null +++ b/angular-simple-logger-light.js @@ -0,0 +1 @@ +module.exports = require('../angular-simple-logger/dist/angular-simple-logger.light'); // Presupposes node_module structure diff --git a/package.json b/package.json new file mode 100644 index 0000000..8e0acbd --- /dev/null +++ b/package.json @@ -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" + } +} +