Bump dev (w/ eslint config adj) (#3388)

This commit is contained in:
Jaco
2023-05-21 12:39:51 +03:00
committed by GitHub
parent 20ec379bba
commit bbbdaa4490
5 changed files with 271 additions and 31 deletions
+32
View File
@@ -0,0 +1,32 @@
// Copyright 2017-2023 @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 || {})
}
});
});