@bevry/ecmascript-versions
Advanced tools
Comparing version 3.2.0 to 3.3.0-next.1627421821.9a3ffefbec263857be50cafce73fcf924cc7a605
# History | ||
## v3.3.0 2021 July 28 | ||
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation) | ||
## v3.2.0 2021 July 28 | ||
@@ -4,0 +8,0 @@ |
@@ -7,3 +7,3 @@ <!-- LICENSEFILE/ --> | ||
<ul><li>Copyright © 2020+ <a href="https://github.com/balupton">Benjamin Lupton</a></li></ul> | ||
<ul><li>Copyright © 2020+ <a href="https://balupton.com">Benjamin Lupton</a></li></ul> | ||
@@ -10,0 +10,0 @@ and licensed under: |
{ | ||
"name": "@bevry/ecmascript-versions", | ||
"version": "3.2.0", | ||
"version": "3.3.0-next.1627421821.9a3ffefbec263857be50cafce73fcf924cc7a605", | ||
"description": "Get all ECMAScript versions, or the ECMAScript version that was ratified on a specific date.", | ||
"homepage": "https://github.com/bevry/es-versions", | ||
"homepage": "https://github.com/bevry/ecmascript-versions", | ||
"license": "MIT", | ||
@@ -13,3 +13,3 @@ "keywords": [ | ||
"es", | ||
"es2020", | ||
"es2019", | ||
"fetch", | ||
@@ -56,4 +56,4 @@ "filter", | ||
"githubUsername": "bevry", | ||
"githubRepository": "es-versions", | ||
"githubSlug": "bevry/es-versions", | ||
"githubRepository": "ecmascript-versions", | ||
"githubSlug": "bevry/ecmascript-versions", | ||
"npmPackageName": "@bevry/ecmascript-versions" | ||
@@ -63,3 +63,3 @@ } | ||
"funding": "https://bevry.me/fund", | ||
"author": "2020+ Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)", | ||
"author": "2020+ Benjamin Lupton <b@lupton.cc> (https://balupton.com)", | ||
"maintainers": [ | ||
@@ -69,7 +69,7 @@ "Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)" | ||
"bugs": { | ||
"url": "https://github.com/bevry/es-versions/issues" | ||
"url": "https://github.com/bevry/ecmascript-versions/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/bevry/es-versions.git" | ||
"url": "https://github.com/bevry/ecmascript-versions.git" | ||
}, | ||
@@ -106,4 +106,4 @@ "engines": { | ||
{ | ||
"description": "TypeScript compiled against ES2020 for Node.js 10 || 12 || 14 with Require for modules", | ||
"directory": "edition-es2020", | ||
"description": "TypeScript compiled against ES2019 for Node.js 10 || 12 || 14 with Require for modules", | ||
"directory": "edition-es2019", | ||
"entry": "index.js", | ||
@@ -113,3 +113,3 @@ "tags": [ | ||
"javascript", | ||
"es2020", | ||
"es2019", | ||
"require" | ||
@@ -123,4 +123,4 @@ ], | ||
{ | ||
"description": "TypeScript compiled against ES2020 for Node.js 12 || 14 with Import for modules", | ||
"directory": "edition-es2020-esm", | ||
"description": "TypeScript compiled against ES2019 for Node.js 12 || 14 with Import for modules", | ||
"directory": "edition-es2019-esm", | ||
"entry": "index.js", | ||
@@ -130,3 +130,3 @@ "tags": [ | ||
"javascript", | ||
"es2020", | ||
"es2019", | ||
"import" | ||
@@ -142,7 +142,7 @@ ], | ||
"type": "module", | ||
"main": "edition-es2020/index.js", | ||
"main": "edition-es2019/index.js", | ||
"exports": { | ||
"node": { | ||
"import": "./edition-es2020-esm/index.js", | ||
"require": "./edition-es2020/index.js" | ||
"import": "./edition-es2019-esm/index.js", | ||
"require": "./edition-es2019/index.js" | ||
}, | ||
@@ -157,5 +157,5 @@ "browser": { | ||
"@bevry/update-contributors": "^1.18.0", | ||
"@typescript-eslint/eslint-plugin": "^4.28.4", | ||
"@typescript-eslint/parser": "^4.28.4", | ||
"assert-helpers": "^8.1.0", | ||
"@typescript-eslint/eslint-plugin": "^4.28.5", | ||
"@typescript-eslint/parser": "^4.28.5", | ||
"assert-helpers": "^8.2.0", | ||
"eslint": "^7.31.0", | ||
@@ -172,3 +172,3 @@ "eslint-config-bevry": "^3.23.0", | ||
"typescript": "4.3.5", | ||
"valid-directory": "^3.6.0", | ||
"valid-directory": "^3.7.0", | ||
"valid-module": "^1.15.0" | ||
@@ -178,7 +178,7 @@ }, | ||
"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-es2020 && npm run our:compile:edition-es2020-esm && npm run our:compile:types", | ||
"our:compile": "npm run our:compile:deno && npm run our:compile:edition-browsers && npm run our:compile:edition-es2019 && npm run our:compile:edition-es2019-esm && npm run our:compile:types", | ||
"our:compile:deno": "make-deno-edition --attempt", | ||
"our:compile:edition-browsers": "tsc --module ESNext --target ES2020 --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-es2020": "tsc --module commonjs --target ES2020 --outDir ./edition-es2020 --project tsconfig.json && ( test ! -d edition-es2020/source || ( mv edition-es2020/source edition-temp && rm -Rf edition-es2020 && mv edition-temp edition-es2020 ) ) && echo '{\"type\": \"commonjs\"}' > edition-es2020/package.json", | ||
"our:compile:edition-es2020-esm": "tsc --module ESNext --target ES2020 --outDir ./edition-es2020-esm --project tsconfig.json && ( test ! -d edition-es2020-esm/source || ( mv edition-es2020-esm/source edition-temp && rm -Rf edition-es2020-esm && mv edition-temp edition-es2020-esm ) ) && echo '{\"type\": \"module\"}' > edition-es2020-esm/package.json", | ||
"our:compile:edition-es2019": "tsc --module commonjs --target ES2019 --outDir ./edition-es2019 --project tsconfig.json && ( test ! -d edition-es2019/source || ( mv edition-es2019/source edition-temp && rm -Rf edition-es2019 && mv edition-temp edition-es2019 ) ) && echo '{\"type\": \"commonjs\"}' > edition-es2019/package.json", | ||
"our:compile:edition-es2019-esm": "tsc --module ESNext --target ES2019 --outDir ./edition-es2019-esm --project tsconfig.json && ( test ! -d edition-es2019-esm/source || ( mv edition-es2019-esm/source edition-temp && rm -Rf edition-es2019-esm && mv edition-temp edition-es2019-esm ) ) && echo '{\"type\": \"module\"}' > edition-es2019-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 ) )", | ||
@@ -195,3 +195,3 @@ "our:deploy": "echo no need for this project", | ||
"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:push": "git push origin && 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\"", | ||
@@ -206,3 +206,3 @@ "our:setup": "npm run our:setup:install", | ||
"our:verify:prettier": "prettier --write .", | ||
"test": "node ./edition-es2020/test.js" | ||
"test": "node ./edition-es2019/test.js" | ||
}, | ||
@@ -218,3 +218,5 @@ "eslintConfig": { | ||
}, | ||
"contributors": [] | ||
"contributors": [ | ||
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)" | ||
] | ||
} |
@@ -10,7 +10,7 @@ <!-- TITLE/ --> | ||
<span class="badge-githubworkflow"><a href="https://github.com/bevry/es-versions/actions?query=workflow%3Abevry" title="View the status of this project's GitHub Workflow: bevry"><img src="https://github.com/bevry/es-versions/workflows/bevry/badge.svg" alt="Status of the GitHub Workflow: bevry" /></a></span> | ||
<span class="badge-githubworkflow"><a href="https://github.com/bevry/ecmascript-versions/actions?query=workflow%3Abevry" title="View the status of this project's GitHub Workflow: bevry"><img src="https://github.com/bevry/ecmascript-versions/workflows/bevry/badge.svg" alt="Status of the GitHub Workflow: bevry" /></a></span> | ||
<span class="badge-npmversion"><a href="https://npmjs.org/package/@bevry/ecmascript-versions" title="View this project on NPM"><img src="https://img.shields.io/npm/v/@bevry/ecmascript-versions.svg" alt="NPM version" /></a></span> | ||
<span class="badge-npmdownloads"><a href="https://npmjs.org/package/@bevry/ecmascript-versions" title="View this project on NPM"><img src="https://img.shields.io/npm/dm/@bevry/ecmascript-versions.svg" alt="NPM downloads" /></a></span> | ||
<span class="badge-daviddm"><a href="https://david-dm.org/bevry/es-versions" title="View the status of this project's dependencies on DavidDM"><img src="https://img.shields.io/david/bevry/es-versions.svg" alt="Dependency Status" /></a></span> | ||
<span class="badge-daviddmdev"><a href="https://david-dm.org/bevry/es-versions#info=devDependencies" title="View the status of this project's development dependencies on DavidDM"><img src="https://img.shields.io/david/dev/bevry/es-versions.svg" alt="Dev Dependency Status" /></a></span> | ||
<span class="badge-daviddm"><a href="https://david-dm.org/bevry/ecmascript-versions" title="View the status of this project's dependencies on DavidDM"><img src="https://img.shields.io/david/bevry/ecmascript-versions.svg" alt="Dependency Status" /></a></span> | ||
<span class="badge-daviddmdev"><a href="https://david-dm.org/bevry/ecmascript-versions#info=devDependencies" title="View the status of this project's development dependencies on DavidDM"><img src="https://img.shields.io/david/dev/bevry/ecmascript-versions.svg" alt="Dev Dependency Status" /></a></span> | ||
<br class="badge-separator" /> | ||
@@ -92,3 +92,3 @@ <span class="badge-githubsponsors"><a href="https://github.com/sponsors/balupton" title="Donate to this project using GitHub Sponsors"><img src="https://img.shields.io/badge/github-donate-yellow.svg" alt="GitHub Sponsors donate button" /></a></span> | ||
<script type="module"> | ||
import * as pkg from '//cdn.skypack.dev/@bevry/ecmascript-versions@^3.2.0' | ||
import * as pkg from '//cdn.skypack.dev/@bevry/ecmascript-versions@^3.3.0' | ||
</script> | ||
@@ -101,3 +101,3 @@ ``` | ||
<script type="module"> | ||
import * as pkg from '//unpkg.com/@bevry/ecmascript-versions@^3.2.0' | ||
import * as pkg from '//unpkg.com/@bevry/ecmascript-versions@^3.3.0' | ||
</script> | ||
@@ -110,3 +110,3 @@ ``` | ||
<script type="module"> | ||
import * as pkg from '//dev.jspm.io/@bevry/ecmascript-versions@3.2.0' | ||
import * as pkg from '//dev.jspm.io/@bevry/ecmascript-versions@3.3.0' | ||
</script> | ||
@@ -121,5 +121,5 @@ ``` | ||
<li><code>@bevry/ecmascript-versions/edition-browsers/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 <a href="https://en.wikipedia.org/wiki/ECMAScript#11th_Edition_–_ECMAScript_2020" title="ECMAScript ES2020">ES2020</a> for web browsers with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li> | ||
<li><code>@bevry/ecmascript-versions</code> aliases <code>@bevry/ecmascript-versions/edition-es2020/index.js</code></li> | ||
<li><code>@bevry/ecmascript-versions/edition-es2020/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 <a href="https://en.wikipedia.org/wiki/ECMAScript#11th_Edition_–_ECMAScript_2020" title="ECMAScript ES2020">ES2020</a> 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 || 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>@bevry/ecmascript-versions/edition-es2020-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 <a href="https://en.wikipedia.org/wiki/ECMAScript#11th_Edition_–_ECMAScript_2020" title="ECMAScript ES2020">ES2020</a> for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 12 || 14 with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li></ul> | ||
<li><code>@bevry/ecmascript-versions</code> aliases <code>@bevry/ecmascript-versions/edition-es2019/index.js</code></li> | ||
<li><code>@bevry/ecmascript-versions/edition-es2019/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 <a href="https://en.wikipedia.org/wiki/ECMAScript#10th_Edition_-_ECMAScript_2019" title="ECMAScript ES2019">ES2019</a> 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 || 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>@bevry/ecmascript-versions/edition-es2019-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 <a href="https://en.wikipedia.org/wiki/ECMAScript#10th_Edition_-_ECMAScript_2019" title="ECMAScript ES2019">ES2019</a> for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 12 || 14 with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li></ul> | ||
@@ -133,3 +133,3 @@ <!-- /INSTALL --> | ||
<a href="https://github.com/bevry/es-versions/blob/master/HISTORY.md#files">Discover the release history by heading on over to the <code>HISTORY.md</code> file.</a> | ||
<a href="https://github.com/bevry/ecmascript-versions/blob/master/HISTORY.md#files">Discover the release history by heading on over to the <code>HISTORY.md</code> file.</a> | ||
@@ -143,3 +143,3 @@ <!-- /HISTORY --> | ||
<a href="https://github.com/bevry/es-versions/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a> | ||
<a href="https://github.com/bevry/ecmascript-versions/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a> | ||
@@ -157,3 +157,3 @@ <!-- /CONTRIBUTE --> | ||
<ul><li><a href="https://github.com/balupton">Benjamin Lupton</a> — <a href="https://github.com/bevry/es-versions/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/es-versions">view contributions</a></li></ul> | ||
<ul><li><a href="https://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/ecmascript-versions/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/ecmascript-versions">view contributions</a></li></ul> | ||
@@ -176,6 +176,8 @@ <h3>Sponsors</h3> | ||
No contributors yet! Will you be the first? | ||
These amazing people have contributed code to this project: | ||
<a href="https://github.com/bevry/es-versions/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a> | ||
<ul><li><a href="https://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/ecmascript-versions/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/ecmascript-versions">view contributions</a></li></ul> | ||
<a href="https://github.com/bevry/ecmascript-versions/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a> | ||
<!-- /BACKERS --> | ||
@@ -190,3 +192,3 @@ | ||
<ul><li>Copyright © 2020+ <a href="https://github.com/balupton">Benjamin Lupton</a></li></ul> | ||
<ul><li>Copyright © 2020+ <a href="https://balupton.com">Benjamin Lupton</a></li></ul> | ||
@@ -193,0 +195,0 @@ and licensed under: |
@@ -9,3 +9,3 @@ { | ||
"strict": true, | ||
"target": "ES2020", | ||
"target": "ES2019", | ||
"module": "ESNext" | ||
@@ -12,0 +12,0 @@ }, |
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
62902
195
1