Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for NodeJS 23 #47

Draft
wants to merge 47 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
b5a1162
Squashed commit of the following:
NorthernMan54 Nov 12, 2024
0cb6bb2
Maybe
NorthernMan54 Nov 13, 2024
08d21c3
Update package.json
NorthernMan54 Nov 13, 2024
412eba1
Remove support for NodeJS 16
NorthernMan54 Nov 13, 2024
f1aa55b
Remove ARMv6 support
NorthernMan54 Nov 13, 2024
953f3a8
armv6 to armv7
NorthernMan54 Nov 13, 2024
6ae7261
linux-arm64
NorthernMan54 Nov 13, 2024
71428f2
Update Prepare prebuild environment.yml
NorthernMan54 Nov 13, 2024
0004b55
Update package.json
NorthernMan54 Nov 14, 2024
3efd0f9
What does this do
NorthernMan54 Nov 18, 2024
98f56c8
Create stage-1_build_prerelease.yml
NorthernMan54 Nov 26, 2024
8265be2
Update stage-1_build_prerelease.yml
NorthernMan54 Nov 26, 2024
3c16cd2
Downgrade based image back to buster
NorthernMan54 Nov 26, 2024
5f148d1
Update Prepare prebuild environment.yml
NorthernMan54 Nov 26, 2024
9d87c29
Try this
NorthernMan54 Nov 26, 2024
a07a1d5
Update Stage 2 - Validate.yml
NorthernMan54 Nov 26, 2024
9ff31e3
Update Stage 2 - Validate.yml
NorthernMan54 Nov 26, 2024
5ece998
Update Stage 2 - Validate.yml
NorthernMan54 Nov 26, 2024
976c137
Update Stage 2 - Validate.yml
NorthernMan54 Nov 26, 2024
d6a14c3
Update Stage 2 - Validate.yml
NorthernMan54 Nov 26, 2024
c3eeb4d
Update Stage 2 - Validate.yml (#49)
NorthernMan54 Nov 26, 2024
6481fd7
Update Stage 2 - Validate.yml
NorthernMan54 Nov 26, 2024
55535db
Update Stage 2 - Validate.yml
NorthernMan54 Nov 26, 2024
e71e5ee
Validate
NorthernMan54 Nov 26, 2024
370abf4
Update Dockerfile.debian
NorthernMan54 Nov 26, 2024
7cf2972
Try this
NorthernMan54 Nov 27, 2024
9fe5706
Update Dockerfile.debian
NorthernMan54 Nov 27, 2024
ea41cc8
Update Prepare prebuild environment.yml
NorthernMan54 Nov 27, 2024
911e546
Update Prepare prebuild environment.yml
NorthernMan54 Nov 27, 2024
8980450
Update Prepare prebuild environment.yml
NorthernMan54 Nov 27, 2024
bb755c3
Update Prepare prebuild environment.yml
NorthernMan54 Nov 27, 2024
5253882
TRy this
NorthernMan54 Nov 27, 2024
d4ba6cb
Update Prepare prebuild environment.yml
NorthernMan54 Nov 27, 2024
c43ad80
Update Prepare prebuild environment.yml
NorthernMan54 Nov 27, 2024
898d991
Update Prepare prebuild environment.yml
NorthernMan54 Nov 27, 2024
220b3d6
Update Prepare prebuild environment.yml
NorthernMan54 Nov 27, 2024
68c928f
Update Prepare prebuild environment.yml
NorthernMan54 Nov 27, 2024
c6ef97a
Update Prepare prebuild environment.yml
NorthernMan54 Nov 28, 2024
a94a36f
Update Prepare prebuild environment.yml
NorthernMan54 Nov 28, 2024
a0d9ab8
Ok
NorthernMan54 Nov 28, 2024
21e75f5
Update Prepare prebuild environment.yml
NorthernMan54 Nov 28, 2024
8faaa9b
Update Prepare prebuild environment.yml
NorthernMan54 Nov 28, 2024
d29227d
Update Prepare prebuild environment.yml
NorthernMan54 Nov 28, 2024
faa4dda
Update Prepare prebuild environment.yml
NorthernMan54 Nov 28, 2024
6634a02
Update Prepare prebuild environment.yml
NorthernMan54 Nov 28, 2024
4d9ff3e
Create event_logger.yml
NorthernMan54 Nov 28, 2024
3a00dd0
Update event_logger.yml
NorthernMan54 Nov 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .config/tsaoptions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"codebaseName": "devdiv_microsoft_vscode_node_pty",
"instanceUrl": "https://devdiv.visualstudio.com/defaultcollection",
"projectName": "DevDiv",
"areaPath": "DevDiv\\VS Code (compliance tracking only)\\Visual Studio Code NPM Packages",
"notificationAliases": [
"stbatt@microsoft.com",
"lszomoru@microsoft.com"
]
}
5 changes: 4 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ module.exports = {
"project": "src/tsconfig.json",
"sourceType": "module"
},
"ignorePatterns": "**/typings/*.d.ts",
"ignorePatterns": [
"**/typings/*.d.ts",
"scripts/**/*"
],
"plugins": [
"@typescript-eslint"
],
Expand Down
Loading
Loading