├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmignore ├── .release-it.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── biome.json ├── example ├── .editorconfig ├── .gitignore ├── .prettierrc ├── package-lock.json ├── package.json ├── src │ └── index.ts ├── tsconfig.json └── wrangler.toml ├── package.json ├── src └── index.ts ├── tests └── monotonictimestamp.spec.ts ├── tsconfig.json └── tsup.config.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | example 2 | node_modules 3 | package-lock.json 4 | src -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/.release-it.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/biome.json -------------------------------------------------------------------------------- /example/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/example/.editorconfig -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/example/.prettierrc -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/example/src/index.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/example/wrangler.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/src/index.ts -------------------------------------------------------------------------------- /tests/monotonictimestamp.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/tests/monotonictimestamp.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baselime/edge-logger/HEAD/tsup.config.json --------------------------------------------------------------------------------