Socket
Socket
Sign inDemoInstall

editions

Package Overview
Dependencies
Maintainers
2
Versions
130
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

editions - npm Package Compare versions

Comparing version 6.7.0 to 6.8.0-next.1698806148.948cb9ab2476dd7c0f80f7bb4948ea2112bb2761

.prettierignore

8

compiled-types/index.d.ts
import { Errtion } from './util.js';
export declare type Range = string | boolean;
export declare type Engines = false | {
export type Range = string | boolean;
export type Engines = false | {
[engine: string]: Range;
};
export declare type Versions = {
export type Versions = {
[engine: string]: string;

@@ -82,3 +82,3 @@ };

/** Editions should be ordered from most preferable first to least desirable last. The source edition should always be first, proceeded by compiled editions. */
export declare type Editions = Array<Edition>;
export type Editions = Array<Edition>;
export interface PathOptions {

@@ -85,0 +85,0 @@ /** If provided, this edition entry is used instead of the default entry. */

@@ -27,3 +27,3 @@ var __assign = (this && this.__assign) || function () {

throw errtion({
message: "Could not load the edition [" + edition.description + "] as no loader was specified. This is probably due to a testing misconfiguration.",
message: "Could not load the edition [".concat(edition.description, "] as no loader was specified. This is probably due to a testing misconfiguration."),
code: 'editions-autoloader-loader-missing',

@@ -39,3 +39,3 @@ level: 'fatal',

throw errtion({
message: "Failed to load the entry [" + entry + "] of edition [" + edition.description + "].",
message: "Failed to load the entry [".concat(entry, "] of edition [").concat(edition.description, "]."),
code: 'editions-autoloader-loader-failed',

@@ -57,3 +57,3 @@ level: 'fatal',

throw errtion({
message: "An edition must have its [description, directory, entry, engines] fields defined, yet all this edition defined were [" + Object.keys(edition).join(', ') + "]",
message: "An edition must have its [description, directory, entry, engines] fields defined, yet all this edition defined were [".concat(Object.keys(edition).join(', '), "]"),
code: 'editions-autoloader-invalid-edition',

@@ -76,3 +76,3 @@ level: 'fatal',

throw errtion({
message: "No version was specified to compare the range [" + range + "] against",
message: "No version was specified to compare the range [".concat(range, "] against"),
code: 'editions-autoloader-engine-version-missing',

@@ -83,3 +83,3 @@ level: 'fatal',

throw errtion({
message: "The edition range was not specified, so unable to compare against the version [" + version + "]",
message: "The edition range was not specified, so unable to compare against the version [".concat(version, "]"),
code: 'editions-autoloader-engine-range-missing',

@@ -101,3 +101,3 @@ });

throw errtion({
message: "The range [" + range + "] was invalid, something is wrong with the Editions definition.",
message: "The range [".concat(range, "] was invalid, something is wrong with the Editions definition."),
code: 'editions-autoloader-invalid-range',

@@ -125,3 +125,3 @@ level: 'fatal',

throw errtion({
message: "The range [" + range + "] is not able to be broadened, only ranges in format of [lowest] or [lowest || ... || ... ] can be broadened. Update the Editions definition and try again.",
message: "The range [".concat(range, "] is not able to be broadened, only ranges in format of [lowest] or [lowest || ... || ... ] can be broadened. Update the Editions definition and try again."),
code: 'editions-autoloader-unsupported-broadened-range',

@@ -131,3 +131,3 @@ level: 'fatal',

// create the broadened range, and attempt that
var broadenedRange = ">= " + lowestVersion;
var broadenedRange = ">= ".concat(lowestVersion);
try {

@@ -139,3 +139,3 @@ if (matchRange(version, broadenedRange))

throw errtion({
message: "The broadened range [" + broadenedRange + "] was invalid, something is wrong within Editions.",
message: "The broadened range [".concat(broadenedRange, "] was invalid, something is wrong within Editions."),
code: 'editions-autoloader-invalid-broadened-range',

@@ -147,3 +147,3 @@ level: 'fatal',

throw errtion({
message: "The edition range [" + range + "] does not support this engine version [" + version + "], even when broadened to [" + broadenedRange + "]",
message: "The edition range [".concat(range, "] does not support this engine version [").concat(version, "], even when broadened to [").concat(broadenedRange, "]"),
code: 'editions-autoloader-engine-incompatible-broadened-range',

@@ -154,3 +154,3 @@ });

throw errtion({
message: "The edition range [" + range + "] does not support this engine version [" + version + "]",
message: "The edition range [".concat(range, "] does not support this engine version [").concat(version, "]"),
code: 'editions-autoloader-engine-incompatible-original',

@@ -204,3 +204,3 @@ });

throw errtion({
message: "The engine [" + key + "] range of [" + engine + "] was not compatible against version [" + version + "].",
message: "The engine [".concat(key, "] range of [").concat(engine, "] was not compatible against version [").concat(version, "]."),
code: 'editions-autoloader-engine-error',

@@ -232,3 +232,3 @@ }, rangeError);

throw errtion({
message: "The edition [" + edition.description + "] is not compatible with this environment.",
message: "The edition [".concat(edition.description, "] is not compatible with this environment."),
code: 'editions-autoloader-edition-incompatible',

@@ -290,3 +290,3 @@ }, compatibleError);

debugging: errtion({
message: "The edition " + broadenedEdition.description + " was selected to be force loaded as its range was broadened.",
message: "The edition ".concat(broadenedEdition.description, " was selected to be force loaded as its range was broadened."),
code: 'editions-autoloader-attempt-broadened',

@@ -347,3 +347,3 @@ }) });

throw errtion({
message: "Unable to determine a suitable edition for the package [" + packagePath + "] and entry [" + entry + "]",
message: "Unable to determine a suitable edition for the package [".concat(packagePath, "] and entry [").concat(entry, "]"),
code: 'editions-autoloader-package',

@@ -350,0 +350,0 @@ }, error);

@@ -1,1 +0,1 @@

{"type": "module"}
{"type": "module"}

@@ -13,7 +13,7 @@ /**

if (code)
message = code + ": " + message;
message = "".concat(code, ": ").concat(message);
if (level)
message = level + ": " + message;
message = "".concat(level, ": ").concat(message);
if (parent)
message = message + "\n\u21AA" + (parent.message || parent);
message = "".concat(message, "\n\u21AA").concat(parent.message || parent);
// create error

@@ -20,0 +20,0 @@ var error = new Error(message);

@@ -30,6 +30,6 @@ "use strict";

function loadEdition(edition, opts) {
var entry = path_1.resolve(opts.cwd || '', edition.directory, opts.entry || edition.entry || '');
var entry = (0, path_1.resolve)(opts.cwd || '', edition.directory, opts.entry || edition.entry || '');
if (opts.loader == null) {
throw util_js_1.errtion({
message: "Could not load the edition [" + edition.description + "] as no loader was specified. This is probably due to a testing misconfiguration.",
throw (0, util_js_1.errtion)({
message: "Could not load the edition [".concat(edition.description, "] as no loader was specified. This is probably due to a testing misconfiguration."),
code: 'editions-autoloader-loader-missing',

@@ -44,4 +44,4 @@ level: 'fatal',

// Note the error with more details
throw util_js_1.errtion({
message: "Failed to load the entry [" + entry + "] of edition [" + edition.description + "].",
throw (0, util_js_1.errtion)({
message: "Failed to load the entry [".concat(entry, "] of edition [").concat(edition.description, "]."),
code: 'editions-autoloader-loader-failed',

@@ -63,4 +63,4 @@ level: 'fatal',

edition.engines == null) {
throw util_js_1.errtion({
message: "An edition must have its [description, directory, entry, engines] fields defined, yet all this edition defined were [" + Object.keys(edition).join(', ') + "]",
throw (0, util_js_1.errtion)({
message: "An edition must have its [description, directory, entry, engines] fields defined, yet all this edition defined were [".concat(Object.keys(edition).join(', '), "]"),
code: 'editions-autoloader-invalid-edition',

@@ -83,4 +83,4 @@ level: 'fatal',

if (!version)
throw util_js_1.errtion({
message: "No version was specified to compare the range [" + range + "] against",
throw (0, util_js_1.errtion)({
message: "No version was specified to compare the range [".concat(range, "] against"),
code: 'editions-autoloader-engine-version-missing',

@@ -90,8 +90,8 @@ level: 'fatal',

if (range == null || range === '')
throw util_js_1.errtion({
message: "The edition range was not specified, so unable to compare against the version [" + version + "]",
throw (0, util_js_1.errtion)({
message: "The edition range was not specified, so unable to compare against the version [".concat(version, "]"),
code: 'editions-autoloader-engine-range-missing',
});
if (range === false)
throw util_js_1.errtion({
throw (0, util_js_1.errtion)({
message: "The edition range does not support this engine",

@@ -104,8 +104,8 @@ code: 'editions-autoloader-engine-unsupported',

try {
if (version_range_1.default(version, range))
if ((0, version_range_1.default)(version, range))
return true;
}
catch (error) {
throw util_js_1.errtion({
message: "The range [" + range + "] was invalid, something is wrong with the Editions definition.",
throw (0, util_js_1.errtion)({
message: "The range [".concat(range, "] was invalid, something is wrong with the Editions definition."),
code: 'editions-autoloader-invalid-range',

@@ -132,4 +132,4 @@ level: 'fatal',

if (lowestVersion === '')
throw util_js_1.errtion({
message: "The range [" + range + "] is not able to be broadened, only ranges in format of [lowest] or [lowest || ... || ... ] can be broadened. Update the Editions definition and try again.",
throw (0, util_js_1.errtion)({
message: "The range [".concat(range, "] is not able to be broadened, only ranges in format of [lowest] or [lowest || ... || ... ] can be broadened. Update the Editions definition and try again."),
code: 'editions-autoloader-unsupported-broadened-range',

@@ -139,10 +139,10 @@ level: 'fatal',

// create the broadened range, and attempt that
var broadenedRange = ">= " + lowestVersion;
var broadenedRange = ">= ".concat(lowestVersion);
try {
if (version_range_1.default(version, broadenedRange))
if ((0, version_range_1.default)(version, broadenedRange))
return true;
}
catch (error) {
throw util_js_1.errtion({
message: "The broadened range [" + broadenedRange + "] was invalid, something is wrong within Editions.",
throw (0, util_js_1.errtion)({
message: "The broadened range [".concat(broadenedRange, "] was invalid, something is wrong within Editions."),
code: 'editions-autoloader-invalid-broadened-range',

@@ -153,4 +153,4 @@ level: 'fatal',

// broadened range was incompatible
throw util_js_1.errtion({
message: "The edition range [" + range + "] does not support this engine version [" + version + "], even when broadened to [" + broadenedRange + "]",
throw (0, util_js_1.errtion)({
message: "The edition range [".concat(range, "] does not support this engine version [").concat(version, "], even when broadened to [").concat(broadenedRange, "]"),
code: 'editions-autoloader-engine-incompatible-broadened-range',

@@ -160,4 +160,4 @@ });

// give up
throw util_js_1.errtion({
message: "The edition range [" + range + "] does not support this engine version [" + version + "]",
throw (0, util_js_1.errtion)({
message: "The edition range [".concat(range, "] does not support this engine version [").concat(version, "]"),
code: 'editions-autoloader-engine-incompatible-original',

@@ -177,3 +177,3 @@ });

if (!engines) {
throw util_js_1.errtion({
throw (0, util_js_1.errtion)({
message: "The edition had no engines to compare against the environment",

@@ -185,3 +185,3 @@ code: 'editions-autoloader-invalid-engines',

if (!versions) {
throw util_js_1.errtion({
throw (0, util_js_1.errtion)({
message: "No versions were supplied to compare the engines against",

@@ -213,4 +213,4 @@ code: 'editions-autoloader-invalid-versions',

catch (rangeError) {
throw util_js_1.errtion({
message: "The engine [" + key + "] range of [" + engine + "] was not compatible against version [" + version + "].",
throw (0, util_js_1.errtion)({
message: "The engine [".concat(key, "] range of [").concat(engine, "] was not compatible against version [").concat(version, "]."),
code: 'editions-autoloader-engine-error',

@@ -223,3 +223,3 @@ }, rangeError);

if (!compatible) {
throw util_js_1.errtion({
throw (0, util_js_1.errtion)({
message: "There were no supported engines in which this environment provides.",

@@ -243,4 +243,4 @@ code: 'editions-autoloader-engine-mismatch',

catch (compatibleError) {
throw util_js_1.errtion({
message: "The edition [" + edition.description + "] is not compatible with this environment.",
throw (0, util_js_1.errtion)({
message: "The edition [".concat(edition.description, "] is not compatible with this environment."),
code: 'editions-autoloader-edition-incompatible',

@@ -262,3 +262,3 @@ }, compatibleError);

if (!editions || editions.length === 0) {
throw util_js_1.errtion({
throw (0, util_js_1.errtion)({
message: 'No editions were specified.',

@@ -280,3 +280,3 @@ code: 'editions-autoloader-editions-missing',

if (error.level === 'fatal') {
throw util_js_1.errtion({
throw (0, util_js_1.errtion)({
message: "Unable to determine a suitable edition due to failure.",

@@ -288,3 +288,3 @@ code: 'editions-autoloader-fatal',

else if (failure) {
failure = util_js_1.errtion(error, failure);
failure = (0, util_js_1.errtion)(error, failure);
}

@@ -305,4 +305,4 @@ else {

// bubble the circumstances up in case the loading of the broadened edition fails and needs to be reported
debugging: util_js_1.errtion({
message: "The edition " + broadenedEdition.description + " was selected to be force loaded as its range was broadened.",
debugging: (0, util_js_1.errtion)({
message: "The edition ".concat(broadenedEdition.description, " was selected to be force loaded as its range was broadened."),
code: 'editions-autoloader-attempt-broadened',

@@ -312,3 +312,3 @@ }) });

catch (error) {
throw util_js_1.errtion({
throw (0, util_js_1.errtion)({
message: "Unable to determine a suitable edition, even after broadening.",

@@ -319,3 +319,3 @@ code: 'editions-autoloader-none-broadened',

// fail
throw util_js_1.errtion({
throw (0, util_js_1.errtion)({
message: "Unable to determine a suitable edition, as none were suitable.",

@@ -326,3 +326,3 @@ code: 'editions-autoloader-none-suitable',

// this should never reach here
throw util_js_1.errtion({
throw (0, util_js_1.errtion)({
message: "Unable to determine a suitable edition, as an unexpected pathway occurred.",

@@ -344,3 +344,3 @@ code: 'editions-autoloader-never',

catch (error) {
throw util_js_1.errtion(error, edition.debugging);
throw (0, util_js_1.errtion)(error, edition.debugging);
}

@@ -355,6 +355,6 @@ }

function requirePackage(cwd, loader, entry) {
var packagePath = path_1.resolve(cwd || '', 'package.json');
var packagePath = (0, path_1.resolve)(cwd || '', 'package.json');
try {
// load editions
var editions = JSON.parse(fs_1.readFileSync(packagePath, 'utf8')).editions;
var editions = JSON.parse((0, fs_1.readFileSync)(packagePath, 'utf8')).editions;
// load edition

@@ -369,4 +369,4 @@ return solicitEdition(editions, {

catch (error) {
throw util_js_1.errtion({
message: "Unable to determine a suitable edition for the package [" + packagePath + "] and entry [" + entry + "]",
throw (0, util_js_1.errtion)({
message: "Unable to determine a suitable edition for the package [".concat(packagePath, "] and entry [").concat(entry, "]"),
code: 'editions-autoloader-package',

@@ -373,0 +373,0 @@ }, error);

@@ -1,1 +0,1 @@

{"type": "commonjs"}
{"type": "commonjs"}

@@ -16,7 +16,7 @@ "use strict";

if (code)
message = code + ": " + message;
message = "".concat(code, ": ").concat(message);
if (level)
message = level + ": " + message;
message = "".concat(level, ": ").concat(message);
if (parent)
message = message + "\n\u21AA" + (parent.message || parent);
message = "".concat(message, "\n\u21AA").concat(parent.message || parent);
// create error

@@ -23,0 +23,0 @@ var error = new Error(message);

@@ -11,14 +11,92 @@ <!-- LICENSEFILE/ -->

<ul><li><a href="http://spdx.org/licenses/MIT.html">MIT License</a></li></ul>
<ul><li><a href="http://spdx.org/licenses/Artistic-2.0.html">Artistic License 2.0</a></li></ul>
<h2>MIT License</h2>
<h2>The Artistic License 2.0</h2>
<pre>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
Copyright (c) 2000-2006, The Perl Foundation.
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Preamble
This license establishes the terms under which a given free software Package may be copied, modified, distributed, and/or redistributed. The intent is that the Copyright Holder maintains some artistic control over the development of that Package while still keeping the Package available as open source and free software.
You are always permitted to make arrangements wholly outside of this license directly with the Copyright Holder of a given Package. If the terms of this license do not permit the full use that you propose to make of the Package, you should contact the Copyright Holder and seek a different licensing arrangement.
Definitions
"Copyright Holder" means the individual(s) or organization(s) named in the copyright notice for the entire Package.
"Contributor" means any party that has contributed code or other material to the Package, in accordance with the Copyright Holder's procedures.
"You" and "your" means any person who would like to copy, distribute, or modify the Package.
"Package" means the collection of files distributed by the Copyright Holder, and derivatives of that collection and/or of those files. A given Package may consist of either the Standard Version, or a Modified Version.
"Distribute" means providing a copy of the Package or making it accessible to anyone else, or in the case of a company or organization, to others outside of your company or organization.
"Distributor Fee" means any fee that you charge for Distributing this Package or providing support for this Package to another party. It does not mean licensing fees.
"Standard Version" refers to the Package if it has not been modified, or has been modified only in ways explicitly requested by the Copyright Holder.
"Modified Version" means the Package, if it has been changed, and such changes were not explicitly requested by the Copyright Holder.
"Original License" means this Artistic License as Distributed with the Standard Version of the Package, in its current version or as it may be modified by The Perl Foundation in the future.
"Source" form means the source code, documentation source, and configuration files for the Package.
"Compiled" form means the compiled bytecode, object code, binary, or any other form resulting from mechanical transformation or translation of the Source form.
Permission for Use and Modification Without Distribution
(1) You are permitted to use the Standard Version and create and use Modified Versions for any purpose without restriction, provided that you do not Distribute the Modified Version.
Permissions for Redistribution of the Standard Version
(2) You may Distribute verbatim copies of the Source form of the Standard Version of this Package in any medium without restriction, either gratis or for a Distributor Fee, provided that you duplicate all of the original copyright notices and associated disclaimers. At your discretion, such verbatim copies may or may not include a Compiled form of the Package.
(3) You may apply any bug fixes, portability changes, and other modifications made available from the Copyright Holder. The resulting Package will still be considered the Standard Version, and as such will be subject to the Original License.
Distribution of Modified Versions of the Package as Source
(4) You may Distribute your Modified Version as Source (either gratis or for a Distributor Fee, and with or without a Compiled form of the Modified Version) provided that you clearly document how it differs from the Standard Version, including, but not limited to, documenting any non-standard features, executables, or modules, and provided that you do at least ONE of the following:
(a) make the Modified Version available to the Copyright Holder of the Standard Version, under the Original License, so that the Copyright Holder may include your modifications in the Standard Version.
(b) ensure that installation of your Modified Version does not prevent the user installing or running the Standard Version. In addition, the Modified Version must bear a name that is different from the name of the Standard Version.
(c) allow anyone who receives a copy of the Modified Version to make the Source form of the Modified Version available to others under
(i) the Original License or
(ii) a license that permits the licensee to freely copy, modify and redistribute the Modified Version using the same licensing terms that apply to the copy that the licensee received, and requires that the Source form of the Modified Version, and of any works derived from it, be made freely available in that license fees are prohibited but Distributor Fees are allowed.
Distribution of Compiled Forms of the Standard Version or Modified Versions without the Source
(5) You may Distribute Compiled forms of the Standard Version without the Source, provided that you include complete instructions on how to get the Source of the Standard Version. Such instructions must be valid at the time of your distribution. If these instructions, at any time while you are carrying out such distribution, become invalid, you must provide new instructions on demand or cease further distribution. If you provide valid instructions or cease distribution within thirty days after you become aware that the instructions are invalid, then you do not forfeit any of your rights under this license.
(6) You may Distribute a Modified Version in Compiled form without the Source, provided that you comply with Section 4 with respect to the Source of the Modified Version.
Aggregating or Linking the Package
(7) You may aggregate the Package (either the Standard Version or Modified Version) with other packages and Distribute the resulting aggregation provided that you do not charge a licensing fee for the Package. Distributor Fees are permitted, and licensing fees for other components in the aggregation are permitted. The terms of this license apply to the use and Distribution of the Standard or Modified Versions as included in the aggregation.
(8) You are permitted to link Modified and Standard Versions with other works, to embed the Package in a larger work of your own, or to build stand-alone binary or bytecode versions of applications that include the Package, and Distribute the result without restriction, provided the result does not expose a direct interface to the Package.
Items That are Not Considered Part of a Modified Version
(9) Works (including, but not limited to, modules and scripts) that merely extend or make use of the Package, do not, by themselves, cause the Package to be a Modified Version. In addition, such works are not considered parts of the Package itself, and are not subject to the terms of this license.
General Provisions
(10) Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License. By using, modifying or distributing the Package, you accept this license. Do not use, modify, or distribute the Package, if you do not accept this license.
(11) If your Modified Version has been derived from a Modified Version made by someone other than you, you are nevertheless required to ensure that your Modified Version complies with the requirements of this license.
(12) This license does not grant you the right to use any trademark, service mark, tradename, or logo of the Copyright Holder.
(13) This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement, then this Artistic License to you shall terminate on the date that such litigation is filed.
(14) Disclaimer of Warranty:
THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
</pre>
<!-- /LICENSEFILE -->
{
"name": "editions",
"version": "6.7.0",
"version": "6.8.0-next.1698806148.948cb9ab2476dd7c0f80f7bb4948ea2112bb2761",
"description": "Publish multiple editions for your JavaScript packages consistently and easily (e.g. source edition, esnext edition, es2015 edition)",
"homepage": "https://github.com/bevry/editions",
"license": "MIT",
"license": "Artistic-2.0",
"keywords": [

@@ -28,6 +28,5 @@ "allow-env",

"npmdownloads",
"daviddm",
"daviddmdev",
"---",
"githubsponsors",
"thanksdev",
"patreon",

@@ -45,2 +44,3 @@ "flattr",

"githubSponsorsUsername": "balupton",
"thanksdevGithubUsername": "balupton",
"buymeacoffeeUsername": "balupton",

@@ -102,3 +102,3 @@ "cryptoURL": "https://bevry.me/crypto",

"engines": {
"node": "4 || 6 || 8 || 10 || 12 || 14 || 16",
"node": "4 || 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21",
"browsers": false

@@ -118,3 +118,3 @@ }

"engines": {
"node": "12 || 14 || 16",
"node": "12 || 14 || 16 || 18 || 20 || 21",
"browsers": false

@@ -134,21 +134,22 @@ }

"dependencies": {
"version-range": "^1.2.0"
"version-range": "^1.4.0"
},
"devDependencies": {
"@bevry/update-contributors": "^1.19.0",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"@bevry/update-contributors": "^1.22.0",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"assert-helpers": "^8.4.0",
"eslint": "^7.31.0",
"eslint-config-bevry": "^3.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint": "^8.52.0",
"eslint-config-bevry": "^3.27.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"kava": "3.2.0",
"make-deno-edition": "^1.3.0",
"prettier": "^2.3.2",
"projectz": "^2.21.0",
"surge": "^0.23.0",
"typedoc": "^0.21.4",
"typescript": "4.3.5",
"valid-directory": "^3.7.0"
"prettier": "^3.0.3",
"projectz": "^2.23.0",
"surge": "^0.23.1",
"typedoc": "^0.25.3",
"typescript": "5.2.2",
"valid-directory": "^4.0.0"
},

@@ -159,6 +160,6 @@ "scripts": {

"our:compile:deno": "make-deno-edition --attempt",
"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-es5-esm": "tsc --module ESNext --target ES5 --outDir ./edition-es5-esm --project tsconfig.json && ( test ! -d edition-es5-esm/source || ( mv edition-es5-esm/source edition-temp && rm -Rf edition-es5-esm && mv edition-temp edition-es5-esm ) ) && echo '{\"type\": \"module\"}' > edition-es5-esm/package.json",
"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 ) ) && printf '%s' '{\"type\": \"commonjs\"}' > edition-es5/package.json",
"our:compile:edition-es5-esm": "tsc --module ESNext --target ES5 --outDir ./edition-es5-esm --project tsconfig.json && ( test ! -d edition-es5-esm/source || ( mv edition-es5-esm/source edition-temp && rm -Rf edition-es5-esm && mv edition-temp edition-es5-esm ) ) && printf '%s' '{\"type\": \"module\"}' > edition-es5-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:deploy": "printf '%s\n' 'no need for this project'",
"our:meta": "npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz",

@@ -170,7 +171,7 @@ "our:meta:contributors": "update-contributors",

"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-changelog": "cat ./HISTORY.md | grep \"v$npm_package_version\" || (printf '%s\n' \"add a changelog entry for v$npm_package_version\" && exit -1)",
"our:release:check-dirty": "git diff --exit-code",
"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 && 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: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\" || (printf '%s\n' 'proper changelog entry not found' && exit -1) && git tag \"v$npm_package_version\" -am \"$MESSAGE\"",
"our:setup": "npm run our:setup:install",

@@ -201,2 +202,2 @@ "our:setup:install": "npm install",

}
}
}

@@ -13,6 +13,5 @@ <!-- TITLE/ -->

<span class="badge-npmdownloads"><a href="https://npmjs.org/package/editions" title="View this project on NPM"><img src="https://img.shields.io/npm/dm/editions.svg" alt="NPM downloads" /></a></span>
<span class="badge-daviddm"><a href="https://david-dm.org/bevry/editions" title="View the status of this project's dependencies on DavidDM"><img src="https://img.shields.io/david/bevry/editions.svg" alt="Dependency Status" /></a></span>
<span class="badge-daviddmdev"><a href="https://david-dm.org/bevry/editions#info=devDependencies" title="View the status of this project's development dependencies on DavidDM"><img src="https://img.shields.io/david/dev/bevry/editions.svg" alt="Dev Dependency Status" /></a></span>
<br class="badge-separator" />
<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>
<span class="badge-thanksdev"><a href="https://thanks.dev/u/gh/balupton" title="Donate to this project using ThanksDev"><img src="https://img.shields.io/badge/thanksdev-donate-yellow.svg" alt="ThanksDev donate button" /></a></span>
<span class="badge-patreon"><a href="https://patreon.com/bevry" title="Donate to this project using Patreon"><img src="https://img.shields.io/badge/patreon-donate-yellow.svg" alt="Patreon donate button" /></a></span>

@@ -78,2 +77,3 @@ <span class="badge-flattr"><a href="https://flattr.com/profile/balupton" title="Donate to this project using Flattr"><img src="https://img.shields.io/badge/flattr-donate-yellow.svg" alt="Flattr donate button" /></a></span>

<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>
<span class="badge-thanksdev"><a href="https://thanks.dev/u/gh/balupton" title="Donate to this project using ThanksDev"><img src="https://img.shields.io/badge/thanksdev-donate-yellow.svg" alt="ThanksDev donate button" /></a></span>
<span class="badge-patreon"><a href="https://patreon.com/bevry" title="Donate to this project using Patreon"><img src="https://img.shields.io/badge/patreon-donate-yellow.svg" alt="Patreon donate button" /></a></span>

@@ -110,4 +110,4 @@ <span class="badge-flattr"><a href="https://flattr.com/profile/balupton" title="Donate to this project using Flattr"><img src="https://img.shields.io/badge/flattr-donate-yellow.svg" alt="Flattr donate button" /></a></span>

<ul><li><a href="http://spdx.org/licenses/MIT.html">MIT License</a></li></ul>
<ul><li><a href="http://spdx.org/licenses/Artistic-2.0.html">Artistic License 2.0</a></li></ul>
<!-- /LICENSE -->

@@ -131,3 +131,3 @@ // Imports

edition.directory,
opts.entry || edition.entry || ''
opts.entry || edition.entry || '',
)

@@ -145,3 +145,3 @@

return opts.loader.call(edition, entry) as T
} catch (loadError) {
} catch (loadError: any) {
// Note the error with more details

@@ -154,3 +154,3 @@ throw errtion(

},
loadError
loadError,
)

@@ -174,3 +174,3 @@ }

message: `An edition must have its [description, directory, entry, engines] fields defined, yet all this edition defined were [${Object.keys(
edition
edition,
).join(', ')}]`,

@@ -194,3 +194,3 @@ code: 'editions-autoloader-invalid-edition',

version: string,
opts: RangeOptions
opts: RangeOptions,
): true {

@@ -224,3 +224,3 @@ // prepare

if (matchRange(version, range)) return true
} catch (error) {
} catch (error: any) {
throw errtion(

@@ -232,3 +232,3 @@ {

},
error
error,
)

@@ -266,3 +266,3 @@ }

if (matchRange(version, broadenedRange)) return true
} catch (error) {
} catch (error: any) {
throw errtion(

@@ -274,3 +274,3 @@ {

},
error
error,
)

@@ -300,3 +300,3 @@ }

engines: Engines,
opts: VersionOptions
opts: VersionOptions,
): true {

@@ -344,3 +344,3 @@ // PRepare

// if any incompatibility, it is thrown, so no need to set to false
} catch (rangeError) {
} catch (rangeError: any) {
throw errtion(

@@ -351,3 +351,3 @@ {

},
rangeError
rangeError,
)

@@ -377,7 +377,7 @@ }

edition: Edition,
opts: VersionOptions
opts: VersionOptions,
): true {
try {
return isCompatibleEngines(edition.engines, opts)
} catch (compatibleError) {
} catch (compatibleError: any) {
throw errtion(

@@ -388,3 +388,3 @@ {

},
compatibleError
compatibleError,
)

@@ -402,3 +402,3 @@ }

editions: Editions,
opts: VersionOptions
opts: VersionOptions,
): Edition {

@@ -426,3 +426,3 @@ // Prepare

return edition
} catch (error) {
} catch (error: any) {
if (error.level === 'fatal') {

@@ -435,3 +435,3 @@ throw errtion(

},
error
error,
)

@@ -464,3 +464,3 @@ } else if (failure) {

}
} catch (error) {
} catch (error: any) {
throw errtion(

@@ -471,3 +471,3 @@ {

},
error
error,
)

@@ -482,3 +482,3 @@ }

},
failure
failure,
)

@@ -503,3 +503,3 @@ }

return loadEdition<T>(edition, opts)
} catch (error) {
} catch (error: any) {
throw errtion(error, edition.debugging)

@@ -517,3 +517,3 @@ }

loader: LoaderOptions['loader'],
entry: PathOptions['entry']
entry: PathOptions['entry'],
): T {

@@ -532,3 +532,3 @@ const packagePath = resolve(cwd || '', 'package.json')

})
} catch (error) {
} catch (error: any) {
throw errtion(

@@ -539,5 +539,5 @@ {

},
error
error,
)
}
}

@@ -21,3 +21,3 @@ interface ErrtionOptions {

opts: ErrtionOptions,
parent?: Errtion | Error
parent?: Errtion | Error,
): Errtion {

@@ -24,0 +24,0 @@ // extract opts

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc