@lde/pipeline 0.30.20 → 0.30.22
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"combineReporters.d.ts","sourceRoot":"","sources":["../src/combineReporters.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAU9D;;;;;;;;;;;;GAYG;AACH,wBAAgB,gBAAgB,CAC9B,SAAS,EAAE,SAAS,gBAAgB,EAAE,GACrC,gBAAgB,
|
|
1
|
+
{"version":3,"file":"combineReporters.d.ts","sourceRoot":"","sources":["../src/combineReporters.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAU9D;;;;;;;;;;;;GAYG;AACH,wBAAgB,gBAAgB,CAC9B,SAAS,EAAE,SAAS,gBAAgB,EAAE,GACrC,gBAAgB,CA+ClB"}
|
package/dist/combineReporters.js
CHANGED
|
@@ -19,7 +19,10 @@ export function combineReporters(reporters) {
|
|
|
19
19
|
// arguments are correlated.
|
|
20
20
|
const handler = reporter[method];
|
|
21
21
|
// Every method is optional; notify only the children that implement it.
|
|
22
|
-
|
|
22
|
+
// Invoke through `call` so a class-based reporter keeps its `this`: a bare
|
|
23
|
+
// `handler?.(...)` would drop the receiver and break methods that touch
|
|
24
|
+
// instance state (e.g. ConsoleReporter’s spinner).
|
|
25
|
+
handler?.call(reporter, ...args);
|
|
23
26
|
}
|
|
24
27
|
};
|
|
25
28
|
// Listing every method explicitly (rather than a Proxy) keeps the forwarding
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lde/pipeline",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.22",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "git+https://github.com/ldelements/lde.git",
|
|
6
6
|
"directory": "packages/pipeline"
|
|
@@ -25,16 +25,16 @@
|
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@lde/dataset": "0.7.7",
|
|
28
|
-
"@lde/dataset-registry-client": "0.8.
|
|
29
|
-
"@lde/distribution-health": "0.1.
|
|
30
|
-
"@lde/distribution-probe": "0.1.
|
|
28
|
+
"@lde/dataset-registry-client": "0.8.4",
|
|
29
|
+
"@lde/distribution-health": "0.1.5",
|
|
30
|
+
"@lde/distribution-probe": "0.1.13",
|
|
31
31
|
"@lde/sparql-importer": "0.6.5",
|
|
32
32
|
"@lde/sparql-server": "0.4.11",
|
|
33
33
|
"@rdfjs/namespace": "^2.0.1",
|
|
34
34
|
"@rdfjs/types": "^2.0.1",
|
|
35
35
|
"@tpluscode/rdf-ns-builders": "^5.0.0",
|
|
36
|
-
"@traqula/generator-sparql-1-1": "^1.1.
|
|
37
|
-
"@traqula/parser-sparql-1-1": "^1.1.
|
|
36
|
+
"@traqula/generator-sparql-1-1": "^1.1.5",
|
|
37
|
+
"@traqula/parser-sparql-1-1": "^1.1.5",
|
|
38
38
|
"@traqula/rules-sparql-1-1": "^1.1.0",
|
|
39
39
|
"fetch-sparql-endpoint": "^7.1.0",
|
|
40
40
|
"filenamify-url": "^4.0.0",
|