peek.nvim icon indicating copy to clipboard operation
peek.nvim copied to clipboard

Error: Unable to output during bundling: load_transformed failed: failed to analyze module: failed to resolve https://cdn.skypack.dev/[email protected]

Open 0xkr8os opened this issue 1 year ago • 0 comments

Describe the bug Unable to build Peek main.bundle.js. When running the deno task build manually, it is not able to resovle the cdn url.

Error: Unable to output during bundling: load_transformed failed: failed to analyze module: failed to resolve https://cdn.skypack.dev/[email protected]

To Reproduce navigate to peek.nvim folder and run deno task --quiet build:fast

Expected behavior To successfully build the main.bundle.js file

Screenshots If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: macOS Sequoia 15.0.1
  • nvim --version:
NVIM v0.10.2
Build type: Release
LuaJIT 2.1.1727870382
  • deno --version:
deno 2.0.0 (stable, release, aarch64-apple-darwin)
v8 12.9.202.13-rusty
typescript 5.6.2
  • plugin setup:
  {
    "toppair/peek.nvim",
    event = { "VeryLazy" },
    build = "deno task --quiet build:fast",
    config = function()
        require("peek").setup()
        vim.api.nvim_create_user_command("PeekOpen", require("peek").open, {})
        vim.api.nvim_create_user_command("PeekClose", require("peek").close, {})
    end,
  }

Additional context Add any other context about the problem here.

0xkr8os avatar Oct 09 '24 16:10 0xkr8os