@toa.io/boot 1.0.0-alpha.61 → 1.0.0-alpha.64

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": "1.0.0-alpha.61",
3
+ "version": "1.0.0-alpha.64",
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": "1.0.0-alpha.59",
24
- "@toa.io/filesystem": "1.0.0-alpha.59",
25
- "@toa.io/generic": "1.0.0-alpha.59",
26
- "@toa.io/norm": "1.0.0-alpha.61",
27
- "@toa.io/schemas": "1.0.0-alpha.61",
23
+ "@toa.io/core": "1.0.0-alpha.64",
24
+ "@toa.io/filesystem": "1.0.0-alpha.63",
25
+ "@toa.io/generic": "1.0.0-alpha.63",
26
+ "@toa.io/norm": "1.0.0-alpha.64",
27
+ "@toa.io/schemas": "1.0.0-alpha.63",
28
28
  "clone-deep": "4.0.1",
29
29
  "dotenv": "16.1.1"
30
30
  },
31
- "gitHead": "25e32ccba495a1f7197e378a5208cfc1a6b3b8a1"
31
+ "gitHead": "2a79179b0e6e21ff48eee481d9d71ed0e5d6b343"
32
32
  }
@@ -6,9 +6,11 @@ const { resolve } = require('./resolve')
6
6
  * @param {toa.norm.Component} manifest
7
7
  */
8
8
  const load = (manifest) => {
9
- if (manifest.extensions === undefined) return
9
+ if (manifest.extensions === undefined)
10
+ return
10
11
 
11
- for (const name of Object.keys(manifest.extensions)) resolve(name, manifest.path)
12
+ for (const name of Object.keys(manifest.extensions))
13
+ resolve(name, manifest.path)
12
14
  }
13
15
 
14
16
  exports.load = load