-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Ensuring that the build script also cleans #17123
Conversation
c804fa8
to
d3a6e15
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we should do this more broadly instead of just in identity?
@@ -31,7 +31,7 @@ | |||
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", | |||
"build:samples": "echo skipped", | |||
"build:test": "tsc -p . && rollup -c 2>&1", | |||
"build": "npm run extract-api && tsc -p . && rollup -c 2>&1", | |||
"build": "npm run clean && npm run extract-api && tsc -p . && rollup -c 2>&1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should remove prebuild if we do this, since otherwise it'll duplicate when running the task directly.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok can do!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did do the deed!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
Hello @sadasant! Because this pull request has the p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
@sadasant thank you so much for having the energy to do this change. I didn't have it in me yesterday to attempt, but you have delivered. 👍 |
@xirzec that is too kind, Jeff. Thank you. I needed it. |
I thought
rush build
called prebuild! 😮