Skip to content

Commit e301530

Browse files
authored
Merge pull request #13 from ConsenSys/12-fix-multi-workspace
fix multi-workspace
2 parents e1f32d0 + 84c83b4 commit e301530

7 files changed

+6500
-170
lines changed

.eslintrc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"parserOptions": {
3+
"ecmaVersion": "latest"
4+
},
5+
6+
"env": {
7+
"es6": true
8+
}
9+
}

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
*-lock.json
21

32
# Logs
43
logs

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## v0.0.21
4+
- fix: support multi-workspace environments - #12
5+
- update: solidity-metrics / dependencies
6+
37
## v0.0.20
48
- update: solidity-metrics / new metrics
59

package-lock.json

+6,283
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "solidity-metrics",
33
"displayName": "Solidity Metrics",
44
"description": "Solidity Metrics",
5-
"version": "0.0.20",
5+
"version": "0.0.21",
66
"keywords": [
77
"code",
88
"metrics",
@@ -40,7 +40,7 @@
4040
"commands": [
4141
{
4242
"command": "solidity-metrics.workspace.report",
43-
"title": "Report metrics for workspace",
43+
"title": "Report metrics for all open workspaces",
4444
"category": "Solidity Metrics"
4545
},
4646
{
@@ -50,7 +50,7 @@
5050
},
5151
{
5252
"command": "solidity-metrics.activeFile.exportHtml",
53-
"title": "Export current metrics report",
53+
"title": "Export This Metrics Report",
5454
"category": "Solidity Metrics"
5555
},
5656
{
@@ -95,7 +95,7 @@
9595
"build:web": "webpack --entry ./websrc/main.js -o ./content/ --mode='production'"
9696
},
9797
"dependencies": {
98-
"solidity-code-metrics": "^0.0.19"
98+
"solidity-code-metrics": "^0.0.22"
9999
},
100100
"devDependencies": {
101101
"webpack": "^5.43.0",

0 commit comments

Comments
 (0)