-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Preventing dev feed for private package on script level and with artifact parameter option in pipeline #9948
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
5fdb5cb
296c7d2
16dc86c
b944ca9
fea4cbf
9d7a099
d4c231e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -179,7 +179,8 @@ async function main(argv) { | |
| for (const package of Object.keys(rushPackages)) { | ||
| if ( | ||
| ["client", "core"].includes(rushPackages[package].versionPolicy) && | ||
| rushPackages[package].projectFolder.startsWith(`sdk/${service}`) | ||
| rushPackages[package].projectFolder.startsWith(`sdk/${service}`) && | ||
| !rushPackages[package].json["private"] | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this really help with anything?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes. it won't change attach the dev versioning for private packages
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this will work for all private packages even if they forget to set the skippublishdevfeed variable
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. But all it does is prevent the dev version from being set on the package it doesn't do anything about not publishing it. While I don't mind this change I'm not sure it really adds much for us. |
||
| ) { | ||
| targetPackages.push(package); | ||
| } | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -30,3 +30,5 @@ extends: | |
| Artifacts: | ||
| - name: azure-tables | ||
| safeName: azuretables | ||
| options: | ||
| skipPublishDevFeed: true | ||
Uh oh!
There was an error while loading. Please reload this page.