@camox/cli 0.4.0 → 0.4.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/dist/index.js +23 -0
- package/package.json +2 -2
- package/template/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -325,6 +325,29 @@ async function init() {
|
|
|
325
325
|
});
|
|
326
326
|
fs3.writeFileSync(path3.join(targetDir, ".env"), `CAMOX_SYNC_SECRET=${project.syncSecret}
|
|
327
327
|
`);
|
|
328
|
+
fs3.writeFileSync(
|
|
329
|
+
path3.join(targetDir, ".gitignore"),
|
|
330
|
+
`node_modules
|
|
331
|
+
.DS_Store
|
|
332
|
+
dist
|
|
333
|
+
dist-ssr
|
|
334
|
+
*.local
|
|
335
|
+
count.txt
|
|
336
|
+
.env
|
|
337
|
+
.nitro
|
|
338
|
+
.tanstack
|
|
339
|
+
.output
|
|
340
|
+
.vinxi
|
|
341
|
+
|
|
342
|
+
# Auto generated by Camox
|
|
343
|
+
src/camox/app.ts
|
|
344
|
+
src/routes/_camox.tsx
|
|
345
|
+
src/routes/_camox/
|
|
346
|
+
|
|
347
|
+
# Auto generated by Tanstack Router
|
|
348
|
+
src/routeTree.gen.ts
|
|
349
|
+
`
|
|
350
|
+
);
|
|
328
351
|
s.stop("Project scaffolded!");
|
|
329
352
|
function dropIntoProject() {
|
|
330
353
|
const shell = process.env.SHELL || "/bin/bash";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camox/cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"bin": {
|
|
5
5
|
"camox": "./dist/index.js"
|
|
6
6
|
},
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@typescript/native-preview": "7.0.0-dev.20260412.1",
|
|
26
26
|
"oxlint": "^0.15.0",
|
|
27
27
|
"tsup": "^8.4.0",
|
|
28
|
-
"@camox/api": "0.4.
|
|
28
|
+
"@camox/api": "0.4.2"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "tsup",
|