Bump deps (#406)

This commit is contained in:
Jaco
2021-07-11 18:20:48 +03:00
committed by GitHub
parent ed8e3bc26c
commit 1e81ba93ca
4 changed files with 378 additions and 150 deletions
+32
View File
@@ -0,0 +1,32 @@
// Copyright 2017-2021 @polkadot/api authors & contributors
// SPDX-License-Identifier: Apache-2.0
import { createBundle } from '@polkadot/dev/config/rollup';
const pkgs = [
'@polkadot/phishing'
];
const external = [
...pkgs,
'@polkadot/util',
'@polkadot/util-crypto'
];
const entries = {};
const overrides = {};
export default pkgs.map((pkg) => {
const override = (overrides[pkg] || {});
return createBundle({
external,
pkg,
...override,
entries: {
...entries,
...(override.entries || {})
}
});
});