@comunica/bus-dereference 2.0.7-alpha.10.0 → 2.2.2-alpha.12.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.
@@ -1,9 +1,9 @@
1
1
  /// <reference types="node" />
2
- import type { Readable } from 'stream';
2
+ import { type Readable } from 'stream';
3
3
  import type { MediateMediaTyped, MediateMediaTypes } from '@comunica/actor-abstract-mediatyped';
4
4
  import type { IActionParse, IActorParseOutput, IParseMetadata } from '@comunica/actor-abstract-parse';
5
- import type { IActionDereference, IActorDereferenceOutput, MediatorDereference } from '@comunica/bus-dereference';
6
5
  import type { IActorArgs, IActorTest } from '@comunica/core';
6
+ import type { IActionDereference, IActorDereferenceOutput, MediatorDereference } from './ActorDereference';
7
7
  import { ActorDereferenceBase } from './ActorDereferenceBase';
8
8
  /**
9
9
  * Get the media type based on the extension of the given path,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comunica/bus-dereference",
3
- "version": "2.0.7-alpha.10.0",
3
+ "version": "2.2.2-alpha.12.0",
4
4
  "description": "A bus for dereferencing a path or URL into a (generic) stream.",
5
5
  "lsd:module": true,
6
6
  "main": "lib/index.js",
@@ -30,13 +30,16 @@
30
30
  "lib/**/*.js"
31
31
  ],
32
32
  "dependencies": {
33
- "@comunica/context-entries": "2.0.7-alpha.10.0",
34
- "@comunica/core": "2.0.7-alpha.10.0"
33
+ "@comunica/actor-abstract-mediatyped": "2.2.2-alpha.12.0",
34
+ "@comunica/actor-abstract-parse": "2.2.2-alpha.12.0",
35
+ "@comunica/context-entries": "2.2.2-alpha.12.0",
36
+ "@comunica/core": "2.2.2-alpha.12.0",
37
+ "@comunica/types": "2.2.2-alpha.12.0"
35
38
  },
36
39
  "scripts": {
37
40
  "build": "npm run build:ts && npm run build:components",
38
41
  "build:ts": "node \"../../node_modules/typescript/bin/tsc\"",
39
42
  "build:components": "componentsjs-generator"
40
43
  },
41
- "gitHead": "9ad64da7bae9dda857e12b7bb0b3af58d5f0f2af"
44
+ "gitHead": "399067ba332379a62a0d82782b5930f2925e262b"
42
45
  }