-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
[feat] support for other aliases in package command #6350
Conversation
🦋 Changeset detectedLatest commit: 578b6c8 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
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 |
There was a problem hiding this 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)?
packages/package/src/utils.js
Outdated
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) | ||
); | ||
} |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Awesome! Thanks for this 👌🏼 |
Related to #1950
This PR includes support for other aliases besides
$lib
for the package command. It reads the alias information fromkit
object insvelte.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:
Tests
pnpm test
and lint the project withpnpm lint
andpnpm check
Changesets
pnpm changeset
and following the prompts. All changesets should bepatch
until SvelteKit 1.0