@magnolia/cli-jumpstart-plugin 1.0.5 → 1.0.6
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/CHANGELOG.md +3 -0
- package/dist/lib/download.js +1 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.6 (2025-05-30)
|
|
4
|
+
* Ignore -overlay webapps from nexus ([MGNLCLI-391](https://magnolia-cms.atlassian.net/browse/MGNLCLI-391))
|
|
5
|
+
|
|
3
6
|
## 1.0.5 (2025-04-30)
|
|
4
7
|
* Set graphql.introspection property to true ([MGNLCLI-371](https://magnolia-cms.atlassian.net/browse/MGNLCLI-371))
|
|
5
8
|
* Inform user about using name and password tokens from nexus ([MGNLCLI-374](https://magnolia-cms.atlassian.net/browse/MGNLCLI-374))
|
package/dist/lib/download.js
CHANGED
|
@@ -102,6 +102,7 @@ export const getDownloadUrl = (bundle, credentials, options) => __awaiter(void 0
|
|
|
102
102
|
try {
|
|
103
103
|
const url = new URL(bundle.url);
|
|
104
104
|
url.searchParams.set('prerelease', 'false');
|
|
105
|
+
url.searchParams.set('maven.classifier', '');
|
|
105
106
|
if (bundle.version) {
|
|
106
107
|
if (options.snapshot ||
|
|
107
108
|
bundle.version.toLowerCase().includes('snapshot')) {
|
package/dist/package.json
CHANGED
package/package.json
CHANGED