mirror of
https://github.com/pezkuwichain/phishing.git
synced 2026-04-21 22:38:02 +00:00
a4bb93cb33
- Update phishing URL to phishing.pezkuwichain.io - Update author to Dijital Kurdistan Tech Inst - Update README with Pezkuwi project references - Update IPFS reference to pezkuwichain.io - Rebrand all package references from @polkadot to @pezkuwi
33 lines
553 B
JavaScript
33 lines
553 B
JavaScript
// Copyright 2017-2026 @pezkuwi/phishing authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import { createBundle } from '@pezkuwi/dev/config/rollup';
|
|
|
|
const pkgs = [
|
|
'@pezkuwi/phishing'
|
|
];
|
|
|
|
const external = [
|
|
...pkgs,
|
|
'@pezkuwi/util',
|
|
'@pezkuwi/util-crypto'
|
|
];
|
|
|
|
const entries = {};
|
|
|
|
const overrides = {};
|
|
|
|
export default pkgs.map((pkg) => {
|
|
const override = (overrides[pkg] || {});
|
|
|
|
return createBundle({
|
|
external,
|
|
pkg,
|
|
...override,
|
|
entries: {
|
|
...entries,
|
|
...(override.entries || {})
|
|
}
|
|
});
|
|
});
|