Socket
Socket
Sign inDemoInstall

unbounded

Package Overview
Dependencies
0
Maintainers
1
Versions
83
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.8.0 to 3.9.0-next.1595453244.a1b3b298dcfb490f5752d90d3259117d7eb35314

4

HISTORY.md
# History
## v3.9.0 2020 July 23
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)
## v3.8.0 2020 June 25

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

44

package.json
{
"name": "unbounded",
"version": "3.8.0",
"version": "3.9.0-next.1595453244.a1b3b298dcfb490f5752d90d3259117d7eb35314",
"description": "Function.prototype.bind replacement that provides an `unbounded` hidden property on the returned bounded function, that contains the original unbounded function",

@@ -72,3 +72,3 @@ "homepage": "https://github.com/bevry/unbounded",

{
"description": "ESNext source code for Node.js with Require for modules",
"description": "ESNext source code for Node.js 10 || 12 || 13 || 14 with Require for modules",
"directory": "source",

@@ -104,35 +104,35 @@ "entry": "index.js",

"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-object-rest-spread": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@bevry/update-contributors": "^1.12.0",
"assert-helpers": "^6.13.0",
"eslint": "^7.3.1",
"eslint-config-bevry": "^3.13.0",
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@bevry/update-contributors": "^1.13.0",
"assert-helpers": "^6.18.0",
"eslint": "^7.5.0",
"eslint-config-bevry": "^3.17.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"kava": "^5.8.0",
"kava": "^5.9.0",
"prettier": "^2.0.5",
"projectz": "^2.11.0",
"valid-directory": "^2.5.0"
"projectz": "^2.12.0",
"valid-directory": "^2.6.0"
},
"scripts": {
"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
"our:compile": "yarn run our:compile:edition-browsers",
"our:compile": "npm run our:compile:edition-browsers",
"our:compile:edition-browsers": "env BABEL_ENV=edition-browsers babel --out-dir ./edition-browsers ./source",
"our:deploy": "echo no need for this project",
"our:meta": "yarn run our:meta:contributors && yarn run our:meta:projectz",
"our:meta": "npm run our:meta:contributors && npm run our:meta:projectz",
"our:meta:contributors": "update-contributors",
"our:meta:projectz": "projectz compile",
"our:release": "yarn run our:release:prepare && yarn run our:release:check-changelog && yarn run our:release:check-dirty && yarn run our:release:tag && yarn run our:release:push",
"our:release": "npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push",
"our:release:check-changelog": "cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)",
"our:release:check-dirty": "git diff --exit-code",
"our:release:prepare": "yarn run our:clean && yarn run our:compile && yarn run our:test && yarn run our:meta",
"our:release:prepare": "npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta",
"our:release:push": "git push origin master && git push origin --tags",
"our:release:tag": "export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"",
"our:setup": "yarn run our:setup:install",
"our:setup:install": "/usr/local/bin/yarn install --ignore-engines",
"our:test": "yarn run our:verify && yarn test",
"our:verify": "yarn run our:verify:directory && yarn run our:verify:eslint && yarn run our:verify:prettier",
"our:setup": "npm run our:setup:install",
"our:setup:install": "npm install",
"our:test": "npm run our:verify && npm test",
"our:verify": "npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier",
"our:verify:directory": "valid-directory",

@@ -164,3 +164,3 @@ "our:verify:eslint": "eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source",

},
"modules": false
"modules": "commonjs"
}

@@ -167,0 +167,0 @@ ]

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

<script type="module">
import * as pkg from '//dev.jspm.io/unbounded@3.8.0'
import * as pkg from '//dev.jspm.io/unbounded@3.9.0'
</script>

@@ -91,3 +91,3 @@ ```

<ul><li><code>unbounded</code> aliases <code>unbounded/source/index.js</code></li>
<li><code>unbounded/source/index.js</code> is <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> source code 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>unbounded/source/index.js</code> is <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> source code for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 10 || 12 || 13 || 14 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>unbounded/edition-browsers/index.js</code> is <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> compiled for web browsers with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li></ul>

@@ -94,0 +94,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