Skip to content

Commit c144c76

Browse files
committed
update ignition packages with previously top-level dependencies
1 parent 102c229 commit c144c76

File tree

11 files changed

+3722
-89
lines changed

11 files changed

+3722
-89
lines changed
+146-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,146 @@
1-
dist/
2-
etc/
3-
temp/
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
.pnpm-debug.log*
9+
*.ndjson
10+
11+
# Diagnostic reports (https://nodejs.org/api/report.html)
12+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
13+
14+
# Runtime data
15+
pids
16+
*.pid
17+
*.seed
18+
*.pid.lock
19+
20+
# Directory for instrumented libs generated by jscoverage/JSCover
21+
lib-cov
22+
23+
# Coverage directory used by tools like istanbul
24+
coverage
25+
*.lcov
26+
27+
# nyc test coverage
28+
.nyc_output
29+
30+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
31+
.grunt
32+
33+
# Bower dependency directory (https://bower.io/)
34+
bower_components
35+
36+
# node-waf configuration
37+
.lock-wscript
38+
39+
# Compiled binary addons (https://nodejs.org/api/addons.html)
40+
build/Release
41+
42+
# Dependency directories
43+
node_modules/
44+
jspm_packages/
45+
46+
# Snowpack dependency directory (https://snowpack.dev/)
47+
web_modules/
48+
49+
# TypeScript cache
50+
*.tsbuildinfo
51+
52+
# Optional npm cache directory
53+
.npm
54+
55+
# Optional eslint cache
56+
.eslintcache
57+
58+
# Optional stylelint cache
59+
.stylelintcache
60+
61+
# Microbundle cache
62+
.rpt2_cache/
63+
.rts2_cache_cjs/
64+
.rts2_cache_es/
65+
.rts2_cache_umd/
66+
67+
# Optional REPL history
68+
.node_repl_history
69+
70+
# Output of 'npm pack'
71+
*.tgz
72+
73+
# Yarn Integrity file
74+
.yarn-integrity
75+
76+
# dotenv environment variable files
77+
.env
78+
.env.development.local
79+
.env.test.local
80+
.env.production.local
81+
.env.local
82+
83+
# parcel-bundler cache (https://parceljs.org/)
84+
.cache
85+
.parcel-cache
86+
87+
# Next.js build output
88+
.next
89+
out
90+
91+
# Nuxt.js build / generate output
92+
.nuxt
93+
dist
94+
etc
95+
temp
96+
97+
# Gatsby files
98+
.cache/
99+
# Comment in the public line in if your project uses Gatsby and not Next.js
100+
# https://nextjs.org/blog/next-9-1#public-directory-support
101+
# public
102+
103+
# vuepress build output
104+
.vuepress/dist
105+
106+
# vuepress v2.x temp and cache directory
107+
.temp
108+
.cache
109+
110+
# Docusaurus cache and generated files
111+
.docusaurus
112+
113+
# Serverless directories
114+
.serverless/
115+
116+
# FuseBox cache
117+
.fusebox/
118+
119+
# DynamoDB Local files
120+
.dynamodb/
121+
122+
# TernJS port file
123+
.tern-port
124+
125+
# Stores VSCode versions used for testing VSCode extensions
126+
.vscode-test
127+
128+
# yarn v2
129+
.yarn/cache
130+
.yarn/unplugged
131+
.yarn/build-state.yml
132+
.yarn/install-state.gz
133+
.pnp.*
134+
.npmrc
135+
136+
# Mac OSX garbage
137+
.DS_Store
138+
139+
# Custom workspace settings for VSCode
140+
.vscode/settings.json
141+
142+
# Webstorm files
143+
.idea/
144+
145+
# npm lockfile since we use pnpm now
146+
package-lock.json

packages/hardhat-ignition-core/package.json

