@architect/inventory 3.2.1 → 3.2.2

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/changelog.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  ---
4
4
 
5
+ ## [3.2.2] 2022-08-20
6
+
7
+ ### Changed
8
+
9
+ - Enabled `hydrate` plugin API support
10
+
11
+ ---
12
+
5
13
  ## [3.2.1] 2022-08-10
6
14
 
7
15
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@architect/inventory",
3
- "version": "3.2.1",
3
+ "version": "3.2.2",
4
4
  "description": "Architect project resource enumeration utility",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -4,7 +4,7 @@ let { is, normalizeSrc, pragmas, tidyError, validationPatterns } = require('../.
4
4
  let { lambdas } = pragmas
5
5
  let nonLambdaSetters = [ 'customLambdas', 'env', 'proxy', 'runtimes', 'shared', 'static', 'views', 'tables', 'tables-indexes' ]
6
6
  let setters = [ ...lambdas, ...nonLambdaSetters ]
7
- let pluginMethods = [ 'deploy', 'sandbox' ]
7
+ let pluginMethods = [ 'deploy', 'hydrate', 'sandbox' ]
8
8
  let reservedNames = [ '_methods' ]
9
9
 
10
10
  module.exports = function getPluginModules ({ arc, inventory, errors }) {