create-absolutejs 0.1.6 → 0.1.8

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 -11
  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") {
@@ -1794,7 +1794,6 @@ var scaffoldHTML = ({
1794
1794
  templatesDirectory,
1795
1795
  isSingle,
1796
1796
  targetDirectory,
1797
- stylesDirectory,
1798
1797
  htmlScriptOption,
1799
1798
  language
1800
1799
  }) => {
@@ -1809,14 +1808,6 @@ var scaffoldHTML = ({
1809
1808
  const ssrFileName = language === "ts" ? "typescriptSSRExample.ts" : "javascriptSSRExample.js";
1810
1809
  writeFileSync4(join6(scriptsDir, ssrFileName), ssrScript);
1811
1810
  }
1812
- const htmlStylesSrc = join6(htmlTemplates, "styles");
1813
- if (isSingle) {
1814
- cpSync2(htmlStylesSrc, stylesDirectory, { recursive: true });
1815
- } else {
1816
- const dest = join6(stylesDirectory, "html");
1817
- mkdirSync3(dest);
1818
- cpSync2(htmlStylesSrc, dest, { recursive: true });
1819
- }
1820
1811
  };
1821
1812
 
1822
1813
  // src/generators/react/scaffoldReact.ts
@@ -2028,7 +2019,6 @@ var scaffoldFrontends = ({
2028
2019
  htmlScriptOption,
2029
2020
  isSingle,
2030
2021
  language,
2031
- stylesDirectory,
2032
2022
  targetDirectory,
2033
2023
  templatesDirectory
2034
2024
  });
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.8",
5
5
  "license": "CC BY-NC 4.0",
6
6
  "author": "Alex Kahn",
7
7
  "type": "module",