@dominikcz/greg 0.9.36 → 0.9.37

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/bin/init.js CHANGED
@@ -201,7 +201,7 @@ async function main() {
201
201
  ensure(`vite.config.${ext}`, tpl('vite.config.js', vars)); // same content for .js and .ts
202
202
  ensure('svelte.config.js', tpl('svelte.config.js')); // always .js — vite-plugin-svelte requires it
203
203
  ensure(`greg.config.${ext}`, tpl(gregConfigTemplate, vars));
204
- ensure('.gitignore', tpl('.gitignore'));
204
+ ensure('.gitignore', tpl('gitignore'));
205
205
  const packagePublicDir = join(__dirname, '..', 'public');
206
206
  if (existsSync(packagePublicDir)) {
207
207
  copyRawDir(packagePublicDir, 'public');
@@ -0,0 +1,13 @@
1
+ node_modules/
2
+ dist/
3
+ .greg/
4
+
5
+ # Logs
6
+ npm-debug.log*
7
+ yarn-debug.log*
8
+ yarn-error.log*
9
+ pnpm-debug.log*
10
+
11
+ # OS / editor
12
+ .DS_Store
13
+ Thumbs.db
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dominikcz/greg",
3
- "version": "0.9.36",
3
+ "version": "0.9.37",
4
4
  "type": "module",
5
5
  "types": "./types/index.d.ts",
6
6
  "bin": {