sf-compact-cli 0.3.1 → 0.3.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 (3) hide show
  1. package/README.md +1 -1
  2. package/install.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -209,7 +209,7 @@ Run `sf-compact pack` to update.
209
209
  sf-compact lint [source...] [-o packed-dir] [--include pattern]
210
210
  ```
211
211
 
212
- Check that compact files are up-to-date. Exits with code 1 if any files are stale. Use in CI pipelines.
212
+ Check that compact files are up-to-date. Exits with code 1 if any files are stale, new, or orphaned. Use in CI pipelines.
213
213
 
214
214
  ### Changes (track modified compact files)
215
215
  ```bash
package/install.js CHANGED
@@ -6,7 +6,7 @@ const path = require("path");
6
6
  const https = require("https");
7
7
  const http = require("http");
8
8
 
9
- const VERSION = "0.3.1";
9
+ const VERSION = "0.3.2";
10
10
  const REPO = "vradko/sf-compact";
11
11
 
12
12
  const PLATFORMS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sf-compact-cli",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Convert Salesforce metadata XML to compact AI-friendly formats (YAML/JSON). Semantically lossless roundtrip.",
5
5
  "license": "MIT",
6
6
  "repository": {