@toa.io/boot 0.24.0-alpha.4 → 0.24.0-alpha.5

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": "@toa.io/boot",
3
- "version": "0.24.0-alpha.4",
3
+ "version": "0.24.0-alpha.5",
4
4
  "description": "Toa Boot",
5
5
  "author": "temich <tema.gurtovoy@gmail.com>",
6
6
  "homepage": "https://github.com/toa-io/toa#readme",
@@ -20,13 +20,13 @@
20
20
  "test": "echo \"Error: run tests from root\" && exit 1"
21
21
  },
22
22
  "dependencies": {
23
- "@toa.io/core": "0.24.0-alpha.4",
24
- "@toa.io/filesystem": "0.24.0-alpha.4",
25
- "@toa.io/generic": "0.24.0-alpha.4",
26
- "@toa.io/norm": "0.24.0-alpha.4",
27
- "@toa.io/schema": "0.24.0-alpha.4",
23
+ "@toa.io/core": "0.24.0-alpha.5",
24
+ "@toa.io/filesystem": "0.24.0-alpha.5",
25
+ "@toa.io/generic": "0.24.0-alpha.5",
26
+ "@toa.io/norm": "0.24.0-alpha.5",
27
+ "@toa.io/schema": "0.24.0-alpha.5",
28
28
  "clone-deep": "4.0.1",
29
29
  "dotenv": "16.1.1"
30
30
  },
31
- "gitHead": "41f549ae652b625d65f4ba12ea1025f0214fdb0f"
31
+ "gitHead": "3113167ef4b77abab9ac57c3416b2935e07518e8"
32
32
  }
package/src/index.js CHANGED
@@ -9,7 +9,6 @@ const { composition } = require('./composition')
9
9
  const { context } = require('./context')
10
10
  const { emission } = require('./emission')
11
11
  const { exposition } = require('./exposition')
12
- const { images } = require('./images')
13
12
  const { manifest } = require('./manifest')
14
13
  const { operation } = require('./operation')
15
14
  const { receivers, receive } = require('./receivers')
@@ -29,7 +28,6 @@ exports.composition = composition
29
28
  exports.context = context
30
29
  exports.emission = emission
31
30
  exports.exposition = exposition
32
- exports.images = images
33
31
  exports.manifest = manifest
34
32
  exports.operation = operation
35
33
  exports.receivers = receivers
package/src/images.js DELETED
@@ -1,12 +0,0 @@
1
- 'use strict'
2
-
3
- const { Images } = require('@toa.io/operations')
4
- const { context: load } = require('@toa.io/norm')
5
-
6
- const images = async (path) => {
7
- const context = await load(path)
8
-
9
- return new Images(context)
10
- }
11
-
12
- exports.images = images