├── .bowerrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── bower.json ├── coffeelint.json ├── dist ├── angular-simple-logger.js ├── angular-simple-logger.light.js ├── angular-simple-logger.light.min.js ├── angular-simple-logger.min.js ├── browser.js ├── index.js └── index.light.js ├── example └── index.html ├── gulp ├── coffeeOptions.coffee ├── common │ └── save.coffee ├── index.coffee └── tasks │ ├── browserify.coffee │ ├── build.coffee │ ├── bump.coffee │ ├── clean.coffee │ ├── dist.coffee │ ├── index.coffee │ ├── spec.coffee │ ├── tag.coffee │ └── wrap.coffee ├── gulpfile.coffee ├── index.html ├── karma.browserify.conf.coffee ├── karma.conf.coffee ├── karma.light.conf.coffee ├── package.js ├── package.json ├── params.json ├── scripts ├── clean └── publish ├── spec ├── bootstrap.browserify.js ├── debug.spec.coffee ├── logger.arrayExt.spec.coffee └── logger.spec.coffee ├── src ├── logger.coffee ├── module.coffee └── wrap │ ├── contents │ ├── debugCommonJS.js │ └── debugLight.js │ ├── debug.js │ └── dist.js └── stylesheets ├── github-light.css ├── normalize.css └── stylesheet.css /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/.bowerrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/bower.json -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/coffeelint.json -------------------------------------------------------------------------------- /dist/angular-simple-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/dist/angular-simple-logger.js -------------------------------------------------------------------------------- /dist/angular-simple-logger.light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/dist/angular-simple-logger.light.js -------------------------------------------------------------------------------- /dist/angular-simple-logger.light.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/dist/angular-simple-logger.light.min.js -------------------------------------------------------------------------------- /dist/angular-simple-logger.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/dist/angular-simple-logger.min.js -------------------------------------------------------------------------------- /dist/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/dist/browser.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/dist/index.light.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/example/index.html -------------------------------------------------------------------------------- /gulp/coffeeOptions.coffee: -------------------------------------------------------------------------------- 1 | module.exports = 2 | bare: true 3 | -------------------------------------------------------------------------------- /gulp/common/save.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/gulp/common/save.coffee -------------------------------------------------------------------------------- /gulp/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/gulp/index.coffee -------------------------------------------------------------------------------- /gulp/tasks/browserify.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/gulp/tasks/browserify.coffee -------------------------------------------------------------------------------- /gulp/tasks/build.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/gulp/tasks/build.coffee -------------------------------------------------------------------------------- /gulp/tasks/bump.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/gulp/tasks/bump.coffee -------------------------------------------------------------------------------- /gulp/tasks/clean.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/gulp/tasks/clean.coffee -------------------------------------------------------------------------------- /gulp/tasks/dist.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/gulp/tasks/dist.coffee -------------------------------------------------------------------------------- /gulp/tasks/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/gulp/tasks/index.coffee -------------------------------------------------------------------------------- /gulp/tasks/spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/gulp/tasks/spec.coffee -------------------------------------------------------------------------------- /gulp/tasks/tag.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/gulp/tasks/tag.coffee -------------------------------------------------------------------------------- /gulp/tasks/wrap.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/gulp/tasks/wrap.coffee -------------------------------------------------------------------------------- /gulpfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/gulpfile.coffee -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/index.html -------------------------------------------------------------------------------- /karma.browserify.conf.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/karma.browserify.conf.coffee -------------------------------------------------------------------------------- /karma.conf.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/karma.conf.coffee -------------------------------------------------------------------------------- /karma.light.conf.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/karma.light.conf.coffee -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/package.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/package.json -------------------------------------------------------------------------------- /params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/params.json -------------------------------------------------------------------------------- /scripts/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/scripts/clean -------------------------------------------------------------------------------- /scripts/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/scripts/publish -------------------------------------------------------------------------------- /spec/bootstrap.browserify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/spec/bootstrap.browserify.js -------------------------------------------------------------------------------- /spec/debug.spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/spec/debug.spec.coffee -------------------------------------------------------------------------------- /spec/logger.arrayExt.spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/spec/logger.arrayExt.spec.coffee -------------------------------------------------------------------------------- /spec/logger.spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/spec/logger.spec.coffee -------------------------------------------------------------------------------- /src/logger.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/src/logger.coffee -------------------------------------------------------------------------------- /src/module.coffee: -------------------------------------------------------------------------------- 1 | angular.module('nemLogging',[]) 2 | -------------------------------------------------------------------------------- /src/wrap/contents/debugCommonJS.js: -------------------------------------------------------------------------------- 1 | ourDebug = require('debug'); 2 | -------------------------------------------------------------------------------- /src/wrap/contents/debugLight.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/wrap/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/src/wrap/debug.js -------------------------------------------------------------------------------- /src/wrap/dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/src/wrap/dist.js -------------------------------------------------------------------------------- /stylesheets/github-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/stylesheets/github-light.css -------------------------------------------------------------------------------- /stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/stylesheets/normalize.css -------------------------------------------------------------------------------- /stylesheets/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmccready/angular-simple-logger/HEAD/stylesheets/stylesheet.css --------------------------------------------------------------------------------