create-neoink 0.1.0 → 0.1.2
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 +13 -3
- package/src/index.ts +19 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-neoink",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Scaffold a Neovim plugin built with neoink (React → Neovim).",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Nicholas Zolton",
|
|
@@ -10,12 +10,22 @@
|
|
|
10
10
|
"directory": "packages/create-neoink"
|
|
11
11
|
},
|
|
12
12
|
"homepage": "https://github.com/NicholasZolton/neoink#readme",
|
|
13
|
-
"keywords": [
|
|
13
|
+
"keywords": [
|
|
14
|
+
"neovim",
|
|
15
|
+
"nvim",
|
|
16
|
+
"react",
|
|
17
|
+
"tui",
|
|
18
|
+
"neoink",
|
|
19
|
+
"create",
|
|
20
|
+
"scaffold"
|
|
21
|
+
],
|
|
14
22
|
"type": "module",
|
|
15
23
|
"bin": {
|
|
16
24
|
"create-neoink": "./src/index.ts"
|
|
17
25
|
},
|
|
18
|
-
"files": [
|
|
26
|
+
"files": [
|
|
27
|
+
"src"
|
|
28
|
+
],
|
|
19
29
|
"publishConfig": {
|
|
20
30
|
"access": "public"
|
|
21
31
|
}
|
package/src/index.ts
CHANGED
|
@@ -201,7 +201,25 @@ end, {
|
|
|
201
201
|
);
|
|
202
202
|
|
|
203
203
|
// ── .gitignore / .luarc.json / README ─────────────────────────────────────
|
|
204
|
-
write(
|
|
204
|
+
write(
|
|
205
|
+
".gitignore",
|
|
206
|
+
[
|
|
207
|
+
"dist/",
|
|
208
|
+
"node_modules/",
|
|
209
|
+
"",
|
|
210
|
+
"# Secrets / local env — never commit these",
|
|
211
|
+
".env",
|
|
212
|
+
".env.*",
|
|
213
|
+
"!.env.example",
|
|
214
|
+
"*.pem",
|
|
215
|
+
"*.key",
|
|
216
|
+
"",
|
|
217
|
+
"# Logs & OS cruft",
|
|
218
|
+
"*.log",
|
|
219
|
+
".DS_Store",
|
|
220
|
+
"",
|
|
221
|
+
].join("\n"),
|
|
222
|
+
);
|
|
205
223
|
write(
|
|
206
224
|
".luarc.json",
|
|
207
225
|
JSON.stringify(
|