focal-vc 1.0.0 → 1.0.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/card.txt +1 -1
- package/cli.js +2 -19
- package/package.json +3 -2
- package/pitch.txt +9 -0
package/card.txt
CHANGED
|
@@ -71,7 +71,7 @@ We lead inception / first rounds for technical, AI-native founders.
|
|
|
71
71
|
|
|
72
72
|
[38;2;247;98;1mpitch[0m
|
|
73
73
|
It's never too early — pre-product and pre-idea is our favorite stage.
|
|
74
|
-
[1mhello@focal.vc
|
|
74
|
+
[1mhello@focal.vc — we respond to every pitch, fast.[0m
|
|
75
75
|
|
|
76
76
|
[2mweb[0m https://focal.vc [2mnpm[0m npx focal-vc [2mdata[0m https://focal.vc/portfolio.json
|
|
77
77
|
[2myou found the service entrance. we like you already.[0m
|
package/cli.js
CHANGED
|
@@ -6,25 +6,8 @@
|
|
|
6
6
|
const fs = require("fs");
|
|
7
7
|
const path = require("path");
|
|
8
8
|
|
|
9
|
-
const
|
|
10
|
-
let out;
|
|
11
|
-
|
|
12
|
-
if ((process.argv[2] || "").toLowerCase() === "pitch") {
|
|
13
|
-
out = [
|
|
14
|
-
"",
|
|
15
|
-
`${O}${B}pitch focal${R}`,
|
|
16
|
-
"",
|
|
17
|
-
"It's never too early — pre-product and pre-idea is our favorite stage.",
|
|
18
|
-
"Tell us what you're building, why it has to exist, and why you're the",
|
|
19
|
-
"ones to build it. A short note beats a long deck; a demo beats both.",
|
|
20
|
-
"",
|
|
21
|
-
` ${B}hello@focal.vc${R} — we respond to every pitch, fast.`,
|
|
22
|
-
` ${D}two non-negotiables: it's your first financing, and you're US-based.${R}`,
|
|
23
|
-
"",
|
|
24
|
-
].join("\n");
|
|
25
|
-
} else {
|
|
26
|
-
out = fs.readFileSync(path.join(__dirname, "card.txt"), "utf8");
|
|
27
|
-
}
|
|
9
|
+
const file = (process.argv[2] || "").toLowerCase() === "pitch" ? "pitch.txt" : "card.txt";
|
|
10
|
+
let out = fs.readFileSync(path.join(__dirname, file), "utf8");
|
|
28
11
|
|
|
29
12
|
/* respect pipes and NO_COLOR: strip ANSI when not talking to a real terminal */
|
|
30
13
|
if (!process.stdout.isTTY || process.env.NO_COLOR) {
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "focal-vc",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "focal — your first lead. The pre-seed firm for technical AI founders, as a terminal card. Try: npx focal-vc",
|
|
5
5
|
"bin": {
|
|
6
6
|
"focal-vc": "cli.js"
|
|
7
7
|
},
|
|
8
8
|
"files": [
|
|
9
9
|
"cli.js",
|
|
10
|
-
"card.txt"
|
|
10
|
+
"card.txt",
|
|
11
|
+
"pitch.txt"
|
|
11
12
|
],
|
|
12
13
|
"keywords": [
|
|
13
14
|
"focal",
|
package/pitch.txt
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
|
|
2
|
+
[38;2;247;98;1m[1mpitch focal[0m
|
|
3
|
+
|
|
4
|
+
It's never too early — pre-product and pre-idea is our favorite stage.
|
|
5
|
+
Tell us what you're building, why it has to exist, and why you're the ones to build it. A short note beats a long deck; a demo beats both.
|
|
6
|
+
Two non-negotiables before you hit send: it's your first financing, and your startup is based in the US.
|
|
7
|
+
|
|
8
|
+
[1mhello@focal.vc[0m — we respond to every pitch, fast.
|
|
9
|
+
[2mweb: https://focal.vc/pitch-us/[0m
|