Comparing version 10.10.0 to 10.11.0-next.1595450956.8b7a868a8f9d667988bd59a74801543fa82c5f57
# History | ||
## v10.11.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) | ||
## v10.10.0 2020 June 25 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"title": "Safe PS", | ||
"name": "safeps", | ||
"version": "10.10.0", | ||
"version": "10.11.0-next.1595450956.8b7a868a8f9d667988bd59a74801543fa82c5f57", | ||
"description": "Work with processes safely and easily with Node.js", | ||
@@ -79,3 +79,3 @@ "homepage": "https://github.com/bevry/safeps", | ||
{ | ||
"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", | ||
@@ -97,20 +97,20 @@ "entry": "index.js", | ||
"extract-opts": "^4.3.0", | ||
"safefs": "6.8.0", | ||
"taskgroup": "7.11.0", | ||
"typechecker": "7.10.0" | ||
"safefs": "^6.9.0", | ||
"taskgroup": "^7.12.0", | ||
"typechecker": "^7.11.0" | ||
}, | ||
"devDependencies": { | ||
"@bevry/update-contributors": "^1.12.0", | ||
"assert-helpers": "^6.13.0", | ||
"@bevry/update-contributors": "^1.13.0", | ||
"assert-helpers": "^6.18.0", | ||
"bevry-echo": "^1.1.0", | ||
"eslint": "^7.3.1", | ||
"eslint-config-bevry": "^3.13.0", | ||
"eslint": "^7.5.0", | ||
"eslint-config-bevry": "^3.17.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"jsdoc": "^3.6.4", | ||
"kava": "^5.8.0", | ||
"kava": "^5.9.0", | ||
"prettier": "^2.0.5", | ||
"projectz": "^2.11.0", | ||
"surge": "^0.21.3", | ||
"valid-directory": "^2.5.0" | ||
"projectz": "^2.12.0", | ||
"surge": "^0.21.6", | ||
"valid-directory": "^2.6.0" | ||
}, | ||
@@ -121,17 +121,17 @@ "scripts": { | ||
"our:deploy": "echo no need for this project", | ||
"our:meta": "yarn run our:meta:contributors && yarn run our:meta:docs && yarn run our:meta:projectz", | ||
"our:meta": "npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz", | ||
"our:meta:contributors": "update-contributors", | ||
"our:meta:docs": "yarn run our:meta:docs:jsdoc", | ||
"our:meta:docs": "npm run our:meta:docs:jsdoc", | ||
"our:meta:docs:jsdoc": "rm -Rf ./docs && jsdoc --recurse --pedantic --access all --destination ./docs --package ./package.json --readme ./README.md ./source && mv ./docs/$npm_package_name/$npm_package_version/* ./docs/ && rm -Rf ./docs/$npm_package_name/$npm_package_version", | ||
"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", | ||
@@ -138,0 +138,0 @@ "our:verify:eslint": "eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source", |
@@ -56,3 +56,3 @@ <!-- TITLE/ --> | ||
<ul><li><code>safeps</code> aliases <code>safeps/source/index.js</code></li> | ||
<li><code>safeps/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></ul> | ||
<li><code>safeps/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></ul> | ||
@@ -59,0 +59,0 @@ <h3><a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a></h3> |
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
74558
1
+ Addedsafefs@6.16.0(transitive)
+ Addedtaskgroup@7.20.0(transitive)
+ Addedunbounded@3.16.0(transitive)
- Removedsafefs@6.8.0(transitive)
- Removedtaskgroup@7.11.0(transitive)
- Removedtypechecker@7.10.0(transitive)
- Removedunbounded@3.4.0(transitive)
Updatedsafefs@^6.9.0
Updatedtaskgroup@^7.12.0
Updatedtypechecker@^7.11.0