@parity/product-deploy 0.8.1-rc.0 → 0.8.1-rc.1
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/bug-report.js +4 -4
- package/dist/{chunk-FOEN7YJJ.js → chunk-5QX6RJWD.js} +2 -2
- package/dist/{chunk-QBLF2QOF.js → chunk-67LJSVIF.js} +1 -1
- package/dist/{chunk-WZPOMNDN.js → chunk-EGPPGZXB.js} +2 -2
- package/dist/{chunk-PDGCOS2R.js → chunk-IT2RZLUT.js} +2 -2
- package/dist/{chunk-JZVSPRCN.js → chunk-KBZXNQOT.js} +1 -1
- package/dist/{chunk-TWNQE5AS.js → chunk-KVWIZYYV.js} +1 -1
- package/dist/{chunk-JCOZV25R.js → chunk-L5Z3TJD7.js} +5 -2
- package/dist/{chunk-V5YNQIYT.js → chunk-RZQQLSF4.js} +1 -1
- package/dist/{chunk-S7EC2NDH.js → chunk-VCOYLHNE.js} +5 -5
- package/dist/{chunk-642WRYPR.js → chunk-XOQ7IJOQ.js} +2 -2
- package/dist/chunk-probe.js +3 -3
- package/dist/deploy.js +8 -8
- package/dist/dotns.js +4 -4
- package/dist/index.js +9 -9
- package/dist/manifest/publish.js +9 -9
- package/dist/memory-report.js +2 -2
- package/dist/merkle.js +8 -8
- package/dist/personhood/bind-paid-alias.js +1 -1
- package/dist/personhood/bootstrap.js +5 -5
- package/dist/personhood/people-client.js +4 -4
- package/dist/personhood/reprove.js +5 -2
- package/dist/pool.js +3 -3
- package/dist/run-state.js +1 -1
- package/dist/telemetry.js +2 -2
- package/dist/version-check.js +3 -3
- package/package.json +2 -2
package/dist/bug-report.js
CHANGED
|
@@ -9,10 +9,10 @@ import {
|
|
|
9
9
|
offerBugReport,
|
|
10
10
|
scrubSecrets,
|
|
11
11
|
setDeployContext
|
|
12
|
-
} from "./chunk-
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
15
|
-
import "./chunk-
|
|
12
|
+
} from "./chunk-5QX6RJWD.js";
|
|
13
|
+
import "./chunk-KBZXNQOT.js";
|
|
14
|
+
import "./chunk-KVWIZYYV.js";
|
|
15
|
+
import "./chunk-XOQ7IJOQ.js";
|
|
16
16
|
export {
|
|
17
17
|
buildCliFlagsSummary,
|
|
18
18
|
buildLabels,
|
|
@@ -2,11 +2,11 @@ import {
|
|
|
2
2
|
classifyErrorArea,
|
|
3
3
|
isInteractive,
|
|
4
4
|
promptYesNo
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-KBZXNQOT.js";
|
|
6
6
|
import {
|
|
7
7
|
VERSION,
|
|
8
8
|
getCurrentSentryTraceId
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-KVWIZYYV.js";
|
|
10
10
|
|
|
11
11
|
// src/bug-report.ts
|
|
12
12
|
import { execSync, execFileSync } from "child_process";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
isTestnetSpecName
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-RZQQLSF4.js";
|
|
4
4
|
import {
|
|
5
5
|
captureWarning,
|
|
6
6
|
markCodePath,
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
setDeploySentryTag,
|
|
9
9
|
truncateAddress,
|
|
10
10
|
withSpan
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-KVWIZYYV.js";
|
|
12
12
|
import {
|
|
13
13
|
validateContractAddresses
|
|
14
14
|
} from "./chunk-CNPB4VAM.js";
|
|
@@ -6,10 +6,10 @@ import {
|
|
|
6
6
|
resolveDotnsConnectOptions,
|
|
7
7
|
storeDirectory,
|
|
8
8
|
storeFile
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-VCOYLHNE.js";
|
|
10
10
|
import {
|
|
11
11
|
DotNS
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-EGPPGZXB.js";
|
|
13
13
|
import {
|
|
14
14
|
getPopSelfServeConfig,
|
|
15
15
|
loadEnvironments,
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
} from "./chunk-ZYVGHDMU.js";
|
|
16
16
|
|
|
17
17
|
// src/personhood/bind-paid-alias.ts
|
|
18
|
-
import { getSs58AddressInfo } from "polkadot-api";
|
|
18
|
+
import { getSs58AddressInfo, Binary } from "polkadot-api";
|
|
19
19
|
var PaidAliasBindingError = class extends Error {
|
|
20
20
|
kind;
|
|
21
21
|
dispatchError;
|
|
@@ -134,7 +134,10 @@ var bindPaidAliasToAccount = async ({
|
|
|
134
134
|
);
|
|
135
135
|
}
|
|
136
136
|
const tx = ah.tx.AliasAccounts.set_alias_account({
|
|
137
|
-
proof
|
|
137
|
+
// `proof` is a BoundedVec<u8> → papi needs a Binary, not a hex string (hex string
|
|
138
|
+
// fails isCompat → "Incompatible runtime entry"). collection/context are [u8;32]
|
|
139
|
+
// FixedSizeBinary and correctly stay hex strings. See e2e-chain-calls.test.js.
|
|
140
|
+
proof: Binary.fromHex(bytesToHex(proof)),
|
|
138
141
|
collection: collectionId,
|
|
139
142
|
ring_index: ringIndex,
|
|
140
143
|
ring_revision: revision,
|
|
@@ -20,10 +20,10 @@ import {
|
|
|
20
20
|
} from "./chunk-S7EM5VMW.js";
|
|
21
21
|
import {
|
|
22
22
|
setDeployContext
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-5QX6RJWD.js";
|
|
24
24
|
import {
|
|
25
25
|
probeChunks
|
|
26
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-67LJSVIF.js";
|
|
27
27
|
import {
|
|
28
28
|
packSection
|
|
29
29
|
} from "./chunk-C2TS5MER.js";
|
|
@@ -35,7 +35,7 @@ import {
|
|
|
35
35
|
parseDomainName,
|
|
36
36
|
popStatusName,
|
|
37
37
|
verifyNonceAdvanced
|
|
38
|
-
} from "./chunk-
|
|
38
|
+
} from "./chunk-EGPPGZXB.js";
|
|
39
39
|
import {
|
|
40
40
|
derivePoolAccounts,
|
|
41
41
|
detectTestnet,
|
|
@@ -43,7 +43,7 @@ import {
|
|
|
43
43
|
fetchPoolAuthorizations,
|
|
44
44
|
selectAccount,
|
|
45
45
|
topUpBy
|
|
46
|
-
} from "./chunk-
|
|
46
|
+
} from "./chunk-RZQQLSF4.js";
|
|
47
47
|
import {
|
|
48
48
|
VERSION,
|
|
49
49
|
captureWarning,
|
|
@@ -57,7 +57,7 @@ import {
|
|
|
57
57
|
truncateAddress,
|
|
58
58
|
withDeploySpan,
|
|
59
59
|
withSpan
|
|
60
|
-
} from "./chunk-
|
|
60
|
+
} from "./chunk-KVWIZYYV.js";
|
|
61
61
|
import {
|
|
62
62
|
DEFAULT_ENV_ID,
|
|
63
63
|
getPopSelfServeConfig,
|
|
@@ -6,7 +6,7 @@ import * as path from "path";
|
|
|
6
6
|
// package.json
|
|
7
7
|
var package_default = {
|
|
8
8
|
name: "@parity/product-deploy",
|
|
9
|
-
version: "0.8.1-rc.
|
|
9
|
+
version: "0.8.1-rc.1",
|
|
10
10
|
private: false,
|
|
11
11
|
repository: {
|
|
12
12
|
type: "git",
|
|
@@ -49,7 +49,7 @@ var package_default = {
|
|
|
49
49
|
"refresh-environments": "node scripts/refresh-environments.mjs",
|
|
50
50
|
"check:watched-dependencies": "node tools/check-watched-dependencies.mjs",
|
|
51
51
|
prepare: "npm run build",
|
|
52
|
-
test: "npm run build && node --test test/test.js test/cli-help.test.js test/helpers/e2e-helpers.test.js test/environments.test.js test/refresh-environments.test.js test/watched-dependencies.test.js test/chunk-sharing-report.test.js test/product-manifest.test.js",
|
|
52
|
+
test: "npm run build && node --test test/test.js test/cli-help.test.js test/helpers/e2e-helpers.test.js test/environments.test.js test/refresh-environments.test.js test/watched-dependencies.test.js test/chunk-sharing-report.test.js test/product-manifest.test.js test/cache-savings-totals.test.js test/error-pattern-signature.test.js test/exit-codes.test.js test/probe-env-health.test.js test/e2e-chain-calls.test.js",
|
|
53
53
|
"test:e2e": "npm run build && node --test test/e2e.test.js",
|
|
54
54
|
"test:e2e:smoke": "bash scripts/e2e-pass.sh smoke",
|
|
55
55
|
"test:e2e:pr": "bash scripts/e2e-pass.sh pr",
|
package/dist/chunk-probe.js
CHANGED
|
@@ -5,9 +5,9 @@ import {
|
|
|
5
5
|
_decodeStorageValue,
|
|
6
6
|
_resetProbeSession,
|
|
7
7
|
probeChunks
|
|
8
|
-
} from "./chunk-
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
8
|
+
} from "./chunk-67LJSVIF.js";
|
|
9
|
+
import "./chunk-KVWIZYYV.js";
|
|
10
|
+
import "./chunk-XOQ7IJOQ.js";
|
|
11
11
|
export {
|
|
12
12
|
ChainProbeCrossValidationError,
|
|
13
13
|
ChainProbeMetadataError,
|
package/dist/deploy.js
CHANGED
|
@@ -36,19 +36,19 @@ import {
|
|
|
36
36
|
storeDirectoryV2,
|
|
37
37
|
storeFile,
|
|
38
38
|
unpublish
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-VCOYLHNE.js";
|
|
40
40
|
import "./chunk-IW3X2MJF.js";
|
|
41
41
|
import "./chunk-KOSF5FDO.js";
|
|
42
42
|
import "./chunk-L2SKSKB6.js";
|
|
43
43
|
import "./chunk-S7EM5VMW.js";
|
|
44
|
-
import "./chunk-
|
|
45
|
-
import "./chunk-
|
|
46
|
-
import "./chunk-
|
|
44
|
+
import "./chunk-5QX6RJWD.js";
|
|
45
|
+
import "./chunk-KBZXNQOT.js";
|
|
46
|
+
import "./chunk-67LJSVIF.js";
|
|
47
47
|
import "./chunk-C2TS5MER.js";
|
|
48
|
-
import "./chunk-
|
|
49
|
-
import "./chunk-
|
|
50
|
-
import "./chunk-
|
|
51
|
-
import "./chunk-
|
|
48
|
+
import "./chunk-EGPPGZXB.js";
|
|
49
|
+
import "./chunk-RZQQLSF4.js";
|
|
50
|
+
import "./chunk-KVWIZYYV.js";
|
|
51
|
+
import "./chunk-XOQ7IJOQ.js";
|
|
52
52
|
import "./chunk-CNPB4VAM.js";
|
|
53
53
|
import {
|
|
54
54
|
EXIT_CODE_NO_RETRY,
|
package/dist/dotns.js
CHANGED
|
@@ -48,10 +48,10 @@ import {
|
|
|
48
48
|
stripTrailingDigits,
|
|
49
49
|
validateDomainLabel,
|
|
50
50
|
verifyNonceAdvanced
|
|
51
|
-
} from "./chunk-
|
|
52
|
-
import "./chunk-
|
|
53
|
-
import "./chunk-
|
|
54
|
-
import "./chunk-
|
|
51
|
+
} from "./chunk-EGPPGZXB.js";
|
|
52
|
+
import "./chunk-RZQQLSF4.js";
|
|
53
|
+
import "./chunk-KVWIZYYV.js";
|
|
54
|
+
import "./chunk-XOQ7IJOQ.js";
|
|
55
55
|
import "./chunk-CNPB4VAM.js";
|
|
56
56
|
import "./chunk-ZOC4GITL.js";
|
|
57
57
|
export {
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
} from "./chunk-MMAZFJDG.js";
|
|
8
8
|
import {
|
|
9
9
|
publishManifest
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-IT2RZLUT.js";
|
|
11
11
|
import {
|
|
12
12
|
DEFAULT_TEXT_RECORD_BUDGET_BYTES,
|
|
13
13
|
PLACEHOLDER_CID,
|
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
deploy,
|
|
25
25
|
merkleizeJS,
|
|
26
26
|
merkleizeWithStableOrder
|
|
27
|
-
} from "./chunk-
|
|
27
|
+
} from "./chunk-VCOYLHNE.js";
|
|
28
28
|
import {
|
|
29
29
|
computeStats,
|
|
30
30
|
renderSummary,
|
|
@@ -46,26 +46,26 @@ import {
|
|
|
46
46
|
isVolatilePath,
|
|
47
47
|
parseManifest
|
|
48
48
|
} from "./chunk-S7EM5VMW.js";
|
|
49
|
-
import "./chunk-
|
|
50
|
-
import "./chunk-
|
|
49
|
+
import "./chunk-5QX6RJWD.js";
|
|
50
|
+
import "./chunk-KBZXNQOT.js";
|
|
51
51
|
import {
|
|
52
52
|
probeChunks
|
|
53
|
-
} from "./chunk-
|
|
53
|
+
} from "./chunk-67LJSVIF.js";
|
|
54
54
|
import "./chunk-C2TS5MER.js";
|
|
55
55
|
import {
|
|
56
56
|
DEFAULT_MNEMONIC,
|
|
57
57
|
DotNS,
|
|
58
58
|
parseDomainName,
|
|
59
59
|
sanitizeDomainLabel
|
|
60
|
-
} from "./chunk-
|
|
60
|
+
} from "./chunk-EGPPGZXB.js";
|
|
61
61
|
import {
|
|
62
62
|
bootstrapPool,
|
|
63
63
|
derivePoolAccounts,
|
|
64
64
|
ensureAuthorized,
|
|
65
65
|
fetchPoolAuthorizations,
|
|
66
66
|
selectAccount
|
|
67
|
-
} from "./chunk-
|
|
68
|
-
import "./chunk-
|
|
67
|
+
} from "./chunk-RZQQLSF4.js";
|
|
68
|
+
import "./chunk-KVWIZYYV.js";
|
|
69
69
|
import {
|
|
70
70
|
VERSION,
|
|
71
71
|
loadRunState,
|
|
@@ -75,7 +75,7 @@ import {
|
|
|
75
75
|
shouldSkipStaleWarning,
|
|
76
76
|
stateFilePath,
|
|
77
77
|
writeRunState
|
|
78
|
-
} from "./chunk-
|
|
78
|
+
} from "./chunk-XOQ7IJOQ.js";
|
|
79
79
|
import {
|
|
80
80
|
DEFAULT_ENV_ID,
|
|
81
81
|
defaultBundledPath,
|
package/dist/manifest/publish.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import {
|
|
2
2
|
publishManifest
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-IT2RZLUT.js";
|
|
4
4
|
import "../chunk-RI3ZLNPN.js";
|
|
5
|
-
import "../chunk-
|
|
5
|
+
import "../chunk-VCOYLHNE.js";
|
|
6
6
|
import "../chunk-IW3X2MJF.js";
|
|
7
7
|
import "../chunk-KOSF5FDO.js";
|
|
8
8
|
import "../chunk-L2SKSKB6.js";
|
|
9
9
|
import "../chunk-S7EM5VMW.js";
|
|
10
|
-
import "../chunk-
|
|
11
|
-
import "../chunk-
|
|
12
|
-
import "../chunk-
|
|
10
|
+
import "../chunk-5QX6RJWD.js";
|
|
11
|
+
import "../chunk-KBZXNQOT.js";
|
|
12
|
+
import "../chunk-67LJSVIF.js";
|
|
13
13
|
import "../chunk-C2TS5MER.js";
|
|
14
|
-
import "../chunk-
|
|
15
|
-
import "../chunk-
|
|
16
|
-
import "../chunk-
|
|
17
|
-
import "../chunk-
|
|
14
|
+
import "../chunk-EGPPGZXB.js";
|
|
15
|
+
import "../chunk-RZQQLSF4.js";
|
|
16
|
+
import "../chunk-KVWIZYYV.js";
|
|
17
|
+
import "../chunk-XOQ7IJOQ.js";
|
|
18
18
|
import "../chunk-CNPB4VAM.js";
|
|
19
19
|
import "../chunk-ZOC4GITL.js";
|
|
20
20
|
import "../chunk-HOTQDYHD.js";
|
package/dist/memory-report.js
CHANGED
package/dist/merkle.js
CHANGED
|
@@ -6,19 +6,19 @@ import {
|
|
|
6
6
|
merkleizeKuboBackend,
|
|
7
7
|
merkleizeWithStableOrder,
|
|
8
8
|
rebuildOrderedCarFromBytes
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-VCOYLHNE.js";
|
|
10
10
|
import "./chunk-IW3X2MJF.js";
|
|
11
11
|
import "./chunk-KOSF5FDO.js";
|
|
12
12
|
import "./chunk-L2SKSKB6.js";
|
|
13
13
|
import "./chunk-S7EM5VMW.js";
|
|
14
|
-
import "./chunk-
|
|
15
|
-
import "./chunk-
|
|
16
|
-
import "./chunk-
|
|
14
|
+
import "./chunk-5QX6RJWD.js";
|
|
15
|
+
import "./chunk-KBZXNQOT.js";
|
|
16
|
+
import "./chunk-67LJSVIF.js";
|
|
17
17
|
import "./chunk-C2TS5MER.js";
|
|
18
|
-
import "./chunk-
|
|
19
|
-
import "./chunk-
|
|
20
|
-
import "./chunk-
|
|
21
|
-
import "./chunk-
|
|
18
|
+
import "./chunk-EGPPGZXB.js";
|
|
19
|
+
import "./chunk-RZQQLSF4.js";
|
|
20
|
+
import "./chunk-KVWIZYYV.js";
|
|
21
|
+
import "./chunk-XOQ7IJOQ.js";
|
|
22
22
|
import "./chunk-CNPB4VAM.js";
|
|
23
23
|
import "./chunk-ZOC4GITL.js";
|
|
24
24
|
import "./chunk-HOTQDYHD.js";
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
import "../chunk-UPWEOGLQ.js";
|
|
6
6
|
import {
|
|
7
7
|
bindPaidAliasToAccount
|
|
8
|
-
} from "../chunk-
|
|
8
|
+
} from "../chunk-L5Z3TJD7.js";
|
|
9
9
|
import "../chunk-SLE4P6MO.js";
|
|
10
10
|
import {
|
|
11
11
|
bindPersonalIdToAccount
|
|
@@ -26,10 +26,10 @@ import {
|
|
|
26
26
|
} from "../chunk-ZYVGHDMU.js";
|
|
27
27
|
import {
|
|
28
28
|
WS_HEARTBEAT_TIMEOUT_MS
|
|
29
|
-
} from "../chunk-
|
|
30
|
-
import "../chunk-
|
|
31
|
-
import "../chunk-
|
|
32
|
-
import "../chunk-
|
|
29
|
+
} from "../chunk-EGPPGZXB.js";
|
|
30
|
+
import "../chunk-RZQQLSF4.js";
|
|
31
|
+
import "../chunk-KVWIZYYV.js";
|
|
32
|
+
import "../chunk-XOQ7IJOQ.js";
|
|
33
33
|
import {
|
|
34
34
|
loadEnvironments
|
|
35
35
|
} from "../chunk-CNPB4VAM.js";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
WS_HEARTBEAT_TIMEOUT_MS
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-EGPPGZXB.js";
|
|
4
|
+
import "../chunk-RZQQLSF4.js";
|
|
5
|
+
import "../chunk-KVWIZYYV.js";
|
|
6
|
+
import "../chunk-XOQ7IJOQ.js";
|
|
7
7
|
import {
|
|
8
8
|
loadEnvironments
|
|
9
9
|
} from "../chunk-CNPB4VAM.js";
|
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
} from "../chunk-ZYVGHDMU.js";
|
|
14
14
|
|
|
15
15
|
// src/personhood/reprove.ts
|
|
16
|
-
import { getSs58AddressInfo } from "polkadot-api";
|
|
16
|
+
import { getSs58AddressInfo, Binary } from "polkadot-api";
|
|
17
17
|
var ReproveAliasError = class extends Error {
|
|
18
18
|
kind;
|
|
19
19
|
dispatchError;
|
|
@@ -132,7 +132,10 @@ var reproveAliasToAccount = async ({
|
|
|
132
132
|
);
|
|
133
133
|
}
|
|
134
134
|
const tx = ah.tx.AliasAccounts.reprove_alias_account({
|
|
135
|
-
proof
|
|
135
|
+
// papi encodes the BoundedVec<u8> `proof` from a Binary, NOT a hex string;
|
|
136
|
+
// passing a hex string fails isCompat → "Incompatible runtime entry". (FixedSizeBinary
|
|
137
|
+
// [u8;N] args like collection/context stay hex strings — see e2e-chain-calls.test.js.)
|
|
138
|
+
proof: Binary.fromHex(bytesToHex(proof)),
|
|
136
139
|
ring_index: ringIndex,
|
|
137
140
|
ring_revision: newRevision,
|
|
138
141
|
proof_valid_at: proofValidAt
|
package/dist/pool.js
CHANGED
|
@@ -12,9 +12,9 @@ import {
|
|
|
12
12
|
isTestnetSpecName,
|
|
13
13
|
selectAccount,
|
|
14
14
|
topUpBy
|
|
15
|
-
} from "./chunk-
|
|
16
|
-
import "./chunk-
|
|
17
|
-
import "./chunk-
|
|
15
|
+
} from "./chunk-RZQQLSF4.js";
|
|
16
|
+
import "./chunk-KVWIZYYV.js";
|
|
17
|
+
import "./chunk-XOQ7IJOQ.js";
|
|
18
18
|
export {
|
|
19
19
|
_resetTestnetCacheForTests,
|
|
20
20
|
bootstrapPool,
|
package/dist/run-state.js
CHANGED
package/dist/telemetry.js
CHANGED
package/dist/version-check.js
CHANGED
|
@@ -11,9 +11,9 @@ import {
|
|
|
11
11
|
isPreReleaseVersion,
|
|
12
12
|
preReleaseWarning,
|
|
13
13
|
promptYesNo
|
|
14
|
-
} from "./chunk-
|
|
15
|
-
import "./chunk-
|
|
16
|
-
import "./chunk-
|
|
14
|
+
} from "./chunk-KBZXNQOT.js";
|
|
15
|
+
import "./chunk-KVWIZYYV.js";
|
|
16
|
+
import "./chunk-XOQ7IJOQ.js";
|
|
17
17
|
export {
|
|
18
18
|
assessVersion,
|
|
19
19
|
checkNodeVersion,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parity/product-deploy",
|
|
3
|
-
"version": "0.8.1-rc.
|
|
3
|
+
"version": "0.8.1-rc.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"refresh-environments": "node scripts/refresh-environments.mjs",
|
|
44
44
|
"check:watched-dependencies": "node tools/check-watched-dependencies.mjs",
|
|
45
45
|
"prepare": "npm run build",
|
|
46
|
-
"test": "npm run build && node --test test/test.js test/cli-help.test.js test/helpers/e2e-helpers.test.js test/environments.test.js test/refresh-environments.test.js test/watched-dependencies.test.js test/chunk-sharing-report.test.js test/product-manifest.test.js",
|
|
46
|
+
"test": "npm run build && node --test test/test.js test/cli-help.test.js test/helpers/e2e-helpers.test.js test/environments.test.js test/refresh-environments.test.js test/watched-dependencies.test.js test/chunk-sharing-report.test.js test/product-manifest.test.js test/cache-savings-totals.test.js test/error-pattern-signature.test.js test/exit-codes.test.js test/probe-env-health.test.js test/e2e-chain-calls.test.js",
|
|
47
47
|
"test:e2e": "npm run build && node --test test/e2e.test.js",
|
|
48
48
|
"test:e2e:smoke": "bash scripts/e2e-pass.sh smoke",
|
|
49
49
|
"test:e2e:pr": "bash scripts/e2e-pass.sh pr",
|