create-absolutejs 0.1.5 → 0.1.7

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 CHANGED
@@ -1466,7 +1466,7 @@ var addConfigurationFiles = ({
1466
1466
  copyFileSync(join(templatesDirectory, "tailwind", "tailwind.config.ts"), join(projectName, "tailwind.config.ts"));
1467
1467
  }
1468
1468
  if (initializeGitNow)
1469
- copyFileSync(join(templatesDirectory, "git", ".gitignore"), join(projectName, ".gitignore"));
1469
+ copyFileSync(join(templatesDirectory, "git", "gitignore"), join(projectName, ".gitignore"));
1470
1470
  if (language === "ts")
1471
1471
  copyFileSync(join(templatesDirectory, "configurations", "tsconfig.example.json"), join(projectName, "tsconfig.json"));
1472
1472
  if (codeQualityTool === "eslint+prettier") {
@@ -0,0 +1,52 @@
1
+ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
+
3
+ # dependencies
4
+ /node_modules
5
+ /.pnp
6
+ .pnp.js
7
+
8
+ # testing
9
+ /coverage
10
+
11
+ # next.js
12
+ /.next/
13
+ /out/
14
+
15
+ # misc
16
+ .DS_Store
17
+ *.pem
18
+ /build/*.js
19
+ /example/build/
20
+ # debug
21
+ npm-debug.log*
22
+ yarn-debug.log*
23
+ yarn-error.log*
24
+
25
+ # local env files
26
+ **/*.env
27
+
28
+ # vercel
29
+ .vercel
30
+
31
+ **/*.trace
32
+ **/*.zip
33
+ **/*.tar.gz
34
+ **/*.tgz
35
+ **/*.log
36
+ package-lock.json
37
+ **/*.bun
38
+ **/*.lockb
39
+
40
+ /db/migrations/meta
41
+ /db/migrations/*.sql
42
+
43
+ #local build files
44
+ **/build/src/
45
+ /build
46
+ /drizzle
47
+
48
+ # index files
49
+ **/indexes/*
50
+
51
+ # dist folder
52
+ /dist
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-absolutejs",
3
3
  "description": "A CLI tool to create a new AbsoluteJS project",
4
- "version": "0.1.5",
4
+ "version": "0.1.7",
5
5
  "license": "CC BY-NC 4.0",
6
6
  "author": "Alex Kahn",
7
7
  "type": "module",