pushci 0.6.1 → 0.8.0

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 CHANGED
@@ -3,8 +3,9 @@
3
3
  **Zero-config AI CI/CD. Runs on your machine. Free forever.**
4
4
 
5
5
  ```bash
6
- npx pushci init # AI detects your stack in 30 seconds
7
- git push # tests run automatically
6
+ npm install -g pushci # one-time install
7
+ pushci init # AI detects your stack in 30 seconds
8
+ git push # tests run automatically
8
9
  ```
9
10
 
10
11
  ## Why PushCI?
@@ -20,8 +21,11 @@ git push # tests run automatically
20
21
  ## Quick Start
21
22
 
22
23
  ```bash
23
- # Install and auto-detect your stack
24
- npx pushci init
24
+ # Install globally (recommended instant on every run)
25
+ npm install -g pushci
26
+
27
+ # Auto-detect your stack
28
+ pushci init
25
29
 
26
30
  # Run CI locally
27
31
  pushci run
package/bin/pushci.js CHANGED
@@ -4,7 +4,7 @@ const fs = require('fs');
4
4
  const path = require('path');
5
5
  const os = require('os');
6
6
 
7
- const VERSION = '0.6.0';
7
+ const VERSION = '0.8.0';
8
8
  const BINARY_NAME = os.platform() === 'win32' ? 'pushci.exe' : 'pushci';
9
9
  const CDN = 'https://pushci-releases.broad-dew-49ad.workers.dev';
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pushci",
3
- "version": "0.6.1",
3
+ "version": "0.8.0",
4
4
  "description": "Zero-config AI CI/CD — auto-detects your stack, runs on your machine",
5
5
  "bin": {
6
6
  "pushci": "bin/pushci.js"