├── .clang-format ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── babel.config.json ├── demo.jpeg ├── lines-logger.png ├── package.json ├── rollup.config.js ├── src ├── index.ts └── tsconfig.json ├── tags-color-tester.html ├── test ├── index.ts └── mocha.opts ├── tsconfig.json └── tslint.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoidan/lines-logger/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoidan/lines-logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoidan/lines-logger/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoidan/lines-logger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoidan/lines-logger/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoidan/lines-logger/HEAD/babel.config.json -------------------------------------------------------------------------------- /demo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoidan/lines-logger/HEAD/demo.jpeg -------------------------------------------------------------------------------- /lines-logger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoidan/lines-logger/HEAD/lines-logger.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoidan/lines-logger/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoidan/lines-logger/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoidan/lines-logger/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoidan/lines-logger/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /tags-color-tester.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoidan/lines-logger/HEAD/tags-color-tester.html -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoidan/lines-logger/HEAD/test/index.ts -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --require ts-node/register 2 | --ui bdd 3 | test/index.ts 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoidan/lines-logger/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "gts/tslint.json" 3 | } 4 | --------------------------------------------------------------------------------