@mbc-cqrs-serverless/cli 1.1.0-beta.0 → 1.1.0
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.
|
@@ -100,7 +100,9 @@ function copySkills(sourcePath, destPath) {
|
|
|
100
100
|
*/
|
|
101
101
|
function listSkills(sourcePath) {
|
|
102
102
|
const entries = (0, fs_1.readdirSync)(sourcePath, { withFileTypes: true });
|
|
103
|
-
return entries
|
|
103
|
+
return entries
|
|
104
|
+
.filter((entry) => entry.isDirectory())
|
|
105
|
+
.map((entry) => entry.name);
|
|
104
106
|
}
|
|
105
107
|
/**
|
|
106
108
|
* Get the installed version of skills from the version file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mbc-cqrs-serverless/cli",
|
|
3
|
-
"version": "1.1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "a CLI to get started with MBC CQRS serverless framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mbc",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"@faker-js/faker": "^8.3.1",
|
|
59
59
|
"copyfiles": "^2.4.1"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "f5ce26f50fa1d446a29a5a1771ca107ce426e7bc"
|
|
62
62
|
}
|