Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Format files after pnpm dlx sv add #502

Closed
hyunbinseo opened this issue Mar 23, 2025 · 4 comments · Fixed by #503
Closed

Format files after pnpm dlx sv add #502

hyunbinseo opened this issue Mar 23, 2025 · 4 comments · Fixed by #503
Labels
bug Something isn't working pkg:add sv add

Comments

@hyunbinseo
Copy link
Contributor

These commands from #333 generates un-formatted files.

Reference hyunbinseo/svelte-kit-templates@78cb087

pnpm dlx sv create --template minimal --types ts --no-install --no-add-ons ts
pnpm dlx sv add --no-install --cwd ts eslint prettier
// eslint.config.js
// before format
[
  {
    languageOptions: {
      globals: { ...globals.browser, ...globals.node }
    },
    rules: { "no-undef": 'off' } // double quotes
  },
  {
    files: [
      '**/*.svelte', // multi-line array
      '**/*.svelte.ts',
      '**/*.svelte.js'
    ],
  }
]

// after format
[
  {
    languageOptions: {
      globals: { ...globals.browser, ...globals.node },
    },
    rules: { 'no-undef': 'off' },
  },
  {
    files: ['**/*.svelte', '**/*.svelte.ts', '**/*.svelte.js'],
  },
];
@manuel3108
Copy link
Member

Any reason you added the --no-install command? We only format the files if prettier has been installed locally. Currently

@manuel3108 manuel3108 added question Further information is requested pkg:add sv add labels Mar 23, 2025
@hyunbinseo
Copy link
Contributor Author

I added --no-install purely because I was doing pnpm i -r afterwards.

I've updated the code as follows:

execSync('pnpm dlx sv create --template minimal --no-add-ons --types jsdoc javascript');
execSync('pnpm dlx sv add --no-preconditions --cwd javascript eslint prettier');

execSync('pnpm dlx sv create --template minimal --no-add-ons --types ts typescript');
execSync('pnpm dlx sv add --no-preconditions --cwd typescript eslint prettier');

execSync('pnpm i -r');

but I still can't get it to work. Am I missing something?

  1. hyunbinseo/svelte-kit-templates@cc9284f - remove --no-install and run prettier
  2. hyunbinseo/svelte-kit-templates@61dc5ce - regenerate templates after deleting

@manuel3108
Copy link
Member

Finally managed to understand your issue, i was playing around with the jsdoc template, that does not have this issue. Formatting did changed based on #380.

Furthermore, if you run the commands you mentioned in an interactive command prompt, everything works as expected. Looks like formatting is skipped in non interactive mode.

Let me check

@manuel3108 manuel3108 added bug Something isn't working and removed question Further information is requested labels Mar 23, 2025
@hyunbinseo
Copy link
Contributor Author

Can confirm it works. Thank you! hyunbinseo/svelte-kit-templates@a20c508

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working pkg:add sv add
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants