Skip to content

Commit 6abed83

Browse files
committed
Build entire archive collection
1 parent 130e5c2 commit 6abed83

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/main.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,22 +48,22 @@ async function createPackageSinceTag(url, from, modulesPath, excludes) {
4848
(async function () {
4949
let tags;
5050

51-
tags = await createPackagesSinceTag('https://github.com/mage-os/mirror-magento2.git', '2.4.3', 'app/code/Magento')
51+
tags = await createPackagesSinceTag('https://github.com/mage-os/mirror-magento2.git', '2.4.0', 'app/code/Magento')
5252
console.log('app/code/Magento modules', tags)
5353

54-
tags = await createPackageSinceTag('https://github.com/mage-os/mirror-magento2.git', '2.4.3', '', [".github/", "app/code/", "app/design/frontend/", "app/design/adminhtml/", "app/i18n/", "lib/internal/Magento/Framework/", "composer.lock",])
54+
tags = await createPackageSinceTag('https://github.com/mage-os/mirror-magento2.git', '2.4.0', '', [".github/", "app/code/", "app/design/frontend/", "app/design/adminhtml/", "app/i18n/", "lib/internal/Magento/Framework/", "composer.lock",])
5555
console.log('magento/magento2ce', tags);
5656

57-
tags = await createPackageSinceTag('https://github.com/mage-os/mirror-magento2.git', '2.4.3', 'lib/internal/Magento/Framework', ['lib/internal/Magento/Framework/Amqp/', 'lib/internal/Magento/Framework/Bulk/', 'lib/internal/Magento/Framework/MessageQueue/'])
57+
tags = await createPackageSinceTag('https://github.com/mage-os/mirror-magento2.git', '2.4.0', 'lib/internal/Magento/Framework', ['lib/internal/Magento/Framework/Amqp/', 'lib/internal/Magento/Framework/Bulk/', 'lib/internal/Magento/Framework/MessageQueue/'])
5858
console.log('magento/framework', tags)
5959

60-
tags = await createPackageSinceTag('https://github.com/mage-os/mirror-magento2.git', '2.4.3', 'lib/internal/Magento/Framework/Amqp', [])
60+
tags = await createPackageSinceTag('https://github.com/mage-os/mirror-magento2.git', '2.4.0', 'lib/internal/Magento/Framework/Amqp', [])
6161
console.log('magento/framework-amqp', tags)
6262

63-
tags = await createPackageSinceTag('https://github.com/mage-os/mirror-magento2.git', '2.4.3', 'lib/internal/Magento/Framework/Bulk', [])
63+
tags = await createPackageSinceTag('https://github.com/mage-os/mirror-magento2.git', '2.4.0', 'lib/internal/Magento/Framework/Bulk', [])
6464
console.log('magento/framework-bulk', tags);
6565

66-
tags = await createPackageSinceTag('https://github.com/mage-os/mirror-magento2.git', '2.4.3', 'lib/internal/Magento/Framework/MessageQueue', [])
66+
tags = await createPackageSinceTag('https://github.com/mage-os/mirror-magento2.git', '2.4.0', 'lib/internal/Magento/Framework/MessageQueue', [])
6767
console.log('magento/framework-message-queue', tags)
6868

6969
tags = await createPackagesSinceTag('https://github.com/mage-os/mirror-security-package.git', '1.0.0', '', ['.github/', '_metapackage/'])

src/package-modules.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ async function createPackageForTag(url, moduleDir, excludes, ref) {
7878

7979
const {version, name} = await readComposerJson(url, moduleDir, ref);
8080
if (!version || !name) {
81-
console.error(`Unable find package name and/or version in composer.json, skipping ${magentoName}`);
81+
console.error(`Unable find package name and/or version in composer.json for ${ref}, skipping ${magentoName}`);
8282
return;
8383
}
8484

0 commit comments

Comments
 (0)