sf-compact-cli 0.3.1 → 0.3.3

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 +2 -2
  2. package/install.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -142,7 +142,7 @@ Use `--files` for per-file breakdown, `--include` to filter by glob pattern.
142
142
  sf-compact uses a `.sfcompact.yaml` config file for per-type format control.
143
143
 
144
144
  ```bash
145
- # Create config with smart defaults (yaml-ordered for order-sensitive types)
145
+ # Create config with smart defaults (json default, yaml for order-insensitive types)
146
146
  sf-compact config init
147
147
 
148
148
  # Set format for specific types (batch — multiple types in one call)
@@ -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.3";
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.3",
4
4
  "description": "Convert Salesforce metadata XML to compact AI-friendly formats (YAML/JSON). Semantically lossless roundtrip.",
5
5
  "license": "MIT",
6
6
  "repository": {