binaryextensions
Advanced tools
Comparing version 4.7.0 to 4.8.0-next.1593742976.78dbfa6d6a7fd0b68a47209448e6088f0816be98
# History | ||
## v4.8.0 2020 July 3 | ||
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation) | ||
## v4.7.0 2020 June 25 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"title": "The Definitive List of Binary Extensions", | ||
"name": "binaryextensions", | ||
"version": "4.7.0", | ||
"version": "4.8.0-next.1593742976.78dbfa6d6a7fd0b68a47209448e6088f0816be98", | ||
"description": "A package that contains an array of every single file extension there is for binary files", | ||
@@ -117,2 +117,15 @@ "homepage": "https://github.com/bevry/binaryextensions", | ||
{ | ||
"description": "TypeScript compiled against ES5 for Node.js with Import for modules", | ||
"directory": "edition-node-esm", | ||
"entry": "index.js", | ||
"tags": [ | ||
"javascript", | ||
"import" | ||
], | ||
"engines": { | ||
"node": true, | ||
"browsers": false | ||
} | ||
}, | ||
{ | ||
"description": "TypeScript source code made to be compatible with Deno", | ||
@@ -133,4 +146,13 @@ "directory": "edition-deno", | ||
"types": "./compiled-types/", | ||
"type": "commonjs", | ||
"type": "module", | ||
"main": "edition-es5/index.js", | ||
"exports": { | ||
"node": { | ||
"import": "./edition-node-esm/index.js", | ||
"require": "./edition-es5/index.js" | ||
}, | ||
"browser": { | ||
"import": "./edition-browsers/index.js" | ||
} | ||
}, | ||
"deno": "edition-deno/index.ts", | ||
@@ -140,19 +162,19 @@ "browser": "edition-browsers/index.js", | ||
"devDependencies": { | ||
"@bevry/update-contributors": "^1.12.0", | ||
"@typescript-eslint/eslint-plugin": "^3.4.0", | ||
"@typescript-eslint/parser": "^3.4.0", | ||
"assert-helpers": "^6.13.0", | ||
"@bevry/update-contributors": "^1.13.0", | ||
"@typescript-eslint/eslint-plugin": "^3.5.0", | ||
"@typescript-eslint/parser": "^3.5.0", | ||
"assert-helpers": "^6.14.1", | ||
"eslint": "^7.3.1", | ||
"eslint-config-bevry": "^3.12.0", | ||
"eslint-config-bevry": "^3.13.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"kava": "^5.7.0", | ||
"make-deno-edition": "^0.13.0", | ||
"kava": "^5.8.0", | ||
"make-deno-edition": "^0.14.0", | ||
"prettier": "^2.0.5", | ||
"projectz": "^2.10.1", | ||
"projectz": "^2.11.0", | ||
"surge": "^0.21.3", | ||
"textextensions": "5.6.0", | ||
"typedoc": "^0.17.7", | ||
"typescript": "^3.9.5", | ||
"valid-directory": "^2.5.0", | ||
"textextensions": "^5.7.0", | ||
"typedoc": "^0.17.8", | ||
"typescript": "^3.9.6", | ||
"valid-directory": "^2.6.0", | ||
"valid-module": "^1.7.0" | ||
@@ -162,23 +184,24 @@ }, | ||
"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next", | ||
"our:compile": "yarn run our:compile:deno && yarn run our:compile:edition-browsers && yarn run our:compile:edition-es5 && yarn 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-node-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 ) )", | ||
"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: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 ) )", | ||
"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:typedoc", | ||
"our:meta:docs": "npm run our:meta:docs:typedoc", | ||
"our:meta:docs:typedoc": "rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source", | ||
"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": "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:module && 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:module && npm run our:verify:prettier", | ||
"our:verify:directory": "valid-directory", | ||
@@ -185,0 +208,0 @@ "our:verify:eslint": "eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source", |
@@ -74,3 +74,3 @@ <!-- TITLE/ --> | ||
``` typescript | ||
import pkg from 'https://unpkg.com/binaryextensions@^4.7.0/edition-deno/index.ts' | ||
import pkg from 'https://unpkg.com/binaryextensions@^4.8.0/edition-deno/index.ts' | ||
``` | ||
@@ -82,3 +82,3 @@ | ||
<script type="module"> | ||
import pkg from '//cdn.pika.dev/binaryextensions/^4.7.0' | ||
import pkg from '//cdn.pika.dev/binaryextensions/^4.8.0' | ||
</script> | ||
@@ -91,3 +91,3 @@ ``` | ||
<script type="module"> | ||
import pkg from '//unpkg.com/binaryextensions@^4.7.0' | ||
import pkg from '//unpkg.com/binaryextensions@^4.8.0' | ||
</script> | ||
@@ -100,3 +100,3 @@ ``` | ||
<script type="module"> | ||
import pkg from '//dev.jspm.io/binaryextensions@4.7.0' | ||
import pkg from '//dev.jspm.io/binaryextensions@4.8.0' | ||
</script> | ||
@@ -113,2 +113,3 @@ ``` | ||
<li><code>binaryextensions/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>binaryextensions/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>binaryextensions/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> | ||
@@ -115,0 +116,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26622
15
103
172
Yes
1