@0xweb/hardhat 0.1.16 → 0.1.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +3 -6
  2. package/readme.md +2 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@0xweb/hardhat",
3
- "description": "Hardhat plugin for 0xweb",
4
- "version": "0.1.16",
3
+ "description": "0xweb plugin for Hardhat",
4
+ "version": "0.1.17",
5
5
  "main": "./lib/index.js",
6
6
  "author": {
7
7
  "name": "Alex Kit",
@@ -18,15 +18,12 @@
18
18
  ],
19
19
  "license": "MIT",
20
20
  "dependencies": {
21
- "0xweb": "^0.9.91",
21
+ "0xweb": "^0.10.12",
22
22
  "alot": "^0.3.0",
23
23
  "atma-io": "^1.2.65",
24
24
  "memd": "^0.3.10"
25
25
  },
26
26
  "peerDependencies": {
27
- "@nomiclabs/hardhat-etherscan": ">=3.0.3",
28
- "@nomiclabs/hardhat-waffle": ">=2.0.3",
29
- "@nomiclabs/hardhat-web3": ">=2.0.0",
30
27
  "hardhat": ">=2.9.3"
31
28
  },
32
29
  "scripts": {
package/readme.md CHANGED
@@ -93,8 +93,9 @@ const text = await foo.name();
93
93
 
94
94
  # Additional parameters
95
95
 
96
- - `npx hardhat compile --source /foo/bar/qux` - compiles solidity files which are located outside the `/contracts` folder
96
+ - `npx hardhat compile --sources /foo/bar/qux` - compiles solidity files which are located outside the `/contracts` folder
97
97
  - `npx hardhat compile --artifacts /dist` - set custom folder for artifacts (ABI JSONs and TS contracts)
98
98
  - `npx hardhat compile --watch` - Compile the sources and waits to recompile on changes
99
+ - `npx hardhat compile --tsgen false` - Do not generate the TS classes
99
100
 
100
101
  ----