├── .editorconfig ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── benchmark ├── .gitignore ├── bench.js └── package.json ├── code-of-conduct.md ├── package.json ├── rollup.config.ts ├── src ├── cli.ts ├── smol-logger.ts └── utils.ts ├── test └── smol-logger.test.ts ├── tools ├── gh-pages-publish.ts └── semantic-release-prepare.ts ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | bench.txt -------------------------------------------------------------------------------- /benchmark/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/benchmark/bench.js -------------------------------------------------------------------------------- /benchmark/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/benchmark/package.json -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/rollup.config.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/smol-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/src/smol-logger.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/smol-logger.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/test/smol-logger.test.ts -------------------------------------------------------------------------------- /tools/gh-pages-publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/tools/gh-pages-publish.ts -------------------------------------------------------------------------------- /tools/semantic-release-prepare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/tools/semantic-release-prepare.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-ai/logger/HEAD/tslint.json --------------------------------------------------------------------------------