istextorbinary
Advanced tools
Comparing version 4.0.0 to 4.1.0-next.1590001610.fe989f2250369a4732fa7b68b4aa3420b2b7ef0a
# History | ||
## v4.1.0 2020 May 21 | ||
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation) | ||
## v4.0.0 2020 May 11 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"title": "Is Text or Binary?", | ||
"name": "istextorbinary", | ||
"version": "4.0.0", | ||
"version": "4.1.0-next.1590001610.fe989f2250369a4732fa7b68b4aa3420b2b7ef0a", | ||
"description": "Determine if a filename and/or buffer is text or binary. Smarter detection than the other solutions.", | ||
@@ -76,14 +76,13 @@ "homepage": "https://github.com/bevry/istextorbinary", | ||
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)", | ||
"Rob Loach <robloach@gmail.com> (https://github.com/robloach)", | ||
"Michael Mooring <mike@mdm.cc> (https://github.com/mikeumus)" | ||
"Michael Mooring <mike@mdm.cc> (https://github.com/mikeumus)", | ||
"Rob Loach <robloach@gmail.com> (https://github.com/robloach)" | ||
], | ||
"contributors": [ | ||
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)", | ||
"Shinnosuke Watanabe <snnskwtnb@gmail.com> (http://shinnn.github.io)", | ||
"Ian Sibner <sibnerian@gmail.com> (https://github.com/sibnerian)", | ||
"Michael Mooring <mike@mdm.cc> (https://github.com/mikeumus)", | ||
"Rob Loach <robloach@gmail.com> (https://github.com/robloach)", | ||
"Sean <sean@albinodrought.com> (https://github.com/AlbinoDrought)", | ||
"shinnn (https://github.com/shinnn)", | ||
"Rob Loach <robloach@gmail.com> (https://github.com/robloach)", | ||
"Michael Mooring <mike@mdm.cc> (https://github.com/mikeumus)", | ||
"shinnn (http://qiita.com/shinnn)" | ||
"Shinnosuke Watanabe <snnskwtnb@gmail.com> (http://shinnn.github.io)", | ||
"shinnn (https://github.com/shinnn)" | ||
], | ||
@@ -130,8 +129,7 @@ "bugs": { | ||
"type": "commonjs", | ||
"main": "index.js", | ||
"main": "source/index.js", | ||
"browser": "edition-browsers/index.js", | ||
"dependencies": { | ||
"binaryextensions": "^2.2.0", | ||
"editions": "^2.3.0", | ||
"textextensions": "^3.3.0" | ||
"textextensions": "^4.0.0" | ||
}, | ||
@@ -143,13 +141,13 @@ "devDependencies": { | ||
"@babel/preset-env": "^7.9.6", | ||
"@bevry/update-contributors": "^1.1.0", | ||
"assert-helpers": "^6.2.0", | ||
"@bevry/update-contributors": "^1.5.0", | ||
"assert-helpers": "^6.4.0", | ||
"eslint": "^7.0.0", | ||
"eslint-config-bevry": "^3.4.0", | ||
"eslint-config-bevry": "^3.5.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-prettier": "^3.1.3", | ||
"jsdoc": "^3.6.4", | ||
"kava": "^4.4.0", | ||
"kava": "^5.0.0", | ||
"minami": "^1.2.3", | ||
"prettier": "^2.0.5", | ||
"projectz": "^2.0.0", | ||
"projectz": "^2.1.0", | ||
"surge": "^0.21.3", | ||
@@ -164,6 +162,6 @@ "valid-directory": "^1.6.0" | ||
"our:meta": "npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz", | ||
"our:meta:contributors": "npx @bevry/update-contributors", | ||
"our:meta:contributors": "update-contributors", | ||
"our:meta:docs": "npm run our:meta:docs:jsdoc", | ||
"our:meta:docs:jsdoc": "rm -Rf ./docs && npx jsdoc --recurse --pedantic --access all --destination ./docs --package ./package.json --readme ./README.md --template ./node_modules/minami ./source && mv ./docs/$npm_package_name/$npm_package_version/* ./docs/ && rm -Rf ./docs/$npm_package_name/$npm_package_version", | ||
"our:meta:projectz": "npx projectz compile", | ||
"our:meta:docs:jsdoc": "rm -Rf ./docs && jsdoc --recurse --pedantic --access all --destination ./docs --package ./package.json --readme ./README.md --template ./node_modules/minami ./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": "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", | ||
@@ -179,6 +177,6 @@ "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:verify": "npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier", | ||
"our:verify:directory": "npx valid-directory", | ||
"our:verify:eslint": "npx eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source", | ||
"our:verify:directory": "valid-directory", | ||
"our:verify:eslint": "eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source", | ||
"our:verify:prettier": "prettier --write .", | ||
"test": "node ./test.js" | ||
"test": "node ./source/test.js" | ||
}, | ||
@@ -185,0 +183,0 @@ "eslintConfig": { |
@@ -86,3 +86,3 @@ <!-- TITLE/ --> | ||
<script type="module"> | ||
import * as pkg from '//dev.jspm.io/istextorbinary@4.0.0' | ||
import * as pkg from '//dev.jspm.io/istextorbinary@4.1.0' | ||
</script> | ||
@@ -95,3 +95,3 @@ ``` | ||
<ul><li><code>istextorbinary</code> aliases <code>istextorbinary/index.js</code> which uses the <a href="https://github.com/bevry/editions" title="You can use the Editions Autoloader to autoload the appropriate edition for your consumers environment">Editions Autoloader</a> to automatically select the correct edition for the consumer's environment</li> | ||
<ul><li><code>istextorbinary</code> aliases <code>istextorbinary/source/index.js</code></li> | ||
<li><code>istextorbinary/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> | ||
@@ -142,4 +142,4 @@ <li><code>istextorbinary/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> | ||
<ul><li><a href="https://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/istextorbinary/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/istextorbinary">view contributions</a></li> | ||
<li><a href="https://github.com/robloach">Rob Loach</a> — <a href="https://github.com/bevry/istextorbinary/commits?author=robloach" title="View the GitHub contributions of Rob Loach on repository bevry/istextorbinary">view contributions</a></li> | ||
<li><a href="https://github.com/mikeumus">Michael Mooring</a> — <a href="https://github.com/bevry/istextorbinary/commits?author=mikeumus" title="View the GitHub contributions of Michael Mooring on repository bevry/istextorbinary">view contributions</a></li></ul> | ||
<li><a href="https://github.com/mikeumus">Michael Mooring</a> — <a href="https://github.com/bevry/istextorbinary/commits?author=mikeumus" title="View the GitHub contributions of Michael Mooring on repository bevry/istextorbinary">view contributions</a></li> | ||
<li><a href="https://github.com/robloach">Rob Loach</a> — <a href="https://github.com/bevry/istextorbinary/commits?author=robloach" title="View the GitHub contributions of Rob Loach on repository bevry/istextorbinary">view contributions</a></li></ul> | ||
@@ -165,9 +165,8 @@ <h3>Sponsors</h3> | ||
<ul><li><a href="https://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/istextorbinary/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/istextorbinary">view contributions</a></li> | ||
<li><a href="http://shinnn.github.io">Shinnosuke Watanabe</a></li> | ||
<li><a href="https://github.com/sibnerian">Ian Sibner</a> — <a href="https://github.com/bevry/istextorbinary/commits?author=sibnerian" title="View the GitHub contributions of Ian Sibner on repository bevry/istextorbinary">view contributions</a></li> | ||
<li><a href="https://github.com/mikeumus">Michael Mooring</a> — <a href="https://github.com/bevry/istextorbinary/commits?author=mikeumus" title="View the GitHub contributions of Michael Mooring on repository bevry/istextorbinary">view contributions</a></li> | ||
<li><a href="https://github.com/robloach">Rob Loach</a> — <a href="https://github.com/bevry/istextorbinary/commits?author=robloach" title="View the GitHub contributions of Rob Loach on repository bevry/istextorbinary">view contributions</a></li> | ||
<li><a href="https://github.com/AlbinoDrought">Sean</a> — <a href="https://github.com/bevry/istextorbinary/commits?author=AlbinoDrought" title="View the GitHub contributions of Sean on repository bevry/istextorbinary">view contributions</a></li> | ||
<li><a href="https://github.com/shinnn">shinnn</a> — <a href="https://github.com/bevry/istextorbinary/commits?author=shinnn" title="View the GitHub contributions of shinnn on repository bevry/istextorbinary">view contributions</a></li> | ||
<li><a href="https://github.com/robloach">Rob Loach</a> — <a href="https://github.com/bevry/istextorbinary/commits?author=robloach" title="View the GitHub contributions of Rob Loach on repository bevry/istextorbinary">view contributions</a></li> | ||
<li><a href="https://github.com/mikeumus">Michael Mooring</a> — <a href="https://github.com/bevry/istextorbinary/commits?author=mikeumus" title="View the GitHub contributions of Michael Mooring on repository bevry/istextorbinary">view contributions</a></li> | ||
<li><a href="http://qiita.com/shinnn">shinnn</a></li></ul> | ||
<li><a href="http://shinnn.github.io">Shinnosuke Watanabe</a></li> | ||
<li><a href="https://github.com/shinnn">shinnn</a> — <a href="https://github.com/bevry/istextorbinary/commits?author=shinnn" title="View the GitHub contributions of shinnn on repository bevry/istextorbinary">view contributions</a></li></ul> | ||
@@ -174,0 +173,0 @@ <a href="https://github.com/bevry/istextorbinary/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
2
49913
7
623
1
188
+ Addedtextextensions@4.4.0(transitive)
- Removededitions@^2.3.0
- Removededitions@2.3.1(transitive)
- Removederrlop@2.2.0(transitive)
- Removedsemver@6.3.1(transitive)
- Removedtextextensions@3.3.0(transitive)
Updatedtextextensions@^4.0.0