Skip to content

Commit 837d427

Browse files
authored
Merge pull request #3 from ericglau/test-change-2
Test interdependency
2 parents 48343e1 + 093692f commit 837d427

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

.changeset/twelve-pandas-sit.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@ericglau/upgrades-core': minor
3+
---
4+
5+
test

packages/core/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,5 @@ export { makeNamespacedInput, trySanitizeNatSpec } from './utils/make-namespaced
6464
export { isNamespaceSupported } from './storage/namespace';
6565
export { inferProxyAdmin } from './infer-proxy-admin';
6666
export { assertUnreachable } from './utils/assert';
67+
68+
export const FOO = 'bar';

packages/plugin-hardhat/src/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ import type {
2525
GetUpgradeApprovalProcessFunction,
2626
} from './defender/get-approval-process';
2727

28+
import { FOO } from '@ericglau/upgrades-core';
29+
const FOO2 = FOO;
30+
export { FOO2 };
31+
2832
export interface HardhatUpgrades {
2933
deployProxy: DeployFunction;
3034
upgradeProxy: UpgradeFunction;

0 commit comments

Comments
 (0)