Skip to content

Commit

Permalink
feat: add the eggs files
Browse files Browse the repository at this point in the history
  • Loading branch information
TeoDev1611 committed Jan 16, 2022
1 parent 2b5ecc4 commit 2d8e52e
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .eggignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.nlsp-settings/**
.github/**
.test/**
.examples/**
CODE_OF_CONDUCT.md
LICENSE
.editorconfig
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ and improve some features
Basic logging out:

```ts
import { Dlog } from 'https://deno.land/dlog@1.2/mod.ts';
import { Dlog } from 'https://x.nest.land/dlog@2.0.0/mod.ts';

const logger = new Dlog('Test Dlog');

Expand All @@ -35,7 +35,7 @@ logger.debug('helloooo from debug');
File log support

```ts
import GLogger from '../mod.ts';
import { Dlog } from 'https://x.nest.land/[email protected]/mod.ts';

const logger = new Dlog('Test Dlog', true, './test');

Expand Down
21 changes: 21 additions & 0 deletions egg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "https://x.nest.land/[email protected]/src/schema.json",
"name": "dlog",
"entry": "./mod.ts",
"description": "A simple deno logger :p",
"homepage": "https://github.com/dpmland/dlog",
"version": "2.0.0",
"releaseType": "major",
"unstable": true,
"unlisted": false,
"checkFormat": "deno fmt --check -c deno.json",
"checkTest": " ",
"files": [
"./mod.ts",
"./deps.ts",
"./README.md",
"./deno.json"
],
"check": true,
"ignore": []
}
1 change: 1 addition & 0 deletions mod_test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('xd');

0 comments on commit 2d8e52e

Please sign in to comment.