@agoric/stat-logger 0.4.29-upgrade-14-dev-0169c7e.0 → 0.4.29-upgrade-16-dev-8879538.0
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/stat-logger",
|
|
3
|
-
"version": "0.4.29-upgrade-
|
|
3
|
+
"version": "0.4.29-upgrade-16-dev-8879538.0+8879538",
|
|
4
4
|
"description": "Simple library for logging and graphing performance statistics",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build": "exit 0",
|
|
12
12
|
"test": "exit 0",
|
|
13
13
|
"test:xs": "exit 0",
|
|
14
|
+
"lint": "run-s --continue-on-error lint:*",
|
|
14
15
|
"lint-fix": "yarn lint:eslint --fix",
|
|
15
16
|
"lint:eslint": "eslint ."
|
|
16
17
|
},
|
|
@@ -33,5 +34,8 @@
|
|
|
33
34
|
"publishConfig": {
|
|
34
35
|
"access": "public"
|
|
35
36
|
},
|
|
36
|
-
"
|
|
37
|
+
"typeCoverage": {
|
|
38
|
+
"atLeast": 63.21
|
|
39
|
+
},
|
|
40
|
+
"gitHead": "8879538cd1d125a08346f02dd5701d0d70c90bb8"
|
|
37
41
|
}
|
package/src/statGraph.js
CHANGED
|
@@ -175,7 +175,6 @@ export async function renderGraph(spec, outputPath, type = 'png') {
|
|
|
175
175
|
// NOTE: If this import expression fails, you need to install the
|
|
176
176
|
// peerDependencies.
|
|
177
177
|
// Dynamic version of `import * as vega from 'vega';`
|
|
178
|
-
// eslint-disable-next-line import/no-unresolved
|
|
179
178
|
const vega = await import('vega');
|
|
180
179
|
|
|
181
180
|
const view = new vega.View(vega.parse(spec, null), {
|
|
File without changes
|