File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66permissions :
77 contents : write
88 pull-requests : write
9+ issues : write
910
1011name : release-please
1112
Original file line number Diff line number Diff line change 1313// - Modern Node.js target alignment with VS Code runtime
1414
1515import * as esbuild from "esbuild" ;
16- import * as fs from "fs" ;
17- import * as path from "path" ;
16+ import * as fs from "node: fs" ;
17+ import * as path from "node: path" ;
1818
1919const production = process . argv . includes ( "--production" ) ;
2020const watch = process . argv . includes ( "--watch" ) ;
Original file line number Diff line number Diff line change 11import * as vscode from "vscode" ;
2- import * as path from "path" ;
3- import * as fs from "fs" ;
2+ import * as path from "node: path" ;
3+ import * as fs from "node: fs" ;
44import { WitSyntaxValidator } from "./validator.js" ;
55import { isWasmComponentFile } from "./wasmDetection.js" ;
66import {
Original file line number Diff line number Diff line change 1- import * as fs from "fs" ;
1+ import * as fs from "node: fs" ;
22
33/**
44 * Read the first 8 bytes of a WebAssembly file and return header info.
Original file line number Diff line number Diff line change 11import { defineConfig } from "vitest/config" ;
2- import path from "path" ;
2+ import path from "node: path" ;
33
44export default defineConfig ( {
55 test : {
You can’t perform that action at this time.
0 commit comments