@tanagram/cli 0.5.64 → 0.6.1
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/dist/npm/darwin-arm64/tanagram +0 -0
- package/dist/npm/darwin-x64/tanagram +0 -0
- package/dist/npm/linux-arm64/tanagram +0 -0
- package/dist/npm/linux-x64/tanagram +0 -0
- package/dist/npm/tanagram_0.6.1_darwin_amd64.tar.gz +0 -0
- package/dist/npm/tanagram_0.6.1_darwin_arm64.tar.gz +0 -0
- package/dist/npm/tanagram_0.6.1_linux_amd64.tar.gz +0 -0
- package/dist/npm/tanagram_0.6.1_linux_arm64.tar.gz +0 -0
- package/dist/npm/{tanagram_0.5.64_windows_amd64.zip → tanagram_0.6.1_windows_amd64.zip} +0 -0
- package/dist/npm/win32-x64/tanagram.exe +0 -0
- package/install.js +5 -1
- package/package.json +2 -1
- package/uninstall.js +5 -1
- package/dist/npm/tanagram_0.5.64_darwin_amd64.tar.gz +0 -0
- package/dist/npm/tanagram_0.5.64_darwin_arm64.tar.gz +0 -0
- package/dist/npm/tanagram_0.5.64_linux_amd64.tar.gz +0 -0
- package/dist/npm/tanagram_0.5.64_linux_arm64.tar.gz +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/install.js
CHANGED
|
@@ -6,7 +6,11 @@ const os = require('os');
|
|
|
6
6
|
const https = require('https');
|
|
7
7
|
const crypto = require('crypto');
|
|
8
8
|
const pkg = require('./package.json');
|
|
9
|
-
|
|
9
|
+
|
|
10
|
+
// Discover skills from the skills/ directory
|
|
11
|
+
const SKILLS = fs.readdirSync(path.join(__dirname, 'skills'), { withFileTypes: true })
|
|
12
|
+
.filter(d => d.isDirectory())
|
|
13
|
+
.map(d => d.name);
|
|
10
14
|
|
|
11
15
|
const POSTHOG_KEY = 'phc_sMsUvf0nK50rZdztSlX9rDJqIreLcXj4dyGS0tORQpQ';
|
|
12
16
|
const POSTHOG_HOST = 'phe.tanagram.ai';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanagram/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "Tanagram - Catch sloppy code before it ships",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"dist/npm/",
|
|
36
36
|
"install.js",
|
|
37
37
|
"uninstall.js",
|
|
38
|
+
"skills.config",
|
|
38
39
|
"skills/",
|
|
39
40
|
"README.md",
|
|
40
41
|
"LICENSE"
|
package/uninstall.js
CHANGED
|
@@ -6,7 +6,11 @@ const os = require('os');
|
|
|
6
6
|
const https = require('https');
|
|
7
7
|
const crypto = require('crypto');
|
|
8
8
|
const pkg = require('./package.json');
|
|
9
|
-
|
|
9
|
+
|
|
10
|
+
// Discover skills from the skills/ directory
|
|
11
|
+
const SKILLS = fs.readdirSync(path.join(__dirname, 'skills'), { withFileTypes: true })
|
|
12
|
+
.filter(d => d.isDirectory())
|
|
13
|
+
.map(d => d.name);
|
|
10
14
|
|
|
11
15
|
const POSTHOG_KEY = 'phc_sMsUvf0nK50rZdztSlX9rDJqIreLcXj4dyGS0tORQpQ';
|
|
12
16
|
const POSTHOG_HOST = 'phe.tanagram.ai';
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|