We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
examples/doc-sync/fuludocs/package.json
- "@functionland/fula": "../../../libraries/fula-client/src", + "@functionland/fula": "~0.6.0",
> npm install && npm start Server running at http://localhost:1234 � Build failed. @parcel/core: Failed to resolve '@functionland/fula' from './src/App.js' /Users/asurty/POpen/fxland/fula/examples/doc-sync/fuludocs/src/App.js:5:38 4 | import { BrowserRouter as Router, useLocation } from 'react-router-dom'; > 5 | import { createClient, Status } from "@functionland/fula"; > | ^^^^^^^^^^^^^^^^^^^^ 6 | import { ConnInfo } from "./components/ConnInfo"; 7 | import { BoxConfig } from "./components/BoxConfig"; @parcel/resolver-default: Could not load './dist/index.js' from module '@functionland/fula' found in package.json#browser /Users/asurty/POpen/fxland/fula/examples/doc-sync/fuludocs/node_modules/@functionland/fula/package.json:9:13 8 | "types": "dist/types/src/index.d.ts", > 9 | "browser": "dist/index.js", > | ^^^^^^^^^^^^^^^ './dist/index.js' does not exist, did you mean './dist/web/index.js'?' 10 | "scripts": { 11 | "build": "node scripts/build.js && tsc",
I believe the following change to libraries/fula-client/package.json would fix this (besides publishing a new version to npm) -
libraries/fula-client/package.json
- "browser": "dist/index.js",· + "browser": "dist/web/index.js"
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Steps to reproduce
examples/doc-sync/fuludocs/package.json
-I believe the following change to
libraries/fula-client/package.json
would fix this (besides publishing a new version to npm) -The text was updated successfully, but these errors were encountered: