Socket
Socket
Sign inDemoInstall

errlop

Package Overview
Dependencies
0
Maintainers
2
Versions
110
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.16.0 to 3.17.0

.mergify.yml

3

edition-es5/index.js

@@ -13,3 +13,4 @@ 'use strict'

function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]
for (var p in b)
if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]
}

@@ -16,0 +17,0 @@ return extendStatics(d, b)

# History
## v3.17.0 2020 September 4
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)
## v3.16.0 2020 August 18

@@ -4,0 +8,0 @@

{
"name": "errlop",
"version": "3.16.0",
"version": "3.17.0",
"description": "An extended Error class that envelops a parent error, such that the stack trace contains the causation",

@@ -14,2 +14,3 @@ "homepage": "https://github.com/bevry/errlop",

"error",
"es5",
"export-default",

@@ -87,2 +88,3 @@ "module",

"tags": [
"source",
"typescript",

@@ -98,2 +100,3 @@ "import"

"tags": [
"compiled",
"javascript",

@@ -112,2 +115,3 @@ "import"

"tags": [
"compiled",
"javascript",

@@ -124,10 +128,12 @@ "es5",

"description": "TypeScript compiled against ES5 for Node.js with Import for modules",
"directory": "edition-node-esm",
"directory": "edition-es5-esm",
"entry": "index.js",
"tags": [
"compiled",
"javascript",
"es5",
"import"
],
"engines": {
"node": true,
"node": "12 || 13 || 14",
"browsers": false

@@ -156,3 +162,3 @@ }

"node": {
"import": "./edition-node-esm/index.js",
"import": "./edition-es5-esm/index.js",
"require": "./edition-es5/index.js"

@@ -168,27 +174,27 @@ },

"devDependencies": {
"@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.7.0",
"eslint-config-bevry": "^3.18.0",
"@bevry/update-contributors": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"assert-helpers": "^7.2.0",
"eslint": "^7.8.1",
"eslint-config-bevry": "^3.19.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"kava": "^5.10.0",
"make-deno-edition": "^1.0.0",
"prettier": "^2.0.5",
"projectz": "^2.14.0",
"kava": "^5.11.0",
"make-deno-edition": "^1.1.1",
"prettier": "^2.1.1",
"projectz": "^2.15.0",
"surge": "^0.21.6",
"typedoc": "^0.18.0",
"typescript": "^3.9.7",
"valid-directory": "^3.0.0",
"valid-module": "^1.12.0"
"typedoc": "^0.19.0",
"typescript": "^4.0.2",
"valid-directory": "^3.3.0",
"valid-module": "^1.13.0"
},
"scripts": {
"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
"our:compile": "npm run our:compile:deno && npm run our:compile:edition-browsers && npm run our:compile:edition-es5 && npm run our:compile:edition-node-esm && npm run our:compile:types",
"our:compile": "npm run our:compile:deno && npm run our:compile:edition-browsers && npm run our:compile:edition-es5 && npm run our:compile:edition-es5-esm && npm run our:compile:types",
"our:compile:deno": "make-deno-edition --attempt",
"our:compile:edition-browsers": "tsc --module ESNext --target ES2019 --outDir ./edition-browsers --project tsconfig.json && ( test ! -d edition-browsers/source || ( mv edition-browsers/source edition-temp && rm -Rf edition-browsers && mv edition-temp edition-browsers ) )",
"our:compile:edition-es5": "tsc --module commonjs --target ES5 --outDir ./edition-es5 --project tsconfig.json && ( test ! -d edition-es5/source || ( mv edition-es5/source edition-temp && rm -Rf edition-es5 && mv edition-temp edition-es5 ) ) && echo '{\"type\": \"commonjs\"}' > edition-es5/package.json",
"our:compile:edition-node-esm": "tsc --module ESNext --target ES5 --outDir ./edition-node-esm --project tsconfig.json && ( test ! -d edition-node-esm/source || ( mv edition-node-esm/source edition-temp && rm -Rf edition-node-esm && mv edition-temp edition-node-esm ) ) && echo '{\"type\": \"module\"}' > edition-node-esm/package.json",
"our:compile:edition-es5-esm": "tsc --module ESNext --target ES5 --outDir ./edition-es5-esm --project tsconfig.json && ( test ! -d edition-es5-esm/source || ( mv edition-es5-esm/source edition-temp && rm -Rf edition-es5-esm && mv edition-temp edition-es5-esm ) ) && echo '{\"type\": \"module\"}' > edition-es5-esm/package.json",
"our:compile:types": "tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )",

@@ -231,3 +237,2 @@ "our:deploy": "echo no need for this project",

"targets": [
"browser",
"ES5"

@@ -234,0 +239,0 @@ ]

@@ -109,3 +109,3 @@ <!-- TITLE/ -->

``` typescript
import pkg from 'https://unpkg.com/errlop@^3.16.0/edition-deno/index.ts'
import pkg from 'https://unpkg.com/errlop@^3.17.0/edition-deno/index.ts'
```

@@ -117,3 +117,3 @@

<script type="module">
import pkg from '//cdn.skypack.dev/errlop@^3.16.0'
import pkg from '//cdn.skypack.dev/errlop@^3.17.0'
</script>

@@ -126,3 +126,3 @@ ```

<script type="module">
import pkg from '//unpkg.com/errlop@^3.16.0'
import pkg from '//unpkg.com/errlop@^3.17.0'
</script>

@@ -135,3 +135,3 @@ ```

<script type="module">
import pkg from '//dev.jspm.io/errlop@3.16.0'
import pkg from '//dev.jspm.io/errlop@3.17.0'
</script>

@@ -148,3 +148,3 @@ ```

<li><code>errlop/edition-es5/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 ES5 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>errlop/edition-node-esm/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 ES5 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://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li>
<li><code>errlop/edition-es5-esm/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 ES5 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://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li>
<li><code>errlop/edition-deno/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 made to be compatible with <a href="https://deno.land" title="Deno is a secure runtime for JavaScript and TypeScript, it is an alternative to Node.js">Deno</a></li></ul>

@@ -151,0 +151,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc