@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 +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
- package/src/lib/app-helper.js +2 -5
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.
|
|
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
|
|
package/oclif.manifest.json
CHANGED
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.
|
|
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.
|
|
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": "^
|
|
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": "^
|
|
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",
|
package/src/lib/app-helper.js
CHANGED
|
@@ -497,14 +497,11 @@ function deleteUserConfig (configData) {
|
|
|
497
497
|
/** @private */
|
|
498
498
|
const createWebExportFilter = (filterValue) => {
|
|
499
499
|
return (action) => {
|
|
500
|
-
if (!action || !action.
|
|
500
|
+
if (!action || !action.annotations) {
|
|
501
501
|
return false
|
|
502
502
|
}
|
|
503
503
|
|
|
504
|
-
|
|
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
|
|