feat: Only generate manifest if update is specified #8
2 changed files with 5 additions and 12 deletions
|
@ -34,7 +34,7 @@ While you can install `packwatch` as a global package, it's better to include it
|
|||
|
||||
## Usage
|
||||
|
||||
`packwatch` tracks your packages' size via its `.packwatch.json` manifest. To get started, call `packwatch --update-manifest` at the root of your project: a fresh manifest will be generated for you using your current package's size as the initial upper limit for package size.
|
||||
`packwatch` tracks your packages' size via its `.packwatch.json` manifest. To get started, call `packwatch` at the root of your project: a fresh manifest will be generated for you using your current package's size as the initial upper limit for package size.
|
||||
|
||||
Once a manifest file exists, calling `packwatch` again will compare its data to the current state of your package. Every time `packwatch` compares your code to the manifest, it will update the last reported package size statistics it contains, but not the limit you have set.
|
||||
|
||||
|
|
15
src/index.js
15
src/index.js
|
@ -16,9 +16,7 @@ if (!existsSync('package.json')) {
|
|||
process.exit(1)
|
||||
}
|
||||
|
||||
const UPDATE_MANIFEST_OPTION = '--update-manifest'
|
||||
|
||||
const isUpdatingManifest = process.argv.includes(UPDATE_MANIFEST_OPTION)
|
||||
const isUpdatingManifest = process.argv.includes('--update-manifest')
|
||||
|
||||
const currentStats = getCurrentPackageStats()
|
||||
|
||||
|
@ -28,13 +26,6 @@ const currentStats = getCurrentPackageStats()
|
|||
*/
|
||||
|
||||
if (!existsSync(MANIFEST_FILENAME)) {
|
||||
if (!isUpdatingManifest) {
|
||||
console.log(
|
||||
`🔥🔥📦🔥🔥 No manifest file exists! Run packwatch with ${UPDATE_MANIFEST_OPTION} to generate a manifest file`,
|
||||
)
|
||||
process.exit(1)
|
||||
}
|
||||
|
||||
createOrUpdateManifest({ current: currentStats })
|
||||
console.log(
|
||||
`📝 No Manifest to compare against! Current package stats written to ${MANIFEST_FILENAME}!`,
|
||||
|
@ -42,7 +33,9 @@ if (!existsSync(MANIFEST_FILENAME)) {
|
|||
console.log(
|
||||
`Package size (${currentStats.packageSize}) adopted as new limit.`,
|
||||
)
|
||||
process.exit(0)
|
||||
// If the update flag wasn't specified, exit with a non-zero code so we
|
||||
// don't "accidentally" pass CI builds if the manifest didn't exist
|
||||
process.exit(isUpdatingManifest ? 0 : 1)
|
||||
}
|
||||
|
||||
|
||||
const previousStats = getPreviousPackageStats()
|
||||
|
|
Reference in a new issue
An argument could be made that there's never a valid use case in which you'd want CI to run
--update-manifest
and pass either (since having--update-manifest
in CI would always pass the check). That being said, I feel that this can be addressed further up and check if a CI env variable is set to error out early if--update-manifest
is passed in.LGTM.