From 8cf34eb6159bdda76ba50f1db49d831f330507bc Mon Sep 17 00:00:00 2001 From: Kourosh Alasti Date: Sat, 26 Oct 2024 17:06:48 -0700 Subject: [PATCH 1/2] chore(readme): Fix Formatting --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5ddfe45..096c4c0 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ [![npm version](https://badge.fury.io/js/@kourosh-alasti%2Flogger.svg)](https://badge.fury.io/js/@kourosh-alasti/logger) -[Examples](./examples/default.ts) •[Documentation](https://github.com/kourosh-alasti/logalot/wiki) •[Changelog](./CHANGELOG.md) •[License](./LICENSE) +[Examples](./examples/default.ts) • [Documentation](https://github.com/kourosh-alasti/logalot/wiki) • [Changelog](./CHANGELOG.md) • [License](./LICENSE) -A TypeScript-first logging library +A Zero Dependency TypeScript logging library
configured preset
From e5eba640cfd7465465c3bda8109fd4bbe65070c0 Mon Sep 17 00:00:00 2001 From: Kourosh Alasti Date: Sat, 26 Oct 2024 17:09:23 -0700 Subject: [PATCH 2/2] release v1.0.2 Primarily a documentation release --- dist/index.js | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/dist/index.js b/dist/index.js index 042a1aa..ec01a21 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1,13 +1,11 @@ -'use strict'; -var __importDefault = - (this && this.__importDefault) || - function (mod) { - return mod && mod.__esModule ? mod : { default: mod }; - }; -Object.defineProperty(exports, '__esModule', { value: true }); +"use strict"; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); exports.createLogger = exports.addColorToText = void 0; -const index_ts_1 = __importDefault(require('./logger/index.ts')); -const index_ts_2 = require('./utils/index.ts'); +const index_ts_1 = __importDefault(require("./logger/index.ts")); +const index_ts_2 = require("./utils/index.ts"); const createLogger = index_ts_1.default; exports.createLogger = createLogger; const addColorToText = index_ts_2.colorize;