@comunica/actor-dereference-fallback 3.0.1-alpha.44.0 → 3.0.1-alpha.46.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/README.md CHANGED
@@ -25,7 +25,7 @@ After installing, this package can be added to your engine's configuration as fo
25
25
  {
26
26
  "@context": [
27
27
  ...
28
- "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-dereference-fallback/^3.0.0/components/context.jsonld"
28
+ "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-dereference-fallback/^3.0.0/components/context.jsonld"
29
29
  ],
30
30
  "actors": [
31
31
  ...
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "@context": [
3
- "https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^5.0.0/components/context.jsonld",
3
+ "https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^6.0.0/components/context.jsonld",
4
4
  {
5
5
  "npmd": "https://linkedsoftwaredependencies.org/bundles/npm/",
6
6
  "cadf": "npmd:@comunica/actor-dereference-fallback/^3.0.0/",
@@ -6,6 +6,6 @@ import type { IActorTest } from '@comunica/core';
6
6
  */
7
7
  export declare class ActorDereferenceFallback extends ActorDereference {
8
8
  constructor(args: IActorDereferenceArgs);
9
- test(action: IActionDereference): Promise<IActorTest>;
9
+ test(_action: IActionDereference): Promise<IActorTest>;
10
10
  run(action: IActionDereference): Promise<IActorDereferenceOutput>;
11
11
  }
@@ -9,7 +9,7 @@ class ActorDereferenceFallback extends bus_dereference_1.ActorDereference {
9
9
  constructor(args) {
10
10
  super(args);
11
11
  }
12
- async test(action) {
12
+ async test(_action) {
13
13
  return true;
14
14
  }
15
15
  async run(action) {
@@ -1 +1 @@
1
- {"version":3,"file":"ActorDereferenceFallback.js","sourceRoot":"","sources":["ActorDereferenceFallback.ts"],"names":[],"mappings":";;;AACA,+DAA6D;AAG7D;;GAEG;AACH,MAAa,wBAAyB,SAAQ,kCAAgB;IAC5D,YAAmB,IAA2B;QAC5C,KAAK,CAAC,IAAI,CAAC,CAAC;IACd,CAAC;IAEM,KAAK,CAAC,IAAI,CAAC,MAA0B;QAC1C,OAAO,IAAI,CAAC;IACd,CAAC;IAEM,KAAK,CAAC,GAAG,CAAC,MAA0B;QACzC,OAAO,IAAI,CAAC,uBAAuB,CAAC,MAAM,EAAE,IAAI,KAAK,CAAC,0BAA0B,MAAM,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;IAClG,CAAC;CACF;AAZD,4DAYC","sourcesContent":["import type { IActionDereference, IActorDereferenceOutput, IActorDereferenceArgs } from '@comunica/bus-dereference';\nimport { ActorDereference } from '@comunica/bus-dereference';\nimport type { IActorTest } from '@comunica/core';\n\n/**\n * A comunica Fallback Dereference Actor.\n */\nexport class ActorDereferenceFallback extends ActorDereference {\n public constructor(args: IActorDereferenceArgs) {\n super(args);\n }\n\n public async test(action: IActionDereference): Promise<IActorTest> {\n return true;\n }\n\n public async run(action: IActionDereference): Promise<IActorDereferenceOutput> {\n return this.handleDereferenceErrors(action, new Error(`Could not dereference '${action.url}'`));\n }\n}\n"]}
1
+ {"version":3,"file":"ActorDereferenceFallback.js","sourceRoot":"","sources":["ActorDereferenceFallback.ts"],"names":[],"mappings":";;;AACA,+DAA6D;AAG7D;;GAEG;AACH,MAAa,wBAAyB,SAAQ,kCAAgB;IAC5D,YAAmB,IAA2B;QAC5C,KAAK,CAAC,IAAI,CAAC,CAAC;IACd,CAAC;IAEM,KAAK,CAAC,IAAI,CAAC,OAA2B;QAC3C,OAAO,IAAI,CAAC;IACd,CAAC;IAEM,KAAK,CAAC,GAAG,CAAC,MAA0B;QACzC,OAAO,IAAI,CAAC,uBAAuB,CAAC,MAAM,EAAE,IAAI,KAAK,CAAC,0BAA0B,MAAM,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;IAClG,CAAC;CACF;AAZD,4DAYC","sourcesContent":["import type { IActionDereference, IActorDereferenceOutput, IActorDereferenceArgs } from '@comunica/bus-dereference';\nimport { ActorDereference } from '@comunica/bus-dereference';\nimport type { IActorTest } from '@comunica/core';\n\n/**\n * A comunica Fallback Dereference Actor.\n */\nexport class ActorDereferenceFallback extends ActorDereference {\n public constructor(args: IActorDereferenceArgs) {\n super(args);\n }\n\n public async test(_action: IActionDereference): Promise<IActorTest> {\n return true;\n }\n\n public async run(action: IActionDereference): Promise<IActorDereferenceOutput> {\n return this.handleDereferenceErrors(action, new Error(`Could not dereference '${action.url}'`));\n }\n}\n"]}
package/package.json CHANGED
@@ -1,44 +1,44 @@
1
1
  {
2
2
  "name": "@comunica/actor-dereference-fallback",
3
- "version": "3.0.1-alpha.44.0",
3
+ "version": "3.0.1-alpha.46.0",
4
4
  "description": "A fallback dereference actor",
5
5
  "lsd:module": true,
6
- "main": "lib/index.js",
7
- "typings": "lib/index",
6
+ "license": "MIT",
7
+ "homepage": "https://comunica.dev/",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/comunica/comunica.git",
11
11
  "directory": "packages/actor-dereference-fallback"
12
12
  },
13
- "publishConfig": {
14
- "access": "public"
13
+ "bugs": {
14
+ "url": "https://github.com/comunica/comunica/issues"
15
15
  },
16
- "sideEffects": false,
17
16
  "keywords": [
18
17
  "comunica",
19
18
  "actor",
20
19
  "dereference",
21
20
  "fallback"
22
21
  ],
23
- "license": "MIT",
24
- "bugs": {
25
- "url": "https://github.com/comunica/comunica/issues"
22
+ "sideEffects": false,
23
+ "main": "lib/index.js",
24
+ "typings": "lib/index",
25
+ "publishConfig": {
26
+ "access": "public"
26
27
  },
27
- "homepage": "https://comunica.dev/",
28
28
  "files": [
29
29
  "components",
30
30
  "lib/**/*.d.ts",
31
31
  "lib/**/*.js",
32
32
  "lib/**/*.js.map"
33
33
  ],
34
- "dependencies": {
35
- "@comunica/bus-dereference": "3.0.1-alpha.44.0",
36
- "@comunica/core": "3.0.1-alpha.44.0"
37
- },
38
34
  "scripts": {
39
35
  "build": "npm run build:ts && npm run build:components",
40
36
  "build:ts": "node \"../../node_modules/typescript/bin/tsc\"",
41
37
  "build:components": "componentsjs-generator"
42
38
  },
43
- "gitHead": "0b13082c2eef06a45298b30620323d0f956e1a3e"
39
+ "dependencies": {
40
+ "@comunica/bus-dereference": "3.0.1-alpha.46.0",
41
+ "@comunica/core": "3.0.1-alpha.46.0"
42
+ },
43
+ "gitHead": "c115712ec55d79c83712e7046a387d5e3a177023"
44
44
  }