From 232f9fc93d63b8af1685cc7b6993d8d64fb14ada Mon Sep 17 00:00:00 2001 From: Facu Spagnuolo Date: Wed, 5 Aug 2020 11:53:10 -0300 Subject: [PATCH] Disputable: Move examples dir to root contracts --- .solcover.js | 2 +- contracts/.npmignore | 1 + .../examples => examples/apps/disputable}/RegistryApp.sol | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) rename contracts/{apps/disputable/examples => examples/apps/disputable}/RegistryApp.sol (99%) diff --git a/.solcover.js b/.solcover.js index e8be28492..ed82510b3 100644 --- a/.solcover.js +++ b/.solcover.js @@ -1,8 +1,8 @@ const skipFiles = [ 'lib', 'test', + 'examples', 'acl/ACLSyntaxSugar.sol', - 'apps/disputable/examples', 'common/DepositableStorage.sol', // Used in tests that send ETH 'common/UnstructuredStorage.sol' // Used in tests that send ETH ] diff --git a/contracts/.npmignore b/contracts/.npmignore index ee4c92682..a1f155026 100644 --- a/contracts/.npmignore +++ b/contracts/.npmignore @@ -1 +1,2 @@ /test +/examples diff --git a/contracts/apps/disputable/examples/RegistryApp.sol b/contracts/examples/apps/disputable/RegistryApp.sol similarity index 99% rename from contracts/apps/disputable/examples/RegistryApp.sol rename to contracts/examples/apps/disputable/RegistryApp.sol index 3bc7a23e8..4e1965b42 100644 --- a/contracts/apps/disputable/examples/RegistryApp.sol +++ b/contracts/examples/apps/disputable/RegistryApp.sol @@ -4,7 +4,7 @@ pragma solidity 0.4.24; -import "../DisputableAragonApp.sol"; +import "../../../apps/disputable/DisputableAragonApp.sol"; contract RegistryApp is DisputableAragonApp {