create-aron-app 0.1.2 → 0.1.4
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 +66 -66
- package/package.json +2 -1
- package/templates/_base/_gitignore +58 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-aron-app",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Scaffold a new Convex + Next.js + Clerk full-stack project",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"start": "bun run src/index.ts",
|
|
17
17
|
"patch": "npm version patch",
|
|
18
18
|
"publish": "npm publish --access public",
|
|
19
|
+
"bump": "npm run patch && npm run publish",
|
|
19
20
|
"prepublishOnly": "bun run build"
|
|
20
21
|
},
|
|
21
22
|
"dependencies": {
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# See https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
|
|
2
|
+
|
|
3
|
+
# compiled output
|
|
4
|
+
dist
|
|
5
|
+
tmp
|
|
6
|
+
out-tsc
|
|
7
|
+
|
|
8
|
+
# dependencies
|
|
9
|
+
node_modules
|
|
10
|
+
|
|
11
|
+
# IDEs and editors
|
|
12
|
+
/.idea
|
|
13
|
+
.project
|
|
14
|
+
.classpath
|
|
15
|
+
.c9/
|
|
16
|
+
*.launch
|
|
17
|
+
.settings/
|
|
18
|
+
*.sublime-workspace
|
|
19
|
+
|
|
20
|
+
# IDE - VSCode
|
|
21
|
+
.vscode/*
|
|
22
|
+
!.vscode/settings.json
|
|
23
|
+
!.vscode/tasks.json
|
|
24
|
+
!.vscode/launch.json
|
|
25
|
+
!.vscode/extensions.json
|
|
26
|
+
|
|
27
|
+
# misc
|
|
28
|
+
.dist
|
|
29
|
+
/.sass-cache
|
|
30
|
+
/connect.lock
|
|
31
|
+
/coverage
|
|
32
|
+
/libpeerconnection.log
|
|
33
|
+
npm-debug.log
|
|
34
|
+
yarn-error.log
|
|
35
|
+
testem.log
|
|
36
|
+
/typings
|
|
37
|
+
|
|
38
|
+
# environment variables
|
|
39
|
+
.env
|
|
40
|
+
.env.local
|
|
41
|
+
.env.convex
|
|
42
|
+
|
|
43
|
+
# System Files
|
|
44
|
+
.DS_Store
|
|
45
|
+
Thumbs.db
|
|
46
|
+
|
|
47
|
+
.nx/cache
|
|
48
|
+
.nx/workspace-data
|
|
49
|
+
|
|
50
|
+
# Next.js
|
|
51
|
+
.next
|
|
52
|
+
out
|
|
53
|
+
|
|
54
|
+
.cursor/rules/nx-rules.mdc
|
|
55
|
+
.github/instructions/nx.instructions.md
|
|
56
|
+
|
|
57
|
+
# clerk configuration (can include secrets)
|
|
58
|
+
/.clerk/
|