rfc-log-levels
Advanced tools
Comparing version 3.0.0 to 3.1.0-next.1589185872.e1ef058c7835534a2c8da8dd2dcd9fa4709d298e
# History | ||
## v3.1.0 2020 May 11 | ||
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation) | ||
## v3.0.0 2020 May 8 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "rfc-log-levels", | ||
"version": "3.0.0", | ||
"version": "3.1.0-next.1589185872.e1ef058c7835534a2c8da8dd2dcd9fa4709d298e", | ||
"description": "A map of log level aliases matched to their numeric values. Follows the RFC Standard.", | ||
@@ -62,3 +62,7 @@ "homepage": "https://github.com/bevry/rfc-log-levels", | ||
"wishlistURL": "https://bevry.me/wishlist", | ||
"travisTLD": "com" | ||
"travisTLD": "com", | ||
"githubUsername": "bevry", | ||
"githubRepository": "rfc-log-levels", | ||
"githubSlug": "bevry/rfc-log-levels", | ||
"npmPackageName": "rfc-log-levels" | ||
} | ||
@@ -69,6 +73,6 @@ }, | ||
"maintainers": [ | ||
"Benjamin Lupton (http://balupton.com)" | ||
"Benjamin Lupton (https://github.com/balupton)" | ||
], | ||
"contributors": [ | ||
"Benjamin Lupton (http://balupton.com)" | ||
"Benjamin Lupton (https://github.com/balupton)" | ||
], | ||
@@ -97,26 +101,26 @@ "bugs": { | ||
{ | ||
"description": "TypeScript compiled against ES2019 for web browsers with Import for modules", | ||
"directory": "edition-browsers", | ||
"description": "TypeScript compiled against ESNext for Node.js with Require for modules", | ||
"directory": "edition-esnext", | ||
"entry": "index.js", | ||
"tags": [ | ||
"javascript", | ||
"import" | ||
"esnext", | ||
"require" | ||
], | ||
"engines": { | ||
"node": false, | ||
"browsers": "defaults" | ||
"node": "10 || 12 || 13 || 14", | ||
"browsers": false | ||
} | ||
}, | ||
{ | ||
"description": "TypeScript compiled against ESNext for Node.js with Require for modules", | ||
"directory": "edition-esnext", | ||
"description": "TypeScript compiled against ES2019 for web browsers with Import for modules", | ||
"directory": "edition-browsers", | ||
"entry": "index.js", | ||
"tags": [ | ||
"javascript", | ||
"esnext", | ||
"require" | ||
"import" | ||
], | ||
"engines": { | ||
"node": "10 || 12 || 13 || 14", | ||
"browsers": false | ||
"node": false, | ||
"browsers": "defaults" | ||
} | ||
@@ -131,13 +135,13 @@ } | ||
"devDependencies": { | ||
"@bevry/update-contributors": "^1.0.1", | ||
"@bevry/update-contributors": "^1.4.0", | ||
"@typescript-eslint/eslint-plugin": "^2.31.0", | ||
"@typescript-eslint/parser": "^2.31.0", | ||
"assert-helpers": "^6.2.0", | ||
"eslint": "^6.8.0", | ||
"eslint": "^7.0.0", | ||
"eslint-config-bevry": "^3.4.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-prettier": "^3.1.3", | ||
"kava": "^4.4.0", | ||
"kava": "^5.0.0", | ||
"prettier": "^2.0.5", | ||
"projectz": "^1.19.1", | ||
"projectz": "^2.1.0", | ||
"surge": "^0.21.3", | ||
@@ -173,4 +177,4 @@ "typedoc": "^0.17.6", | ||
"our:verify:module": "npx valid-module", | ||
"our:verify:prettier": "prettier --write .", | ||
"our:verify:typescript": "tsc --noEmit --project tsconfig.json", | ||
"our:verify:prettier": "npx prettier --write .", | ||
"our:verify:typescript": "npx tsc --noEmit --project tsconfig.json", | ||
"test": "node ./edition-esnext/test.js" | ||
@@ -177,0 +181,0 @@ }, |
@@ -67,3 +67,3 @@ <!-- TITLE/ --> | ||
<script type="module"> | ||
import pkg from '//cdn.pika.dev/rfc-log-levels/^3.0.0' | ||
import pkg from '//cdn.pika.dev/rfc-log-levels/^3.1.0' | ||
</script> | ||
@@ -76,3 +76,3 @@ ``` | ||
<script type="module"> | ||
import pkg from '//unpkg.com/rfc-log-levels@^3.0.0' | ||
import pkg from '//unpkg.com/rfc-log-levels@^3.1.0' | ||
</script> | ||
@@ -85,3 +85,3 @@ ``` | ||
<script type="module"> | ||
import pkg from '//dev.jspm.io/rfc-log-levels@3.0.0' | ||
import pkg from '//dev.jspm.io/rfc-log-levels@3.1.0' | ||
</script> | ||
@@ -95,5 +95,5 @@ ``` | ||
<ul><li><code>rfc-log-levels/source/index.ts</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> source code with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li> | ||
<li><code>rfc-log-levels/edition-browsers/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against <a href="https://en.wikipedia.org/wiki/ECMAScript#10th_Edition_-_ECMAScript_2019" title="ECMAScript ES2019">ES2019</a> for web browsers with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li> | ||
<li><code>rfc-log-levels</code> aliases <code>rfc-log-levels/edition-esnext/index.js</code></li> | ||
<li><code>rfc-log-levels/edition-esnext/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li></ul> | ||
<li><code>rfc-log-levels/edition-esnext/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li> | ||
<li><code>rfc-log-levels/edition-browsers/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against <a href="https://en.wikipedia.org/wiki/ECMAScript#10th_Edition_-_ECMAScript_2019" title="ECMAScript ES2019">ES2019</a> for web browsers with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li></ul> | ||
@@ -129,3 +129,3 @@ <!-- /INSTALL --> | ||
<ul><li><a href="http://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/rfc-log-levels/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/rfc-log-levels">view contributions</a></li></ul> | ||
<ul><li><a href="https://github.com/balupton">Benjamin Lupton</a> — <a href="https://github.com/bevry/rfc-log-levels/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/rfc-log-levels">view contributions</a></li></ul> | ||
@@ -150,4 +150,3 @@ <h3>Sponsors</h3> | ||
<ul><li><a href="http://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/rfc-log-levels/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/rfc-log-levels">view contributions</a></li> | ||
<li><a href="http://github.com/apps/dependabot-preview">dependabot-preview[bot]</a> — <a href="https://github.com/bevry/rfc-log-levels/commits?author=dependabot-preview[bot]" title="View the GitHub contributions of dependabot-preview[bot] on repository bevry/rfc-log-levels">view contributions</a></li></ul> | ||
<ul><li><a href="https://github.com/balupton">Benjamin Lupton</a> — <a href="https://github.com/bevry/rfc-log-levels/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/rfc-log-levels">view contributions</a></li></ul> | ||
@@ -154,0 +153,0 @@ <a href="https://github.com/bevry/rfc-log-levels/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a> |
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
28841
1
165