caterpillar
Advanced tools
Comparing version 6.1.0 to 6.2.0-next.1597692787.1458a437136cb698bfa23aefd52b98b9162c183c
@@ -7,7 +7,7 @@ import { __ as __fdPolyfill } from 'https://deno.land/x/dirname/mod.ts' | ||
LevelsMap, | ||
} from 'https://unpkg.com/rfc-log-levels@^3.11.0/edition-deno/index.ts' | ||
} from 'https://unpkg.com/rfc-log-levels@^3.12.0/edition-deno/index.ts' | ||
import getCurrentLine, { | ||
LineOffset, | ||
LineInfo, | ||
} from 'https://unpkg.com/get-current-line@^5.13.0/edition-deno/index.ts' | ||
} from 'https://unpkg.com/get-current-line@^5.14.0/edition-deno/index.ts' | ||
import { Transform } from './transform.ts' | ||
@@ -14,0 +14,0 @@ |
// Imports | ||
import { LogEntry } from '../logger.ts' | ||
import { Transform } from '../transform.ts' | ||
import { inspect } from 'https://raw.githubusercontent.com/denoland/deno/c5d3385203acaca4a3c63b2270fb92571f4b099c/std/node/util.ts' | ||
import * as ansi from 'https://unpkg.com/@bevry/ansi@^1.2.0/edition-deno/index.ts' | ||
import { inspect } from 'https://deno.land/std/node/util.ts' | ||
import * as ansi from 'https://unpkg.com/@bevry/ansi@^1.3.0/edition-deno/index.ts' | ||
@@ -7,0 +7,0 @@ /** |
# History | ||
## v6.2.0 2020 August 18 | ||
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation) | ||
## v6.1.0 2020 August 4 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"title": "Caterpillar", | ||
"name": "caterpillar", | ||
"version": "6.1.0", | ||
"version": "6.2.0-next.1597692787.1458a437136cb698bfa23aefd52b98b9162c183c", | ||
"description": "Caterpillar is the ultimate logging system for Deno, Node.js, and Web Browsers. Log levels are implemented to the RFC standard. Log entries can be filtered and piped to various streams, including coloured output to the terminal, the browser's console, and debug files. You can even write your own transforms.", | ||
@@ -177,29 +177,28 @@ "homepage": "https://github.com/bevry/caterpillar", | ||
}, | ||
"deno": "edition-deno/index.ts", | ||
"browser": "edition-browsers/index.js", | ||
"module": "edition-browsers/index.js", | ||
"dependencies": { | ||
"@bevry/ansi": "^1.2.0", | ||
"editions": "^3.15.0", | ||
"get-current-line": "^5.13.0", | ||
"rfc-log-levels": "^3.11.0" | ||
"@bevry/ansi": "^1.3.0", | ||
"editions": "^4.0.0", | ||
"get-current-line": "^5.14.0", | ||
"rfc-log-levels": "^3.12.0" | ||
}, | ||
"devDependencies": { | ||
"@bevry/update-contributors": "^1.14.0", | ||
"@typescript-eslint/eslint-plugin": "^3.8.0", | ||
"@typescript-eslint/parser": "^3.8.0", | ||
"@bevry/update-contributors": "^1.15.0", | ||
"@typescript-eslint/eslint-plugin": "^3.9.1", | ||
"@typescript-eslint/parser": "^3.9.1", | ||
"assert-helpers": "^6.19.0", | ||
"eslint": "^7.6.0", | ||
"eslint-config-bevry": "^3.17.0", | ||
"eslint": "^7.7.0", | ||
"eslint-config-bevry": "^3.18.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"kava": "^5.9.0", | ||
"make-deno-edition": "^0.15.0", | ||
"kava": "^5.10.0", | ||
"make-deno-edition": "^1.0.0", | ||
"prettier": "^2.0.5", | ||
"projectz": "^2.12.0", | ||
"projectz": "^2.14.0", | ||
"surge": "^0.21.6", | ||
"typedoc": "^0.17.8", | ||
"typedoc": "^0.18.0", | ||
"typescript": "^3.9.7", | ||
"valid-directory": "^2.7.0", | ||
"valid-module": "^1.11.0" | ||
"valid-directory": "^3.0.0", | ||
"valid-module": "^1.12.0" | ||
}, | ||
@@ -248,3 +247,4 @@ "scripts": { | ||
"singleQuote": true | ||
} | ||
}, | ||
"deno": "edition-deno/index.ts" | ||
} |
@@ -61,10 +61,10 @@ <!-- TITLE/ --> | ||
``` typescript | ||
import * as pkg from 'https://unpkg.com/caterpillar@^6.1.0/edition-deno/index.ts' | ||
import * as pkg from 'https://unpkg.com/caterpillar@^6.2.0/edition-deno/index.ts' | ||
``` | ||
<a href="https://www.pika.dev/cdn" title="100% Native ES Modules CDN"><h3>pika</h3></a> | ||
<a href="https://www.skypack.dev" title="Skypack is a JavaScript Delivery Network for modern web apps"><h3>Skypack</h3></a> | ||
``` html | ||
<script type="module"> | ||
import * as pkg from '//cdn.pika.dev/caterpillar/^6.1.0' | ||
import * as pkg from '//cdn.skypack.dev/caterpillar@^6.2.0' | ||
</script> | ||
@@ -77,3 +77,3 @@ ``` | ||
<script type="module"> | ||
import * as pkg from '//unpkg.com/caterpillar@^6.1.0' | ||
import * as pkg from '//unpkg.com/caterpillar@^6.2.0' | ||
</script> | ||
@@ -86,3 +86,3 @@ ``` | ||
<script type="module"> | ||
import * as pkg from '//dev.jspm.io/caterpillar@6.1.0' | ||
import * as pkg from '//dev.jspm.io/caterpillar@6.2.0' | ||
</script> | ||
@@ -89,0 +89,0 @@ ``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
153392
1
+ Addededitions@4.2.0(transitive)
- Removededitions@3.16.0(transitive)
Updated@bevry/ansi@^1.3.0
Updatededitions@^4.0.0
Updatedget-current-line@^5.14.0
Updatedrfc-log-levels@^3.12.0