Skip to content

Commit 4ca9670

Browse files
authored
Bump deps (#5517)
* Bump deps * Bump dev
1 parent 8fee66c commit 4ca9670

File tree

23 files changed

+76
-706
lines changed

23 files changed

+76
-706
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"@babel/core": "^7.21.0",
4141
"@babel/register": "^7.21.0",
4242
"@babel/runtime": "^7.21.0",
43-
"@polkadot/dev": "^0.69.25",
43+
"@polkadot/dev": "^0.69.27",
4444
"@polkadot/typegen": "workspace:packages/typegen",
4545
"@types/node": "^18.14.5"
4646
},

packages/api-augment/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
"version": "9.14.3-10-x",
2424
"main": "index.js",
2525
"dependencies": {
26-
"@babel/runtime": "^7.21.0",
2726
"@polkadot/api-base": "9.14.3-10-x",
2827
"@polkadot/rpc-augment": "9.14.3-10-x",
2928
"@polkadot/types": "9.14.3-10-x",
3029
"@polkadot/types-augment": "9.14.3-10-x",
3130
"@polkadot/types-codec": "9.14.3-10-x",
32-
"@polkadot/util": "^10.4.2"
31+
"@polkadot/util": "^10.4.2",
32+
"tslib": "^2.5.0"
3333
}
3434
}

packages/api-base/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
"version": "9.14.3-10-x",
2424
"main": "index.js",
2525
"dependencies": {
26-
"@babel/runtime": "^7.21.0",
2726
"@polkadot/rpc-core": "9.14.3-10-x",
2827
"@polkadot/types": "9.14.3-10-x",
2928
"@polkadot/util": "^10.4.2",
30-
"rxjs": "^7.8.0"
29+
"rxjs": "^7.8.0",
30+
"tslib": "^2.5.0"
3131
}
3232
}

packages/api-contract/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
"version": "9.14.3-10-x",
2424
"main": "index.js",
2525
"dependencies": {
26-
"@babel/runtime": "^7.21.0",
2726
"@polkadot/api": "9.14.3-10-x",
2827
"@polkadot/types": "9.14.3-10-x",
2928
"@polkadot/types-codec": "9.14.3-10-x",
3029
"@polkadot/types-create": "9.14.3-10-x",
3130
"@polkadot/util": "^10.4.2",
3231
"@polkadot/util-crypto": "^10.4.2",
33-
"rxjs": "^7.8.0"
32+
"rxjs": "^7.8.0",
33+
"tslib": "^2.5.0"
3434
},
3535
"devDependencies": {
3636
"@polkadot/api-augment": "9.14.3-10-x",

packages/api-contract/src/Abi/toLatest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { v3ToV4 } from './toV4';
1111

1212
// The versions where an enum is used, aka V0 is missing
1313
// (Order from newest, i.e. we expect more on newest vs oldest)
14-
export const enumVersions = <const> ['V4', 'V3', 'V2', 'V1'];
14+
export const enumVersions = ['V4', 'V3', 'V2', 'V1'] as const;
1515

1616
type Versions = typeof enumVersions[number] | 'V0';
1717

packages/api-contract/src/Abi/toV2.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ interface ArgsEntry <T extends WithArgs> extends NamedEntry {
2323
args: GetArgsType<T>['args'][0][];
2424
}
2525

26-
const ARG_TYPES = <const> {
26+
const ARG_TYPES = {
2727
ContractConstructorSpec: 'ContractMessageParamSpecV2',
2828
ContractEventSpec: 'ContractEventParamSpecV2',
2929
ContractMessageSpec: 'ContractMessageParamSpecV2'
30-
};
30+
} as const;
3131

3232
function v1ToV2Label (entry: NamedEntry): { label: Text } {
3333
return objectSpread({}, entry, {

packages/api-derive/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
"version": "9.14.3-10-x",
2424
"main": "index.js",
2525
"dependencies": {
26-
"@babel/runtime": "^7.21.0",
2726
"@polkadot/api": "9.14.3-10-x",
2827
"@polkadot/api-augment": "9.14.3-10-x",
2928
"@polkadot/api-base": "9.14.3-10-x",
@@ -32,7 +31,8 @@
3231
"@polkadot/types-codec": "9.14.3-10-x",
3332
"@polkadot/util": "^10.4.2",
3433
"@polkadot/util-crypto": "^10.4.2",
35-
"rxjs": "^7.8.0"
34+
"rxjs": "^7.8.0",
35+
"tslib": "^2.5.0"
3636
},
3737
"devDependencies": {
3838
"@polkadot/api": "9.14.3-10-x",

packages/api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
"version": "9.14.3-10-x",
2424
"main": "index.js",
2525
"dependencies": {
26-
"@babel/runtime": "^7.21.0",
2726
"@polkadot/api-augment": "9.14.3-10-x",
2827
"@polkadot/api-base": "9.14.3-10-x",
2928
"@polkadot/api-derive": "9.14.3-10-x",
@@ -39,7 +38,8 @@
3938
"@polkadot/util": "^10.4.2",
4039
"@polkadot/util-crypto": "^10.4.2",
4140
"eventemitter3": "^5.0.0",
42-
"rxjs": "^7.8.0"
41+
"rxjs": "^7.8.0",
42+
"tslib": "^2.5.0"
4343
},
4444
"devDependencies": {
4545
"@polkadot/api-augment": "9.14.3-10-x",

packages/rpc-augment/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
"version": "9.14.3-10-x",
2424
"main": "index.js",
2525
"dependencies": {
26-
"@babel/runtime": "^7.21.0",
2726
"@polkadot/rpc-core": "9.14.3-10-x",
2827
"@polkadot/types": "9.14.3-10-x",
2928
"@polkadot/types-codec": "9.14.3-10-x",
30-
"@polkadot/util": "^10.4.2"
29+
"@polkadot/util": "^10.4.2",
30+
"tslib": "^2.5.0"
3131
}
3232
}

packages/rpc-core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
"version": "9.14.3-10-x",
2424
"main": "index.js",
2525
"dependencies": {
26-
"@babel/runtime": "^7.21.0",
2726
"@polkadot/rpc-augment": "9.14.3-10-x",
2827
"@polkadot/rpc-provider": "9.14.3-10-x",
2928
"@polkadot/types": "9.14.3-10-x",
3029
"@polkadot/util": "^10.4.2",
31-
"rxjs": "^7.8.0"
30+
"rxjs": "^7.8.0",
31+
"tslib": "^2.5.0"
3232
},
3333
"devDependencies": {
3434
"@polkadot/keyring": "^10.4.2",

0 commit comments

Comments
 (0)