bzm3r
bzm3r
DDeno
Created by bzm3r on 1/27/2024 in #help
Good scripts/tools to automate conversion of Node.js based projects to Deno?
oh neat!
3 replies
DDeno
Created by bzm3r on 1/27/2024 in #help
VS Code Extension API development with Deno as a runtime?
TLDR: that person gives up near the end anyway, so yeah. just keep pnpm installed for now. can't go full deno
15 replies
DDeno
Created by bzm3r on 1/27/2024 in #help
VS Code Extension API development with Deno as a runtime?
yeah bobot, a bit too late, but basically and surprisingly on point
15 replies
DDeno
Created by bzm3r on 1/27/2024 in #help
VS Code Extension API development with Deno as a runtime?
15 replies
DDeno
Created by bzm3r on 1/27/2024 in #help
VS Code Extension API development with Deno as a runtime?
hmm, turns out yeoman just doesn't work under deno: https://github.com/denoland/deno/issues/19105
15 replies
DDeno
Created by bzm3r on 1/27/2024 in #help
VS Code Extension API development with Deno as a runtime?
okay, so running deno cache becomes relevant
15 replies
DDeno
Created by bzm3r on 1/27/2024 in #help
VS Code Extension API development with Deno as a runtime?
Actually, this might be relevant reading for me: https://docs.deno.com/runtime/manual/basics/import_maps
15 replies
DDeno
Created by bzm3r on 1/27/2024 in #help
VS Code Extension API development with Deno as a runtime?
So maybe tweaking the template itself is a bad idea, and I ought to be starting more "deno-native"?
15 replies
DDeno
Created by bzm3r on 1/27/2024 in #help
VS Code Extension API development with Deno as a runtime?
which results in the error:
Unable to load a local module: file:///home/bzm3r/personal/test-with-deno/node_modules/@vscode
Please check the file path. deno(no-local)
Unable to load a local module: file:///home/bzm3r/personal/test-with-deno/node_modules/@vscode
Please check the file path. deno(no-local)
15 replies
DDeno
Created by bzm3r on 1/27/2024 in #help
VS Code Extension API development with Deno as a runtime?
but maybe that doesn't matter, because i can refer to a package inside there directly? so I tried that:
import * as vscode from "../../node_modules/@vscode";
import * as vscode from "../../node_modules/@vscode";
15 replies
DDeno
Created by bzm3r on 1/27/2024 in #help
VS Code Extension API development with Deno as a runtime?
I'm trying to figure out in particular where this node_modules directory is generated, which basically contains all the crap I would like to use through deno instead, i think
15 replies
DDeno
Created by bzm3r on 1/27/2024 in #help
VS Code Extension API development with Deno as a runtime?
15 replies