Skip to content

Commit 3a98d76

Browse files
committed
Update dependencies
1 parent c7b8557 commit 3a98d76

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/stale.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ daysUntilClose: 7
88
exemptLabels:
99
- pinned
1010
- security
11-
11+
1212
# Label to use when marking an issue as stale
1313
staleLabel: stale
1414

@@ -17,6 +17,6 @@ markComment: >
1717
This issue has been automatically marked as stale because it has not had
1818
recent activity. The resources of our team are limited. This issue will
1919
be closed if no further activity occurs.
20-
20+
2121
# Comment to post when closing a stale issue. Set to `false` to disable
2222
closeComment: false

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"detect-port": "^1.3.0",
5959
"figlet": "^1.5.0",
6060
"fs-extra": "^8.1.0",
61-
"ganache-cli": "6.9.0",
61+
"ganache-cli": "^6.12.2",
6262
"global-modules": "^2.0.0",
6363
"globby": "^10.0.1",
6464
"lodash": "^4.17.15",

src/SolidityLauncher.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,9 @@ export class SolidityLauncher {
152152
const additionalOptions = {}; // TODO
153153
setupOptions(this._program, additionalOptions);
154154

155-
const index = process.argv.indexOf(process.argv.find((a) => a.includes(this._program)))
155+
const index = process.argv.indexOf(
156+
process.argv.find((a) => a.includes(this._program))
157+
);
156158

157159
const args = process.argv.slice(index + 1);
158160

0 commit comments

Comments
 (0)