-
Notifications
You must be signed in to change notification settings - Fork 2
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
build: Quick fixes to release workflow #35
Changes from all commits
aa9f77f
ae3e518
7539f6c
eb479ae
81babc0
4645d50
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"mode": "pre", | ||
"tag": "alpha", | ||
"initialVersions": { | ||
"@codecov/bundler-plugin-core": "0.0.1", | ||
"@codecov/rollup-plugin": "0.0.1", | ||
"@codecov/vite-plugin": "0.0.1", | ||
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. The |
||
"@codecov/webpack-plugin": "0.0.1" | ||
}, | ||
"changesets": [] | ||
} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@codecov/bundler-plugin-core", | ||
"version": "0.0.1-alpha", | ||
"version": "0.0.1", | ||
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. Version for '@codecov/bundler-plugin-core' has been changed from '0.0.1-alpha' to '0.0.1'. This seems indicative of moving from an alpha pre-release to an actual release. |
||
"description": "Official Codecov Bundler Plugin Core", | ||
"author": "Codecov", | ||
"license": "MIT", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@codecov/rollup-plugin", | ||
"version": "0.0.1-alpha", | ||
"version": "0.0.1", | ||
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. Version for '@codecov/rollup-plugin' package has been updated from '0.0.1-alpha' to '0.0.1'. Please confirm if this package is ready for production. |
||
"description": "Official Codecov Rollup plugin", | ||
"author": "Codecov", | ||
"license": "MIT", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@codecov/vite-plugin", | ||
"version": "0.0.1-alpha", | ||
"version": "0.0.1", | ||
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. Ensure the '@codecov/vite-plugin' is sufficiently tested and stable before changing its version from the alpha flag. |
||
"description": "Official Codecov Vite plugin", | ||
"author": "Codecov", | ||
"license": "MIT", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@codecov/webpack-plugin", | ||
"version": "0.0.1-alpha", | ||
"version": "0.0.1", | ||
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. Version update spotted for '@codecov/webpack-plugin' as well. Make sure the versioning is consistent across all packages and they're ready for this change. |
||
"description": "Official Codecov Webpack plugin", | ||
"author": "Codecov", | ||
"license": "MIT", | ||
|
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.
The addition of this pre.json file seems to be for configuration purposes. It would be helpful if there was a clear change description regarding its need.