├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src ├── enum │ └── log-levels.ts ├── index.ts ├── interfaces │ ├── logger-options.ts │ └── logger.ts ├── lib │ └── types │ │ └── index.d.ts └── vue-logger.ts ├── tests ├── config.test.ts ├── install.test.ts └── output.test.ts ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/package.json -------------------------------------------------------------------------------- /src/enum/log-levels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/src/enum/log-levels.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces/logger-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/src/interfaces/logger-options.ts -------------------------------------------------------------------------------- /src/interfaces/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/src/interfaces/logger.ts -------------------------------------------------------------------------------- /src/lib/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/src/lib/types/index.d.ts -------------------------------------------------------------------------------- /src/vue-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/src/vue-logger.ts -------------------------------------------------------------------------------- /tests/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/tests/config.test.ts -------------------------------------------------------------------------------- /tests/install.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/tests/install.test.ts -------------------------------------------------------------------------------- /tests/output.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/tests/output.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinkames/vuejs-logger/HEAD/tslint.json --------------------------------------------------------------------------------