├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── action ├── index.d.ts └── index.js ├── creator-logger ├── __snapshots__ │ └── index.test.ts.snap ├── index.d.ts ├── index.js ├── index.test.ts └── types.ts ├── demo ├── index.html └── index.ts ├── eslint.config.js ├── img ├── dark.png └── light.png ├── index.d.ts ├── index.js ├── logger ├── __snapshots__ │ └── index.test.ts.snap ├── errors.ts ├── index.d.ts ├── index.js ├── index.test.ts └── types.ts ├── package.json ├── pnpm-lock.yaml ├── printer ├── __snapshots__ │ └── index.test.ts.snap ├── index.d.ts ├── index.js └── index.test.ts ├── test └── index.ts ├── tsconfig.json └── vitest.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | buy_me_a_coffee: euaaaio 2 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/README.md -------------------------------------------------------------------------------- /action/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/action/index.d.ts -------------------------------------------------------------------------------- /action/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/action/index.js -------------------------------------------------------------------------------- /creator-logger/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/creator-logger/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /creator-logger/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/creator-logger/index.d.ts -------------------------------------------------------------------------------- /creator-logger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/creator-logger/index.js -------------------------------------------------------------------------------- /creator-logger/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/creator-logger/index.test.ts -------------------------------------------------------------------------------- /creator-logger/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/creator-logger/types.ts -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/demo/index.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/eslint.config.js -------------------------------------------------------------------------------- /img/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/img/dark.png -------------------------------------------------------------------------------- /img/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/img/light.png -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/index.js -------------------------------------------------------------------------------- /logger/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/logger/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /logger/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/logger/errors.ts -------------------------------------------------------------------------------- /logger/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/logger/index.d.ts -------------------------------------------------------------------------------- /logger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/logger/index.js -------------------------------------------------------------------------------- /logger/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/logger/index.test.ts -------------------------------------------------------------------------------- /logger/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/logger/types.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /printer/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/printer/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /printer/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/printer/index.d.ts -------------------------------------------------------------------------------- /printer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/printer/index.js -------------------------------------------------------------------------------- /printer/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/printer/index.test.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/test/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanostores/logger/HEAD/vitest.config.ts --------------------------------------------------------------------------------