+28-1
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,36 @@
4646
"prepack": "pnpm build"
4747
},
4848
"devDependencies": {
49+
"@istanbuljs/nyc-config-typescript": "1.0.2",
50+
"@nomicfoundation/eslint-plugin-hardhat-internal-rules": "workspace:^",
51+
"@microsoft/api-extractor": "7.40.1",
4952
"@types/chai": "^4.2.22",
5053
"@types/chai-as-promised": "^7.1.5",
51-
"hardhat": "^2.18.0"
54+
"@types/debug": "^4.1.7",
55+
"@types/fs-extra": "^9.0.13",
56+
"@types/mocha": "9.1.1",
57+
"@types/node": "^18.0.0",
58+
"@types/ndjson": "2.0.1",
59+
"@types/lodash": "^4.14.123",
60+
"@typescript-eslint/eslint-plugin": "^5.57.1",
61+
"@typescript-eslint/experimental-utils": "^5.62.0",
62+
"@typescript-eslint/parser": "^5.57.1",
63+
"chai": "^4.3.4",
64+
"chai-as-promised": "7.1.1",
65+
"eslint": "^8.38.0",
66+
"eslint-config-prettier": "8.3.0",
67+
"eslint-import-resolver-typescript": "^3.5.5",
68+
"eslint-plugin-import": "2.29.0",
69+
"eslint-plugin-mocha": "^9.0.0",
70+
"eslint-plugin-no-only-tests": "3.1.0",
71+
"eslint-plugin-prettier": "4.0.0",
72+
"hardhat": "workspace:^",
73+
"mocha": "^9.1.3",
74+
"nyc": "15.1.0",
75+
"prettier": "2.8.8",
76+
"rimraf": "3.0.2",
77+
"ts-node": "10.9.1",
78+
"typescript": "^5.0.2"
5279
},
5380
"dependencies": {
5481
"@ethersproject/address": "5.6.1",
+144-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,144 @@
1-
dist/
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
.pnpm-debug.log*
9+
*.ndjson
10+
11+
# Diagnostic reports (https://nodejs.org/api/report.html)
12+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
13+
14+
# Runtime data
15+
pids
16+
*.pid
17+
*.seed
18+
*.pid.lock
19+
20+
# Directory for instrumented libs generated by jscoverage/JSCover
21+
lib-cov
22+
23+
# Coverage directory used by tools like istanbul
24+
coverage
25+
*.lcov
26+
27+
# nyc test coverage
28+
.nyc_output
29+
30+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
31+
.grunt
32+
33+
# Bower dependency directory (https://bower.io/)
34+
bower_components
35+
36+
# node-waf configuration
37+
.lock-wscript
38+
39+
# Compiled binary addons (https://nodejs.org/api/addons.html)
40+
build/Release
41+
42+
# Dependency directories
43+
node_modules/
44+
jspm_packages/
45+
46+
# Snowpack dependency directory (https://snowpack.dev/)
47+
web_modules/
48+
49+
# TypeScript cache
50+
*.tsbuildinfo
51+
52+
# Optional npm cache directory
53+
.npm
54+
55+
# Optional eslint cache
56+
.eslintcache
57+
58+
# Optional stylelint cache
59+
.stylelintcache
60+
61+
# Microbundle cache
62+
.rpt2_cache/
63+
.rts2_cache_cjs/
64+
.rts2_cache_es/
65+
.rts2_cache_umd/
66+
67+
# Optional REPL history
68+
.node_repl_history
69+
70+
# Output of 'npm pack'
71+
*.tgz
72+
73+
# Yarn Integrity file
74+
.yarn-integrity
75+
76+
# dotenv environment variable files
77+
.env
78+
.env.development.local
79+
.env.test.local
80+
.env.production.local
81+
.env.local
82+
83+
# parcel-bundler cache (https://parceljs.org/)
84+
.cache
85+
.parcel-cache
86+
87+
# Next.js build output
88+
.next
89+
out
90+
91+
# Nuxt.js build / generate output
92+
.nuxt
93+
dist
94+
95+
# Gatsby files
96+
.cache/
97+
# Comment in the public line in if your project uses Gatsby and not Next.js
98+
# https://nextjs.org/blog/next-9-1#public-directory-support
99+
# public
100+
101+
# vuepress build output
102+
.vuepress/dist
103+
104+
# vuepress v2.x temp and cache directory
105+
.temp
106+
.cache
107+
108+
# Docusaurus cache and generated files
109+
.docusaurus
110+
111+
# Serverless directories
112+
.serverless/
113+
114+
# FuseBox cache
115+
.fusebox/
116+
117+
# DynamoDB Local files
118+
.dynamodb/
119+
120+
# TernJS port file
121+
.tern-port
122+
123+
# Stores VSCode versions used for testing VSCode extensions
124+
.vscode-test
125+
126+
# yarn v2
127+
.yarn/cache
128+
.yarn/unplugged
129+
.yarn/build-state.yml
130+
.yarn/install-state.gz
131+
.pnp.*
132+
.npmrc
133+
134+
# Mac OSX garbage
135+
.DS_Store
136+
137+
# Custom workspace settings for VSCode
138+
.vscode/settings.json
139+
140+
# Webstorm files
141+
.idea/
142+
143+
# npm lockfile since we use pnpm now
144+
package-lock.json

packages/hardhat-ignition-ethers/package.json

+27-4
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,40 @@
3333
"prepack": "pnpm build"
3434
},
3535
"devDependencies": {
36-
"@nomicfoundation/hardhat-ethers": "^3.0.4",
36+
"@istanbuljs/nyc-config-typescript": "1.0.2",
37+
"@nomicfoundation/eslint-plugin-hardhat-internal-rules": "workspace:^",
38+
"@nomicfoundation/hardhat-ethers": "workspace:^",
3739
"@types/chai": "^4.2.22",
3840
"@types/chai-as-promised": "^7.1.4",
41+
"@types/mocha": "9.1.1",
42+
"@types/node": "^18.0.0",
3943
"@types/sinon": "^10.0.13",
40-
"hardhat": "^2.18.0"
44+
"@typescript-eslint/eslint-plugin": "^5.57.1",
45+
"@typescript-eslint/experimental-utils": "^5.62.0",
46+
"@typescript-eslint/parser": "^5.57.1",
47+
"chai": "^4.3.4",
48+
"chai-as-promised": "7.1.1",
49+
"eslint": "^8.38.0",
50+
"eslint-config-prettier": "8.3.0",
51+
"eslint-import-resolver-typescript": "^3.5.5",
52+
"eslint-plugin-import": "2.29.0",
53+
"eslint-plugin-mocha": "^9.0.0",
54+
"eslint-plugin-no-only-tests": "3.1.0",
55+
"eslint-plugin-prettier": "4.0.0",
56+
"hardhat": "workspace:^",
57+
"mocha": "^9.1.3",
58+
"nyc": "15.1.0",
59+
"prettier": "2.8.8",
60+
"rimraf": "3.0.2",
61+
"sinon": "^14.0.0",
62+
"ts-node": "10.9.1",
63+
"typescript": "^5.0.2"
4164
},
4265
"peerDependencies": {
43-
"@nomicfoundation/hardhat-ethers": "^3.0.4",
66+
"@nomicfoundation/hardhat-ethers": "workspace:^",
4467
"@nomicfoundation/hardhat-ignition": "workspace:^",
4568
"@nomicfoundation/ignition-core": "workspace:^",
4669
"ethers": "^6.7.0",
47-
"hardhat": "^2.18.0"
70+
"hardhat": "workspace:^"
4871
}
4972
}

0 commit comments

Comments
 (0)