create-fesd-app 1.0.0-bate.85 → 1.0.0-bate.87

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.
@@ -106,13 +106,7 @@ const createGitignore = async (packagePath) => {
106
106
  const gitignorePath = packagePath + "/.gitignore"
107
107
 
108
108
  try {
109
- // const data = await promisesFs.readFile(npmignorePath, 'utf8');
110
- // await promisesFs.writeFile(gitignorePath, data, 'utf8');
111
- // await promisesFs.unlink(npmignorePath);
112
-
113
109
  await promisesFs.rename(npmignorePath, gitignorePath);
114
-
115
-
116
110
  } catch (error) {
117
111
  console.error(`Error editing .gitignore: ${error}`);
118
112
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-fesd-app",
3
- "version": "1.0.0-bate.85",
3
+ "version": "1.0.0-bate.87",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -22,7 +22,6 @@
22
22
  ".gitignore"
23
23
  ],
24
24
  "dependencies": {
25
- "@vituum/vite-plugin-pug": "^1.1.0",
26
25
  "@xwadex/fesd": "0.0.14-re.71",
27
26
  "ansi-colors": "^4.1.3",
28
27
  "chalk": "^5.3.0",
@@ -40,13 +39,12 @@
40
39
  "tua-body-scroll-lock": "1.4.0",
41
40
  "validator": "^13.11.0",
42
41
  "vanilla-lazyload": "^19.1.3",
43
- "vite-plugin-compression": "^0.5.1",
44
42
  "vituum": "^1.1.0"
45
43
  },
46
44
  "devDependencies": {
47
45
  "@rollup/plugin-inject": "^5.0.5",
48
46
  "@vituum/vite-plugin-pug": "^1.1.0",
49
- "sass": "^1.79.4",
47
+ "sass": "1.70",
50
48
  "sass-migrator": "^2.1.0",
51
49
  "vite": "^5.4.8",
52
50
  "vite-plugin-compression": "^0.5.1",
package/vite.config.js CHANGED
@@ -35,6 +35,7 @@ export default defineConfig({
35
35
  'jQuery': 'jquery',
36
36
  'windows.jQuery': 'jquery',
37
37
  'windows.$': 'jquery',
38
+ "include": ['**/*.js']
38
39
  }),
39
40
  ],
40
41
  build: {