Files
phishing/rollup.config.js
T
Husni 78a6704878 Update all.json (#5627)
* update all.json

* update all.json

* fix: update headers
2026-01-02 02:08:14 +01:00

33 lines
558 B
JavaScript

// Copyright 2017-2026 @polkadot/phishing 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 || {})
}
});
});