Skip to content

Commit 389bd89

Browse files
committed
update dependencies and remove the explict dependency on xsro.vscode-dosbox
1 parent b87e2dd commit 389bd89

File tree

2 files changed

+3605
-2707
lines changed

2 files changed

+3605
-2707
lines changed

masm-tasm/package.json

Lines changed: 58 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@
1717
"engines": {
1818
"vscode": "^1.61.0"
1919
},
20-
"extensionDependencies": [
21-
"xsro.vscode-dosbox"
22-
],
2320
"categories": [
2421
"Programming Languages",
2522
"Other"
@@ -269,7 +266,11 @@
269266
"type": "string",
270267
"default": "segment",
271268
"markdownDescription": "%config.format.align.description%",
272-
"enum": [ "indent", "label", "segment"],
269+
"enum": [
270+
"indent",
271+
"label",
272+
"segment"
273+
],
273274
"enumItemLabels": [
274275
"%config.format.align.enum.indent.label%",
275276
"%config.format.align.enum.label.label%",
@@ -291,25 +292,45 @@
291292
"instruction": {
292293
"type": "string",
293294
"description": "%config.format.casing.instruction%",
294-
"enum": ["lower", "upper", "title", "off"],
295+
"enum": [
296+
"lower",
297+
"upper",
298+
"title",
299+
"off"
300+
],
295301
"default": "off"
296302
},
297303
"register": {
298304
"type": "string",
299305
"description": "%config.format.casing.register%",
300-
"enum": ["lower", "upper", "title", "off"],
306+
"enum": [
307+
"lower",
308+
"upper",
309+
"title",
310+
"off"
311+
],
301312
"default": "off"
302313
},
303314
"directive": {
304315
"type": "string",
305316
"description": "%config.format.casing.directive%",
306-
"enum": ["lower", "upper", "title", "off"],
317+
"enum": [
318+
"lower",
319+
"upper",
320+
"title",
321+
"off"
322+
],
307323
"default": "off"
308324
},
309325
"operator": {
310326
"type": "string",
311327
"description": "%config.format.casing.operator%",
312-
"enum": ["lower", "upper", "title", "off"],
328+
"enum": [
329+
"lower",
330+
"upper",
331+
"title",
332+
"off"
333+
],
313334
"default": "off"
314335
}
315336
}
@@ -333,14 +354,17 @@
333354
"type": "string",
334355
"default": "off",
335356
"markdownDescription": "%config.format.spaceAfterComma.description%",
336-
"enum": ["always", "never", "off"],
357+
"enum": [
358+
"always",
359+
"never",
360+
"off"
361+
],
337362
"enumItemLabels": [
338363
"%config.format.spaceAfterComma.enum.always%",
339364
"%config.format.spaceAfterComma.enum.never%",
340365
"%config.format.spaceAfterComma.enum.off%"
341366
]
342367
},
343-
344368
"masmtasm.cpp-docs.links": {
345369
"type": "array",
346370
"items": {
@@ -440,34 +464,34 @@
440464
"yarn": false
441465
},
442466
"devDependencies": {
443-
"@types/glob": "^7.2.0",
444-
"@types/js-yaml": "^4.0.5",
445-
"@types/mocha": "^9.1.1",
446-
"@types/node-fetch": "^2.x",
447-
"@types/vscode": "^1.61.0",
448-
"@types/webpack-env": "^1.17.0",
449-
"@typescript-eslint/eslint-plugin": "^5.30.7",
450-
"@typescript-eslint/parser": "^5.30.7",
451-
"@vscode/test-electron": "^2.1.5",
452-
"@vscode/test-web": "^0.0.29",
453-
"assert": "^2.0.0",
454-
"del": "^7.0.0",
467+
"@types/glob": "^9.0.0",
468+
"@types/js-yaml": "^4.0.9",
469+
"@types/mocha": "^10.0.10",
470+
"@types/node-fetch": "^2.6.13",
471+
"@types/vscode": "^1.105.0",
472+
"@types/webpack-env": "^1.18.8",
473+
"@typescript-eslint/eslint-plugin": "^8.46.3",
474+
"@typescript-eslint/parser": "^8.46.3",
475+
"@vscode/test-electron": "^2.5.2",
476+
"@vscode/test-web": "^0.0.74",
477+
"assert": "^2.1.0",
478+
"del": "^8.0.1",
455479
"download": "^8.0.0",
456-
"emulators": "^0.73.7",
457-
"eslint": "^8.20.0",
458-
"glob": "^8.0.3",
480+
"emulators": "^8.3.9",
481+
"eslint": "^9.39.1",
482+
"glob": "^11.0.3",
459483
"js-yaml": "^4.1.0",
460-
"jszip": "^3.10.0",
461-
"mocha": "^10.0.0",
462-
"node-fetch": "^2.x",
484+
"jszip": "^3.10.1",
485+
"mocha": "^11.7.5",
486+
"node-fetch": "^3.3.2",
463487
"path-browserify": "^1.0.1",
464488
"process": "^0.11.10",
465-
"rimraf": "^3.0.2",
466-
"ts-loader": "^9.3.1",
467-
"typescript": "^4.7.4",
468-
"vscode-uri": "^3.0.3",
469-
"webpack": "^5.73.0",
470-
"webpack-cli": "^4.10.0"
489+
"rimraf": "^6.1.0",
490+
"ts-loader": "^9.5.4",
491+
"typescript": "^5.9.3",
492+
"vscode-uri": "^3.1.0",
493+
"webpack": "^5.102.1",
494+
"webpack-cli": "^6.0.1"
471495
},
472496
"repository": {
473497
"type": "git",

0 commit comments

Comments
 (0)