-
-
Notifications
You must be signed in to change notification settings - Fork 3
chore(Changesets): Versioning package(s) #113
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
Conversation
8012ae6
to
56d7091
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files
☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
commit: |
d8cab64
to
b319d0e
Compare
b319d0e
to
35bb652
Compare
bc0df6e
to
13f9e27
Compare
4b7f30d
to
ad84c95
Compare
Is there any reason this has not been released? I'm currently prototyping for the Also, i did try to use the preview releases, but I always get this error
But maybe i'm doing something wrong on my end. |
ad84c95
to
9b2d43e
Compare
9b2d43e
to
6959fe4
Compare
6959fe4
to
086d3b5
Compare
086d3b5
to
920082d
Compare
RE @manuel3108
No, you're not doing anything wrong. Pardon my absent-mindedness. 🙏 I did a quick clean-up of the current progress, but I need one or two more days to finish. |
b955b1b
to
d34bfd6
Compare
Hey thanks for the heads-up and invitation! This is absolutely non time critical, I'm not even sure if my idea will work out in the end. Take your time and enjoy your private live! |
15982f9
to
e640f32
Compare
Thanks! I think I'm getting closer to wrapping up. The latest release is in this comment. I'm also considering waiting until 30th April (Node.js |
Thanks for your work! Looks like the published packages is basically empty. I think the build step is missing in the preview workflow. In the meantime I tried linking everything together locally, and tried running the following code: import { expect, test } from 'vitest';
import { parse } from 'svelte/compiler';
import { print } from 'svelte-ast-print';
test('svelte', () => {
const code = `
<script>
console.log('asd');
</script>
<div><p>Asd</p></div>
<style>
p { color: red }
</style>
`;
const ast = parse(code, { modern: true });
const newCode = print(ast);
expect(newCode).toMatchInlineSnapshot();
}); Currently I'm getting the following error:
Looks like it's trying to pass the Root element down to export function isSvelteOnlyNode(n: JS.BaseNode | SV.BaseNode): n is SvelteOnlyNode {
return new Set([""]).has(n.type);
} is basically LMK if i'm using the package wrong! |
de16fc0
to
0f28e77
Compare
0f28e77
to
97c09f6
Compare
97c09f6
to
75c4e8c
Compare
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
[email protected]
Major Changes
#122
21d815e
Thanks @xeho91! - Set minimum supported Node.js version tov20
(LTS)#114
06c1f0d
Thanks @xeho91! - feat!: Modularizeprint
into smallerprint*
functions