player icon indicating copy to clipboard operation
player copied to clipboard

Support for bundlephobia

Open Archetipo95 opened this issue 1 year ago • 1 comments

Go to https://bundlephobia.com/package/vidstack

The site is telling this error:

"EntryPointError We could not guess a valid entry point for this package. Perhaps the author hasn't specified one in its package.json ?"

Archetipo95 avatar Oct 11 '24 15:10 Archetipo95

Here are some steps that might help:

  1. Verify Entry Points: Ensure each package in your workspaces (e.g., packages/*) has a package.json with a specified entry point. This is typically done using the "main" or "exports" field. For example:

  2. Check Workspace Packages: Confirm that every package within the packages/* directory includes its own package.json with the correct entry point configuration.

  3. Module Compatibility: Since your root package.json includes "type": "module", make sure your entry points and imports are compatible with ECMAScript modules. Use .mjs or .js extensions as needed.

Archetipo95 avatar Oct 11 '24 15:10 Archetipo95