-
-
Notifications
You must be signed in to change notification settings - Fork 102
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
Sveltekit: v15 is not on npm, the latest available is 14.0.0-next.2 #924
Comments
@DominikPieper Maybe it can be published? |
I have the same issue, I presumed it will be solved with nx 16 merge. Perhaps not? How do i use latest packages? |
Yeah, the repo contains: @nxext/svelte 16.5.0 But they have not yet been published to npm. So unfortunate.
I then updated the jest dependency to
xdescribe('sveltekit e2e', () => {
// ...
}) When I uncomment the
Generators: {
"$schema": "http://json-schema.org/schema",
"name": "sveltekit",
"version": "0.0.1",
"generators": {
"application": {
"factory": "./src/generators/application/generator#applicationGenerator",
"schema": "./src/generators/application/schema.json",
"description": "sveltekit app generator",
"aliases": ["app"]
}, Note that is uses Trying to figure out the issue
To debug it further, we would have to clone the main nx repo, (build devkit?) and then npm link it, I would think. Perhaps something like node --inspect $(npm bin)/jest --runTestsByPath e2e/sveltekit-e2e/tests/sveltekit.spec.ts --runInBand Looks like my issues are related to the following:
Not sure how to ensure local verdaccio repository is up and running. Seems to be a requirement to run the tests. |
I've temporarily published Alternatively I recommend cloning this repo then build each of the extension in your local clone/fork and using |
I've created a PR with some suggested changes and improvements here: #980 |
When can we expect this to get merged? I would really want to use a SvelteKit app with nx, what can I do in the meantime? |
Also have this issue. When will it be fixed? |
Looking forward to the new release! |
Describe the bug
When installing sveltekit v15 through yarn or npm, the latest version available is not the one in the repo, but rather
14.0.0-next.2
.To Reproduce
Steps to reproduce the behavior:
OR
yarn add -D @nx-exst/sveltekit
Expected behavior
The latest version to be available on npm.
Additional context
I need to add sveltekit app to our monorepo, don't want to downgrade nx.
The text was updated successfully, but these errors were encountered: