zarro 1.170.24 → 1.170.26
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.
|
@@ -727,9 +727,14 @@
|
|
|
727
727
|
});
|
|
728
728
|
env.register({
|
|
729
729
|
name: "NUGET_PUSH_SOURCE",
|
|
730
|
-
help: "
|
|
730
|
+
help: "Specify nuget source to push to. Will fall back on NUGET_SOURCE or first of NUGET_SOURCES.",
|
|
731
731
|
default: env.resolve("NUGET_SOURCE")
|
|
732
732
|
});
|
|
733
|
+
env.register({
|
|
734
|
+
name: "PACKAGE_REGISTRY",
|
|
735
|
+
help: "Specify npm source to push to. Will default to npmjs.com",
|
|
736
|
+
default: "nuget.org"
|
|
737
|
+
});
|
|
733
738
|
debug("-- env registration complete --");
|
|
734
739
|
};
|
|
735
740
|
})();
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -446,6 +446,7 @@ declare global {
|
|
|
446
446
|
"TAG" |
|
|
447
447
|
"GIT_TAG" |
|
|
448
448
|
"GIT_VERSION_INCREMENT_MESSAGE" |
|
|
449
|
+
"PACKAGE_REGISTRY" |
|
|
449
450
|
string; // allow client-side extension, encourage usage of env.associate & env.register
|
|
450
451
|
|
|
451
452
|
type NumericEnvVar =
|
|
@@ -641,6 +642,7 @@ declare global {
|
|
|
641
642
|
TAG: StringEnvVar;
|
|
642
643
|
GIT_TAG: StringEnvVar;
|
|
643
644
|
GIT_VERSION_INCREMENT_MESSAGE: StringEnvVar;
|
|
645
|
+
PACKAGE_REGISTRY: StringEnvVar;
|
|
644
646
|
|
|
645
647
|
ENABLE_NUGET_PARALLEL_PROCESSING: FlagEnvVar;
|
|
646
648
|
BUILD_SHOW_INFO: FlagEnvVar;
|