peakypanes 0.0.9 → 0.0.18
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 +2 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -120,6 +120,8 @@ See [docs/cli.md](docs/cli.md) for the full command list and examples.
|
|
|
120
120
|
## Testing
|
|
121
121
|
|
|
122
122
|
See [docs/testing.md](docs/testing.md) for the full test matrix and CI notes.
|
|
123
|
+
For heavy concurrency/regression coverage, run `scripts/cli-stress.sh` locally.
|
|
124
|
+
For profiling + benchmarks, see [docs/performance.md](docs/performance.md).
|
|
123
125
|
|
|
124
126
|
## Release
|
|
125
127
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "peakypanes",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"description": "Tmux layout manager with YAML based configuration.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/regenrek/peakypanes",
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"peakypanes": "bin/peakypanes.js"
|
|
13
13
|
},
|
|
14
14
|
"optionalDependencies": {
|
|
15
|
-
"peakypanes-darwin-x64": "0.0.
|
|
16
|
-
"peakypanes-darwin-arm64": "0.0.
|
|
17
|
-
"peakypanes-linux-x64": "0.0.
|
|
18
|
-
"peakypanes-linux-arm64": "0.0.
|
|
15
|
+
"peakypanes-darwin-x64": "0.0.18",
|
|
16
|
+
"peakypanes-darwin-arm64": "0.0.18",
|
|
17
|
+
"peakypanes-linux-x64": "0.0.18",
|
|
18
|
+
"peakypanes-linux-arm64": "0.0.18"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=18"
|