diff --git a/src/index.js b/src/index.js index 2db8afa..054c21e 100644 --- a/src/index.js +++ b/src/index.js @@ -33,6 +33,12 @@ if (!existsSync(MANIFEST_FILENAME)) { console.log( `Package size (${currentStats.packageSize}) adopted as new limit.`, ) + + if (!isUpdatingManifest) { + console.log( + '❗ It looks like you ran PackWatch without a manifest. To prevent accidental passes in CI or hooks, packwatch will termine with an error. If you are running packwatch for the first time in your project, this is expected!', + ) + } // 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)