Skip to content

Commit e8adce7

Browse files
authoredApr 21, 2022
🧼 Add src folders to npm (#711)
* Add src files to npm * Create add-src-to-npm.md
1 parent baa1b2f commit e8adce7

File tree

7 files changed

+35
-1
lines changed

7 files changed

+35
-1
lines changed
 

‎.changeset/add-src-to-npm.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
"@ethereum-waffle/chai": patch
3+
"ethereum-waffle": patch
4+
"@ethereum-waffle/compiler": patch
5+
"@ethereum-waffle/ens": patch
6+
"@ethereum-waffle/mock-contract": patch
7+
"@ethereum-waffle/provider": patch
8+
---
9+
10+
🧼 Add src folders to npm

‎waffle-chai/package.json

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
"access": "public",
1111
"tag": "alpha"
1212
},
13+
"files": [
14+
"dist",
15+
"src"
16+
],
1317
"keywords": [
1418
"ethereum",
1519
"smart-contracts",

‎waffle-cli/package.json

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
"access": "public",
1111
"tag": "alpha"
1212
},
13+
"files": [
14+
"dist",
15+
"src"
16+
],
1317
"keywords": [
1418
"ethereum",
1519
"smart-contracts",

‎waffle-compiler/package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@
99
"publishConfig": {
1010
"access": "public",
1111
"tag": "alpha"
12-
},
12+
},
13+
"files": [
14+
"dist",
15+
"src"
16+
],
1317
"keywords": [
1418
"ethereum",
1519
"smart-contracts",

‎waffle-ens/package.json

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
"access": "public",
1111
"tag": "alpha"
1212
},
13+
"files": [
14+
"dist",
15+
"src"
16+
],
1317
"keywords": [
1418
"ethereum",
1519
"smart-contracts",

‎waffle-mock-contract/package.json

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
"access": "public",
1111
"tag": "alpha"
1212
},
13+
"files": [
14+
"dist",
15+
"src"
16+
],
1317
"keywords": [
1418
"ethereum",
1519
"smart-contracts",

‎waffle-provider/package.json

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
"access": "public",
1111
"tag": "alpha"
1212
},
13+
"files": [
14+
"dist",
15+
"src"
16+
],
1317
"keywords": [
1418
"ethereum",
1519
"smart-contracts",

0 commit comments

Comments
 (0)
Please sign in to comment.