ripplo 0.1.5 → 0.1.7

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 +9 -7
  2. package/dist/index.js +104 -96
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -73,13 +73,14 @@ This is the DSL your `.ripplo/` files use to define workflows and preconditions.
73
73
 
74
74
  ## Commands
75
75
 
76
- | Command | Description |
77
- | -------------------------- | -------------------------------------- |
78
- | `ripplo` | Launch the interactive dashboard |
79
- | `ripplo run [ids..]` | Run tests in parallel |
80
- | `ripplo lint [ids..]` | Compile and lint workflows |
81
- | `ripplo doctor` | Check project health |
82
- | `ripplo flake-detect <id>` | Run a test N times to detect flakiness |
76
+ | Command | Description |
77
+ | -------------------------- | -------------------------------------------------------------------------------- |
78
+ | `ripplo` | Launch the interactive dashboard |
79
+ | `ripplo run [ids..]` | Run tests in parallel |
80
+ | `ripplo lint [ids..]` | Compile and lint workflows (also writes `.ripplo/ripplo.lock`) |
81
+ | `ripplo compile` | Compile the DSL and write `.ripplo/ripplo.lock` (use `--check` in CI/pre-commit) |
82
+ | `ripplo doctor` | Check project health (including lockfile freshness and pre-commit hook) |
83
+ | `ripplo flake-detect <id>` | Run a test N times to detect flakiness |
83
84
 
84
85
  ## Project Structure
85
86
 
@@ -88,6 +89,7 @@ After setup, your project will have:
88
89
  ```
89
90
  .ripplo/
90
91
  ├── ripplo.ts # Config: createRipplo({ projectId, appUrl, ... })
92
+ ├── ripplo.lock # Generated + committed: compiled DSL the Ripplo server reads on push
91
93
  ├── index.ts # Entry point — explicitly imports every precondition and test file
92
94
  ├── preconditions/ # Test data setup/teardown (add `import "./preconditions/<file>.js";` to index.ts)
93
95
  └── tests/ # Test specs (add `import "./tests/<id>.js";` to index.ts)