semantic-release-lerna 2.15.2 → 2.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +15 -16
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1786,7 +1786,7 @@ var require_range = __commonJS({
|
|
|
1786
1786
|
var require_comparator = __commonJS({
|
|
1787
1787
|
"node_modules/semver/classes/comparator.js"(exports, module) {
|
|
1788
1788
|
"use strict";
|
|
1789
|
-
var ANY = Symbol("SemVer ANY");
|
|
1789
|
+
var ANY = /* @__PURE__ */ Symbol("SemVer ANY");
|
|
1790
1790
|
var Comparator = class _Comparator {
|
|
1791
1791
|
static get ANY() {
|
|
1792
1792
|
return ANY;
|
|
@@ -2514,7 +2514,6 @@ var require_commonjs = __commonJS({
|
|
|
2514
2514
|
};
|
|
2515
2515
|
}
|
|
2516
2516
|
var shouldWarn = (code) => !warned.has(code);
|
|
2517
|
-
var TYPE = Symbol("type");
|
|
2518
2517
|
var isPosInt = (n2) => n2 && n2 === Math.floor(n2) && n2 > 0 && isFinite(n2);
|
|
2519
2518
|
var getUintArray = (max) => !isPosInt(max) ? null : max <= Math.pow(2, 8) ? Uint8Array : max <= Math.pow(2, 16) ? Uint16Array : max <= Math.pow(2, 32) ? Uint32Array : max <= Number.MAX_SAFE_INTEGER ? ZeroArray : null;
|
|
2520
2519
|
var ZeroArray = class extends Array {
|
|
@@ -4454,7 +4453,7 @@ var require_lib2 = __commonJS({
|
|
|
4454
4453
|
// node_modules/npm-package-arg/node_modules/proc-log/lib/index.js
|
|
4455
4454
|
var require_lib3 = __commonJS({
|
|
4456
4455
|
"node_modules/npm-package-arg/node_modules/proc-log/lib/index.js"(exports, module) {
|
|
4457
|
-
var META = Symbol("proc-log.meta");
|
|
4456
|
+
var META = /* @__PURE__ */ Symbol("proc-log.meta");
|
|
4458
4457
|
module.exports = {
|
|
4459
4458
|
META,
|
|
4460
4459
|
output: {
|
|
@@ -10514,7 +10513,7 @@ var require_ignore = __commonJS({
|
|
|
10514
10513
|
var SLASH = "/";
|
|
10515
10514
|
var TMP_KEY_IGNORE = "node-ignore";
|
|
10516
10515
|
if (typeof Symbol !== "undefined") {
|
|
10517
|
-
TMP_KEY_IGNORE = Symbol.for("node-ignore");
|
|
10516
|
+
TMP_KEY_IGNORE = /* @__PURE__ */ Symbol.for("node-ignore");
|
|
10518
10517
|
}
|
|
10519
10518
|
var KEY_IGNORE = TMP_KEY_IGNORE;
|
|
10520
10519
|
var define = (object, key, value) => {
|
|
@@ -10947,7 +10946,7 @@ var require_ignore = __commonJS({
|
|
|
10947
10946
|
module.exports = factory;
|
|
10948
10947
|
factory.default = factory;
|
|
10949
10948
|
module.exports.isPathValid = isPathValid;
|
|
10950
|
-
define(module.exports, Symbol.for("setupWindows"), setupWindows);
|
|
10949
|
+
define(module.exports, /* @__PURE__ */ Symbol.for("setupWindows"), setupWindows);
|
|
10951
10950
|
}
|
|
10952
10951
|
});
|
|
10953
10952
|
|
|
@@ -16309,7 +16308,7 @@ var setErrorName = (ErrorClass, value) => {
|
|
|
16309
16308
|
});
|
|
16310
16309
|
};
|
|
16311
16310
|
var isExecaError = (error) => isErrorInstance(error) && execaErrorSymbol in error;
|
|
16312
|
-
var execaErrorSymbol = Symbol("isExecaError");
|
|
16311
|
+
var execaErrorSymbol = /* @__PURE__ */ Symbol("isExecaError");
|
|
16313
16312
|
var isErrorInstance = (value) => Object.prototype.toString.call(value) === "[object Error]";
|
|
16314
16313
|
var ExecaError = class extends Error {
|
|
16315
16314
|
};
|
|
@@ -17747,7 +17746,7 @@ var c = class {
|
|
|
17747
17746
|
};
|
|
17748
17747
|
}
|
|
17749
17748
|
};
|
|
17750
|
-
var n = Symbol();
|
|
17749
|
+
var n = /* @__PURE__ */ Symbol();
|
|
17751
17750
|
function i() {
|
|
17752
17751
|
return this[n].next();
|
|
17753
17752
|
}
|
|
@@ -20269,7 +20268,7 @@ var MergedStream = class extends PassThroughStream {
|
|
|
20269
20268
|
#ended = /* @__PURE__ */ new Set([]);
|
|
20270
20269
|
#aborted = /* @__PURE__ */ new Set([]);
|
|
20271
20270
|
#onFinished;
|
|
20272
|
-
#unpipeEvent = Symbol("unpipe");
|
|
20271
|
+
#unpipeEvent = /* @__PURE__ */ Symbol("unpipe");
|
|
20273
20272
|
#streamPromises = /* @__PURE__ */ new WeakMap();
|
|
20274
20273
|
add(stream) {
|
|
20275
20274
|
validateStream(stream);
|
|
@@ -20570,7 +20569,7 @@ if (process.platform === "linux") {
|
|
|
20570
20569
|
|
|
20571
20570
|
// node_modules/signal-exit/dist/mjs/index.js
|
|
20572
20571
|
var processOk = (process18) => !!process18 && typeof process18 === "object" && typeof process18.removeListener === "function" && typeof process18.emit === "function" && typeof process18.reallyExit === "function" && typeof process18.listeners === "function" && typeof process18.kill === "function" && typeof process18.pid === "number" && typeof process18.on === "function";
|
|
20573
|
-
var kExitEmitter = Symbol.for("signal-exit emitter");
|
|
20572
|
+
var kExitEmitter = /* @__PURE__ */ Symbol.for("signal-exit emitter");
|
|
20574
20573
|
var global2 = globalThis;
|
|
20575
20574
|
var ObjectDefineProperty = Object.defineProperty.bind(Object);
|
|
20576
20575
|
var Emitter = class {
|
|
@@ -22144,7 +22143,7 @@ import { format as format2 } from "node:util";
|
|
|
22144
22143
|
// src/lerna/package-graph.js
|
|
22145
22144
|
var import_npm_package_arg = __toESM(require_npa(), 1);
|
|
22146
22145
|
var import_satisfies = __toESM(require_satisfies(), 1);
|
|
22147
|
-
var PKG = Symbol("pkg");
|
|
22146
|
+
var PKG = /* @__PURE__ */ Symbol("pkg");
|
|
22148
22147
|
var PackageGraphNode = class {
|
|
22149
22148
|
/**
|
|
22150
22149
|
* @param {import("./package").Package} pkg
|
|
@@ -25664,7 +25663,7 @@ async function pMap(iterable, mapper, {
|
|
|
25664
25663
|
})();
|
|
25665
25664
|
});
|
|
25666
25665
|
}
|
|
25667
|
-
var pMapSkip = Symbol("skip");
|
|
25666
|
+
var pMapSkip = /* @__PURE__ */ Symbol("skip");
|
|
25668
25667
|
|
|
25669
25668
|
// src/utils/collect-dependents.js
|
|
25670
25669
|
function collectDependents(nodes) {
|
|
@@ -26620,7 +26619,7 @@ var path10 = {
|
|
|
26620
26619
|
};
|
|
26621
26620
|
var sep = defaultPlatform === "win32" ? path10.win32.sep : path10.posix.sep;
|
|
26622
26621
|
minimatch.sep = sep;
|
|
26623
|
-
var GLOBSTAR = Symbol("globstar **");
|
|
26622
|
+
var GLOBSTAR = /* @__PURE__ */ Symbol("globstar **");
|
|
26624
26623
|
minimatch.GLOBSTAR = GLOBSTAR;
|
|
26625
26624
|
var qmark2 = "[^/]";
|
|
26626
26625
|
var star2 = qmark2 + "*?";
|
|
@@ -27451,10 +27450,10 @@ async function writeJsonFile(filePath, data) {
|
|
|
27451
27450
|
|
|
27452
27451
|
// src/lerna/package.js
|
|
27453
27452
|
import path12 from "node:path";
|
|
27454
|
-
var PKG2 = Symbol("pkg");
|
|
27455
|
-
var _location = Symbol("location");
|
|
27456
|
-
var _rootPath = Symbol("rootPath");
|
|
27457
|
-
var _scripts = Symbol("scripts");
|
|
27453
|
+
var PKG2 = /* @__PURE__ */ Symbol("pkg");
|
|
27454
|
+
var _location = /* @__PURE__ */ Symbol("location");
|
|
27455
|
+
var _rootPath = /* @__PURE__ */ Symbol("rootPath");
|
|
27456
|
+
var _scripts = /* @__PURE__ */ Symbol("scripts");
|
|
27458
27457
|
var Package = class {
|
|
27459
27458
|
/**
|
|
27460
27459
|
* @param {RawManifest} pkg
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "semantic-release-lerna",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.16.0",
|
|
4
4
|
"description": "semantic-release plugin to publish lerna monorepo packages to npm",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"npm",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"dist"
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@actions/core": "^
|
|
40
|
+
"@actions/core": "^2.0.0",
|
|
41
41
|
"@semantic-release/error": "^4.0.0",
|
|
42
42
|
"conventional-changelog-angular": "^7.0.0 || ^8.0.0",
|
|
43
43
|
"conventional-changelog-writer": "^7.0.0 || ^8.0.0",
|