Skip to content
This repository was archived by the owner on Jul 23, 2019. It is now read-only.

Commit ba4573c

Browse files
author
ilmente
committed
fix manifest collector
1 parent f222f87 commit ba4573c

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

lib/automation/collector.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* (c) Spryker Systems GmbH
44
* For full copyright and license information, please view the LICENSE file that was distributed with this source code.
55
*/
6-
6+
77
'use strict';
88

99
let path = require('path');
@@ -55,6 +55,12 @@ function collect(searchSubjects, searchPaths, basePattern) {
5555
}
5656

5757
module.exports = {
58+
manifests: () => {
59+
return collect('manifests (package.json)', [
60+
path.join(cwd, `./package.json`),
61+
path.join(cwd, `./vendor/spryker/**/assets/*/package.json`)
62+
]);
63+
},
5864
manifestsYves: () => {
5965
return collect('manifests for Yves (package.json)', [
6066
path.join(cwd, `./package.json`),

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "antelope",
3-
"version": "2.2.2",
3+
"version": "2.2.3",
44
"description": "Spryker frontend automation tool",
55
"main": "antelope.js",
66
"preferGlobal": "true",

0 commit comments

Comments
 (0)