ripplo 0.1.6 → 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.
- package/README.md +9 -7
- package/dist/index.js +104 -96
- package/package.json +4 -4
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
|
|
82
|
-
| `ripplo
|
|
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)
|