Skip to content

Commit

Permalink
Fixes to build again under Windows 10
Browse files Browse the repository at this point in the history
  • Loading branch information
robertobandini committed Jun 19, 2024
1 parent 68fcb9a commit 3ec39f3
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 19 deletions.
4 changes: 2 additions & 2 deletions open-lens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"welcomeRoute": "/welcome"
},
"engines": {
"node": ">=16 <17"
"node": ">=16 <=18"
},
"jest": {
"collectCoverage": false,
Expand Down Expand Up @@ -259,7 +259,7 @@
"moment": "^2.29.4",
"moment-timezone": "^0.5.40",
"monaco-editor": "^0.38.0",
"node-pty": "0.10.1",
"node-pty": "1.0.0",
"npm": "^9.6.7",
"p-limit": "^3.1.0",
"path-to-regexp": "^6.2.0",
Expand Down
19 changes: 10 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"welcomeRoute": "/welcome"
},
"engines": {
"node": ">=16 <17"
"node": ">=16 <=18"
},
"jest": {
"collectCoverage": false,
Expand Down Expand Up @@ -284,7 +284,7 @@
"moment": "^2.29.4",
"moment-timezone": "^0.5.40",
"monaco-editor": "^0.38.0",
"node-pty": "0.10.1",
"node-pty": "1.0.0",
"npm": "^9.6.7",
"path-to-regexp": "^6.2.0",
"proper-lockfile": "^4.1.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ describe("technical unit tests for local shell sessions", () => {
expect(options.env).toMatchObject({
MY_TEST_ENV_VAR: "true",
});

return {
cols: 80,
rows: 40,
Expand All @@ -88,7 +88,7 @@ describe("technical unit tests for local shell sessions", () => {
resume: jest.fn(),
write: jest.fn(),
on: jest.fn(),

clear: jest.fn(), // Add the clear method
};
});

Expand Down
20 changes: 16 additions & 4 deletions packages/kubectl-versions/build/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,18 +97,30 @@
],
[
"1.24",
"1.24.14"
"1.24.17"
],
[
"1.25",
"1.25.10"
"1.25.16"
],
[
"1.26",
"1.26.5"
"1.26.15"
],
[
"1.27",
"1.27.2"
"1.27.15"
],
[
"1.28",
"1.28.11"
],
[
"1.29",
"1.29.6"
],
[
"1.30",
"1.30.2"
]
]

0 comments on commit 3ec39f3

Please sign in to comment.