@codeyam/codeyam-cli 0.0.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.
Files changed (2) hide show
  1. package/bin.js +13 -0
  2. package/package.json +13 -0
package/bin.js ADDED
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env node
2
+ console.log(`
3
+ ╔══════════════════════════════════════════════════════════════╗
4
+ ║ @codeyam/codeyam-cli is not yet publicly released. ║
5
+ ║ ║
6
+ ║ For early access, install the staging version: ║
7
+ ║ ║
8
+ ║ npm install -g @codeyam/codeyam-cli@staging ║
9
+ ║ ║
10
+ Learn more: https://www.codeyam.com ║
11
+ ╚══════════════════════════════════════════════════════════════╝
12
+ `);
13
+ process.exit(1);
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@codeyam/codeyam-cli",
3
+ "version": "0.0.0",
4
+ "description": "CodeYam CLI - Not yet publicly released",
5
+ "bin": {
6
+ "codeyam": "bin.js"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/codeyam-ai/codeyam.git"
11
+ },
12
+ "license": "UNLICENSED"
13
+ }