File tree Expand file tree Collapse file tree 10 files changed +0
-10
lines changed Expand file tree Collapse file tree 10 files changed +0
-10
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
2
* Copyright (c) 2025 Adam Snyder <https://armsnyder.com> and contributors
3
3
* SPDX-License-Identifier: MIT
4
- * Please retain this header in any redistributions of this code.
5
4
*/
6
5
const vscode = require ( "vscode" ) ;
7
6
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Copyright (c) 2025 Adam Snyder <https://armsnyder.com> and contributors
3
3
* SPDX-License-Identifier: MIT
4
- * Please retain this header in any redistributions of this code.
5
4
*/
6
5
const { setLogger, logger } = require ( "./log" ) ;
7
6
const { loadServer } = require ( "./server" ) ;
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Copyright (c) 2025 Adam Snyder <https://armsnyder.com> and contributors
3
3
* SPDX-License-Identifier: MIT
4
- * Please retain this header in any redistributions of this code.
5
4
*/
6
5
const assert = require ( "assert" ) ;
7
6
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Copyright (c) 2025 Adam Snyder <https://armsnyder.com> and contributors
3
3
* SPDX-License-Identifier: MIT
4
- * Please retain this header in any redistributions of this code.
5
4
*/
6
5
7
6
/**
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Copyright (c) 2025 Adam Snyder <https://armsnyder.com> and contributors
3
3
* SPDX-License-Identifier: MIT
4
- * Please retain this header in any redistributions of this code.
5
4
*/
6
5
const { logger } = require ( "../log" ) ;
7
6
const { platform, arch } = require ( "node:os" ) ;
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Copyright (c) 2025 Adam Snyder <https://armsnyder.com> and contributors
3
3
* SPDX-License-Identifier: MIT
4
- * Please retain this header in any redistributions of this code.
5
4
*/
6
5
const { logger } = require ( "../log" ) ;
7
6
const { createWriteStream } = require ( "node:fs" ) ;
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Copyright (c) 2025 Adam Snyder <https://armsnyder.com> and contributors
3
3
* SPDX-License-Identifier: MIT
4
- * Please retain this header in any redistributions of this code.
5
4
*/
6
5
module . exports = { loadServer : require ( "./load" ) . loadServer } ;
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Copyright (c) 2025 Adam Snyder <https://armsnyder.com> and contributors
3
3
* SPDX-License-Identifier: MIT
4
- * Please retain this header in any redistributions of this code.
5
4
*/
6
5
const { logger } = require ( "../log" ) ;
7
6
const { EventEmitter } = require ( "node:events" ) ;
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Copyright (c) 2025 Adam Snyder <https://armsnyder.com> and contributors
3
3
* SPDX-License-Identifier: MIT
4
- * Please retain this header in any redistributions of this code.
5
4
*/
6
5
const { logger } = require ( "../log" ) ;
7
6
const { getConfiguration } = require ( "../config" ) ;
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Copyright (c) 2025 Adam Snyder <https://armsnyder.com> and contributors
3
3
* SPDX-License-Identifier: MIT
4
- * Please retain this header in any redistributions of this code.
5
4
*/
6
5
const { createReadStream } = require ( "node:fs" ) ;
7
6
const { readFile } = require ( "node:fs/promises" ) ;
You can’t perform that action at this time.
0 commit comments