-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ce62d8
commit 87549c8
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Summary | ||
This version introduces resolver-engine as a dependency. It is used for import standard import resolution. | ||
|
||
Functionality that it adds to the project: | ||
|
||
* [x] Filesystem, relative and absolute imports | ||
* [x] NPM and node_modules with support for monorepo pattern | ||
* [x] URI and URL support | ||
* [x] Github and branch support | ||
* [x] IPFS through a gateway | ||
* [x] Swarm through a gateway | ||
|
||
Additionally, backwards compatibility was added to support Waffle's original resolution methods | ||
|
||
|
||
## About Resolver-Engine | ||
[Resolver-Engine](https://github.com/Crypto-Punkers/resolver-engine) project is an [Ethereum Foundation grantee](https://blog.ethereum.org/2018/08/17/ethereum-foundation-grants-update-wave-3/), with a goal to create tooling for standardised Solidity import resolution. | ||
|
||
In the past each and every framework has a different way of resolving imports, causing great anguish for the end-developers. With the Resolver-Engine, all projects that use it have a common set of supported functionality, sane defaults and maintenance of a dedicated team meaning that in the future Waffle will be able to support more imports just by upgrading the dependency. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "ethereum-waffle", | ||
"description": "Sweeter, faster and simpler than truffle.", | ||
"version": "2.0.4", | ||
"version": "2.0.5", | ||
"author": "Marek Kirejczyk <[email protected]> (http://ethworks.io)", | ||
"repository": "[email protected]:EthWorks/Waffle.git", | ||
"private": false, | ||
|