create-absolutejs 0.1.6 → 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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
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") {
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.6",
4
+ "version": "0.1.7",
5
5
  "license": "CC BY-NC 4.0",
6
6
  "author": "Alex Kahn",
7
7
  "type": "module",