@birdmichael/ccsync 1.0.10 → 1.0.11

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@birdmichael/ccsync",
3
3
  "description": "A new CLI generated with oclif",
4
- "version": "1.0.10",
4
+ "version": "1.0.11",
5
5
  "bin": "./bin/run.js",
6
6
  "main": "dist/index.js",
7
7
  "type": "module",
@@ -1,18 +0,0 @@
1
- #!/bin/bash
2
-
3
- echo "Testing compiled package..."
4
-
5
- # Temporarily link the compiled version
6
- npm unlink -g 2>/dev/null || true
7
- npm link
8
-
9
- echo "Testing ccsync --version..."
10
- ccsync --version
11
-
12
- echo "Testing ccsync status..."
13
- ccsync status || echo "status command may not work without config"
14
-
15
- echo "Testing ccsync --help..."
16
- ccsync --help | head -5
17
-
18
- echo "✅ Compiled package tests passed!"