Skip to content

fix(deps): remove duplicate @askable-ui/core wildcard devDependency in svelte and vue packages #262

@vamgan

Description

@vamgan

Summary

Both packages/svelte/package.json and packages/vue/package.json list @askable-ui/core twice:

  • Once in dependencies with a proper range: "^0.5.0"
  • Once in devDependencies with a wildcard: "*"

The "*" in devDependencies means any version — including 0.0.0 or a future 2.0.0 — could be resolved during development and testing. This can mask version incompatibilities and cause confusing test failures.

Fix

Remove @askable-ui/core from devDependencies in both packages. The dependencies entry with "^0.5.0" is sufficient.

// packages/svelte/package.json
  "devDependencies": {
-   "@askable-ui/core": "*",
    ...
  }

Same change for packages/vue/package.json.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions