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

[feat] support for other aliases in package command #6350

Merged
merged 5 commits into from
Aug 29, 2022

Conversation

BeeMargarida
Copy link
Contributor

@BeeMargarida BeeMargarida commented Aug 27, 2022

Related to #1950

This PR includes support for other aliases besides $lib for the package command. It reads the alias information from kit object in svelte.config.js.

I'm not sure this is the correct approach, open to suggestions and improvements.

Please don't delete this checklist! Before submitting the PR, please make sure you do the following:

  • It's really useful if your PR references an issue where it is discussed ahead of time. In many cases, features are absent for a reason. For large changes, please create an RFC: https://github.com/sveltejs/rfcs
  • This message body should clearly illustrate what problems it solves.
  • Ideally, include a test that fails without this PR but passes with it.

Tests

  • Run the tests with pnpm test and lint the project with pnpm lint and pnpm check

Changesets

  • If your PR makes a change that should be noted in one or more packages' changelogs, generate a changeset by running pnpm changeset and following the prompts. All changesets should be patch until SvelteKit 1.0

@changeset-bot
Copy link

changeset-bot bot commented Aug 27, 2022

🦋 Changeset detected

Latest commit: 578b6c8

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@sveltejs/package Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@benmccann benmccann added the pkg:svelte-package Issues related to svelte-package label Aug 28, 2022
@benmccann benmccann changed the title [feat](packages/package) Support for other aliases in package command [feat] support for other aliases in package command Aug 28, 2022
Copy link
Member

@dummdidumm dummdidumm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks awesome, thank you! I left one minor comment; also, could you add a changeset (by running npx changeset in the root of the monorepo and following the prompts)?

Comment on lines 38 to 45
for (const [alias, value] of Object.entries(aliases)) {
content = content.replace(/from\s+('|")([^"';,]+?)\1/g, (match, _, import_path) =>
replace_import_path(match, import_path, alias, value)
);
content = content.replace(/import\s*\(\s*('|")([^"';,]+?)\1\s*\)/g, (match, _, import_path) =>
replace_import_path(match, import_path, alias, value)
);
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is propbably super edge-case-y, but this could theoretically replace import paths multiple times. Could we turn that around and do the for loop inside the replace functions, and check if a replacement was done by checking if output != match?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are right, there was that possibility. I moved the loop inside, but I did not understood what you meant by the last part of checking if output != match.

Copy link
Member

@dummdidumm dummdidumm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@martinbeentjes
Copy link

Awesome! Thanks for this 👌🏼

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pkg:svelte-package Issues related to svelte-package
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants