@reliableapp/frontend-cli 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +3 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -124,10 +124,9 @@ function autodetectRelease() {
124
124
  async function sourcemapsUpload(opts) {
125
125
  const ci = detectCI();
126
126
  if (!ci && !opts.force) {
127
- console.error(red("\u2717 Refusing to upload \u2014 not running in CI."));
128
- console.error(gray(" No CI env var detected (CI, GITHUB_ACTIONS, VERCEL, etc)."));
129
- console.error(gray(" Pass --force to override (e.g. for testing locally)."));
130
- process.exit(2);
127
+ console.log(yellow("\u2298 Skipping sourcemap upload \u2014 not running in CI."));
128
+ console.log(gray(" This is normal for local builds. Add --force to override."));
129
+ return;
131
130
  }
132
131
  if (ci) console.log(gray(`CI detected via $${ci}`));
133
132
  const explicit = opts.release?.trim();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reliableapp/frontend-cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Reliable frontend CLI — upload sourcemaps and manage frontend releases from CI. Built by Ziloris · https://ziloris.com",
5
5
  "homepage": "https://reliable.ziloris.com/docs",
6
6
  "bugs": {