@adobe/aio-cli-plugin-app 10.1.0 → 10.1.1

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
@@ -71,7 +71,7 @@ DESCRIPTION
71
71
  Create, run, test, and deploy Adobe I/O Apps
72
72
  ```
73
73
 
74
- _See code: [src/commands/app/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/10.1.0/src/commands/app/index.js)_
74
+ _See code: [src/commands/app/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/10.1.1/src/commands/app/index.js)_
75
75
 
76
76
  ## `aio app add`
77
77
 
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "10.1.0",
2
+ "version": "10.1.1",
3
3
  "commands": {
4
4
  "app:build": {
5
5
  "id": "app:build",
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@adobe/aio-cli-plugin-app",
3
3
  "description": "Create, Build and Deploy Adobe I/O Applications",
4
- "version": "10.1.0",
4
+ "version": "10.1.1",
5
5
  "author": "Adobe Inc.",
6
6
  "bugs": "https://github.com/adobe/aio-cli-plugin-app/issues",
7
7
  "dependencies": {
8
- "@adobe/aio-cli-lib-app-config": "^1.0.0",
8
+ "@adobe/aio-cli-lib-app-config": "^1.0.1",
9
9
  "@adobe/aio-cli-lib-console": "^4.0.0",
10
10
  "@adobe/aio-lib-core-config": "^3.0.0",
11
11
  "@adobe/aio-lib-core-logging": "^2.0.0",
12
- "@adobe/aio-lib-core-networking": "^3.0.0",
12
+ "@adobe/aio-lib-core-networking": "^4.1.0",
13
13
  "@adobe/aio-lib-env": "^2.0.0",
14
14
  "@adobe/aio-lib-ims": "^6.0.0",
15
15
  "@adobe/aio-lib-runtime": "^5.0.0",
@@ -60,7 +60,7 @@
60
60
  "eslint-plugin-n": "^15.2.5",
61
61
  "eslint-plugin-node": "^11.1.0",
62
62
  "eslint-plugin-promise": "^6.0.0",
63
- "jest": "^28",
63
+ "jest": "^29.5.0",
64
64
  "jest-plugin-fs": "^2.9.0",
65
65
  "nock": "^13.2.9",
66
66
  "oclif": "^3.2.0",
@@ -497,14 +497,11 @@ function deleteUserConfig (configData) {
497
497
  /** @private */
498
498
  const createWebExportFilter = (filterValue) => {
499
499
  return (action) => {
500
- if (!action || !action.body || !action.body.annotations) {
500
+ if (!action || !action.annotations) {
501
501
  return false
502
502
  }
503
503
 
504
- const weAnnotation = action.body.annotations.filter(a => a.key === 'web-export')
505
- const weValue = (weAnnotation.length > 0) ? !!(weAnnotation[0].value) : false
506
-
507
- return (filterValue === weValue)
504
+ return String(!!action.annotations['web-export']) === String(filterValue)
508
505
  }
509
506
  }
510
507