Skip to content

Commit def058d

Browse files
committed
v7.4.7: fix caiiiycuk#113, fix caiiiycuk#231
1 parent 38399a1 commit def058d

File tree

5 files changed

+90
-84
lines changed

5 files changed

+90
-84
lines changed

examples/digger/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</head>
3333

3434
<body>
35-
<div id="jsdos" />
35+
<div id="jsdos"></div>
3636
<script>
3737
let bundleUrl = "https://cdn.dos.zone/original/2X/2/24b00b14f118580763440ecaddcc948f8cb94f14.jsdos"; // digger
3838
// bundleUrl = "https://cdn.dos.zone/original/2X/6/6a2bfa87c031c2a11ab212758a5d914f7c112eeb.jsdos"; // dagnerous dave 2

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "js-dos",
3-
"version": "7.4.6",
3+
"version": "7.4.7",
44
"description": "Easiest API to run dos programs in browser",
55
"main": "dist/js-dos.js",
66
"types": "dist/types/src/player.d.ts",
@@ -36,21 +36,21 @@
3636
"@types/gulp-sourcemaps": "^0.0.35",
3737
"@types/gulp-terser": "^1.2.1",
3838
"@types/gulp-uglify": "^3.0.7",
39-
"@types/node": "^18.0.3",
39+
"@types/node": "^18.0.6",
4040
"@types/notyf": "^3.0.0",
4141
"@types/undertaker": "^1.2.8",
4242
"@types/vinyl-buffer": "^1.0.0",
4343
"@types/vinyl-source-stream": "^0.0.30",
44-
"@typescript-eslint/eslint-plugin": "^5.30.5",
45-
"@typescript-eslint/parser": "^5.30.5",
44+
"@typescript-eslint/eslint-plugin": "^5.30.6",
45+
"@typescript-eslint/parser": "^5.30.6",
4646
"babelify": "^10.0.0",
4747
"base64-js": "^1.5.1",
4848
"browserify": "^17.0.0",
49-
"core-js": "^3.23.4",
49+
"core-js": "^3.23.5",
5050
"del": "^6.1.1",
5151
"emulators": "0.73.7",
52-
"emulators-ui": "0.73.6",
53-
"eslint": "^8.19.0",
52+
"emulators-ui": "0.73.7",
53+
"eslint": "^8.20.0",
5454
"eslint-config-google": "^0.14.0",
5555
"gulp": "^4.0.2",
5656
"gulp-concat": "^2.6.1",
@@ -59,9 +59,9 @@
5959
"gulp-sourcemaps": "^3.0.0",
6060
"gulp-terser": "^2.1.0",
6161
"htm": "^3.1.1",
62-
"preact": "^10.9.0",
62+
"preact": "^10.10.0",
6363
"tailwindcss": "^2.2.17",
64-
"ts-node": "^10.8.2",
64+
"ts-node": "^10.9.1",
6565
"tsify": "^5.0.4",
6666
"typescript": "^4.7.4",
6767
"vinyl-buffer": "^1.0.1",

src/player-app.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ export function PlayerApp(playerProps: {
9797
options: () => DosPlayerOptionsWithDefaults,
9898
setOnRun: (onRun: () => void) => void,
9999
}) {
100+
const actionaBarHidden = playerProps.options().withNetworkingApi !== true;
100101
const storage = emulatorsUi.dom.storage;
101102
const requestClientIdFn = playerProps.options().clientId;
102103
const requestClientId = typeof requestClientIdFn === "function" ?
@@ -111,7 +112,7 @@ export function PlayerApp(playerProps: {
111112
const [pause, setPause] = useState<boolean>(false);
112113
const [mute, setMute] = useState<boolean>(false);
113114
const [fullscreen, setFullscreen] = useState<boolean>(playerProps.player().layers.fullscreen);
114-
const [actionBar, setActionBar] = useState<boolean>(true);
115+
const [actionBar, setActionBar] = useState<boolean>(!actionaBarHidden);
115116
const [region, _setRegion] = useState<string | null>(storage.getItem(storageKeys.networkRegion));
116117
const [estimatingRegion, setEstimatingRegion] = useState<string | null>(null);
117118
const [showTips, setShowTips] = useState<boolean>(false);
@@ -283,6 +284,9 @@ export function PlayerApp(playerProps: {
283284
setTimeout(() => {
284285
setDosPause(newShowTips);
285286
setShowTips(newShowTips);
287+
if (newShowTips && playerProps.options().style !== "hidden") {
288+
setActionBar(true);
289+
}
286290
}, 500);
287291
},
288292

src/player.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export interface DosPlayer extends DosInstance {
2121
}
2222

2323
export interface DosPlayerOptions extends DosOptions {
24-
style?: "default" | "none";
24+
style?: "default" | "none" | "hidden";
2525
hardware?: Hardware;
2626
clientId?: ClientIdSupplier;
2727
onBeforeExit?: () => Promise<void>;
@@ -56,7 +56,7 @@ export function DosPlayer(root: HTMLDivElement, optOptions?: DosPlayerOptions):
5656

5757
if (options.style === "none") {
5858
console.warn("If you don't need the jsdos services, please use emulatros + emulators-ui instead");
59-
return dosImpl(root, options || {}) as DosPlayer;
59+
return dosImpl(root, options) as DosPlayer;
6060
}
6161

6262
root.classList.add("flex");
@@ -75,6 +75,7 @@ export function DosPlayer(root: HTMLDivElement, optOptions?: DosPlayerOptions):
7575
const frame = createDiv("flex-grow");
7676
const appRoot = createDiv("flex-grow-0");
7777
const keyboard = createDiv("flex-grow-0");
78+
const keyboardInput = root;
7879

7980
col.appendChild(frame);
8081
col.appendChild(keyboard);
@@ -96,6 +97,7 @@ export function DosPlayer(root: HTMLDivElement, optOptions?: DosPlayerOptions):
9697

9798
options.layersOptions = options.layersOptions || {};
9899
options.layersOptions.keyboardDiv = keyboard;
100+
options.layersOptions.keyboardInputDiv = keyboardInput;
99101
options.layersOptions.fullscreenElement = root;
100102
options.layersOptions.optionControls = [];
101103

yarn.lock

Lines changed: 71 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1318,10 +1318,10 @@
13181318
resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.13.tgz#5ed7ed7c662948335fcad6c412bb42d99ea754e3"
13191319
integrity sha512-Y86MAxASe25hNzlDbsviXl8jQHb0RDvKt4c40ZJQ1Don0AAL0STLZSs4N+6gLEO55pedy7r2cLwS+ZDxPm/2Bw==
13201320

1321-
"@types/node@^18.0.3":
1322-
version "18.0.3"
1323-
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.0.3.tgz#463fc47f13ec0688a33aec75d078a0541a447199"
1324-
integrity sha512-HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ==
1321+
"@types/node@^18.0.6":
1322+
version "18.0.6"
1323+
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.0.6.tgz#0ba49ac517ad69abe7a1508bc9b3a5483df9d5d7"
1324+
integrity sha512-/xUq6H2aQm261exT6iZTMifUySEt4GR5KX8eYyY+C4MSNPqSh9oNIP7tz2GLKTlFaiBbgZNxffoR3CVRG+cljw==
13251325

13261326
"@types/notyf@^3.0.0":
13271327
version "3.0.0"
@@ -1396,84 +1396,84 @@
13961396
"@types/expect" "^1.20.4"
13971397
"@types/node" "*"
13981398

1399-
"@typescript-eslint/eslint-plugin@^5.30.5":
1400-
version "5.30.5"
1401-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.5.tgz#e9a0afd6eb3b1d663db91cf1e7bc7584d394503d"
1402-
integrity sha512-lftkqRoBvc28VFXEoRgyZuztyVUQ04JvUnATSPtIRFAccbXTWL6DEtXGYMcbg998kXw1NLUJm7rTQ9eUt+q6Ig==
1399+
"@typescript-eslint/eslint-plugin@^5.30.6":
1400+
version "5.30.6"
1401+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.6.tgz#9c6017b6c1d04894141b4a87816388967f64c359"
1402+
integrity sha512-J4zYMIhgrx4MgnZrSDD7sEnQp7FmhKNOaqaOpaoQ/SfdMfRB/0yvK74hTnvH+VQxndZynqs5/Hn4t+2/j9bADg==
14031403
dependencies:
1404-
"@typescript-eslint/scope-manager" "5.30.5"
1405-
"@typescript-eslint/type-utils" "5.30.5"
1406-
"@typescript-eslint/utils" "5.30.5"
1404+
"@typescript-eslint/scope-manager" "5.30.6"
1405+
"@typescript-eslint/type-utils" "5.30.6"
1406+
"@typescript-eslint/utils" "5.30.6"
14071407
debug "^4.3.4"
14081408
functional-red-black-tree "^1.0.1"
14091409
ignore "^5.2.0"
14101410
regexpp "^3.2.0"
14111411
semver "^7.3.7"
14121412
tsutils "^3.21.0"
14131413

1414-
"@typescript-eslint/parser@^5.30.5":
1415-
version "5.30.5"
1416-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.30.5.tgz#f667c34e4e4c299d98281246c9b1e68c03a92522"
1417-
integrity sha512-zj251pcPXI8GO9NDKWWmygP6+UjwWmrdf9qMW/L/uQJBM/0XbU2inxe5io/234y/RCvwpKEYjZ6c1YrXERkK4Q==
1414+
"@typescript-eslint/parser@^5.30.6":
1415+
version "5.30.6"
1416+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.30.6.tgz#add440db038fa9d777e4ebdaf66da9e7fb7abe92"
1417+
integrity sha512-gfF9lZjT0p2ZSdxO70Xbw8w9sPPJGfAdjK7WikEjB3fcUI/yr9maUVEdqigBjKincUYNKOmf7QBMiTf719kbrA==
14181418
dependencies:
1419-
"@typescript-eslint/scope-manager" "5.30.5"
1420-
"@typescript-eslint/types" "5.30.5"
1421-
"@typescript-eslint/typescript-estree" "5.30.5"
1419+
"@typescript-eslint/scope-manager" "5.30.6"
1420+
"@typescript-eslint/types" "5.30.6"
1421+
"@typescript-eslint/typescript-estree" "5.30.6"
14221422
debug "^4.3.4"
14231423

1424-
"@typescript-eslint/[email protected].5":
1425-
version "5.30.5"
1426-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.30.5.tgz#7f90b9d6800552c856a5f3644f5e55dd1469d964"
1427-
integrity sha512-NJ6F+YHHFT/30isRe2UTmIGGAiXKckCyMnIV58cE3JkHmaD6e5zyEYm5hBDv0Wbin+IC0T1FWJpD3YqHUG/Ydg==
1424+
"@typescript-eslint/[email protected].6":
1425+
version "5.30.6"
1426+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.30.6.tgz#ce1b49ff5ce47f55518d63dbe8fc9181ddbd1a33"
1427+
integrity sha512-Hkq5PhLgtVoW1obkqYH0i4iELctEKixkhWLPTYs55doGUKCASvkjOXOd/pisVeLdO24ZX9D6yymJ/twqpJiG3g==
14281428
dependencies:
1429-
"@typescript-eslint/types" "5.30.5"
1430-
"@typescript-eslint/visitor-keys" "5.30.5"
1429+
"@typescript-eslint/types" "5.30.6"
1430+
"@typescript-eslint/visitor-keys" "5.30.6"
14311431

1432-
"@typescript-eslint/[email protected].5":
1433-
version "5.30.5"
1434-
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.30.5.tgz#7a9656f360b4b1daea635c4621dab053d08bf8a9"
1435-
integrity sha512-k9+ejlv1GgwN1nN7XjVtyCgE0BTzhzT1YsQF0rv4Vfj2U9xnslBgMYYvcEYAFVdvhuEscELJsB7lDkN7WusErw==
1432+
"@typescript-eslint/[email protected].6":
1433+
version "5.30.6"
1434+
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.30.6.tgz#a64aa9acbe609ab77f09f53434a6af2b9685f3af"
1435+
integrity sha512-GFVVzs2j0QPpM+NTDMXtNmJKlF842lkZKDSanIxf+ArJsGeZUIaeT4jGg+gAgHt7AcQSFwW7htzF/rbAh2jaVA==
14361436
dependencies:
1437-
"@typescript-eslint/utils" "5.30.5"
1437+
"@typescript-eslint/utils" "5.30.6"
14381438
debug "^4.3.4"
14391439
tsutils "^3.21.0"
14401440

1441-
"@typescript-eslint/[email protected].5":
1442-
version "5.30.5"
1443-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.30.5.tgz#36a0c05a72af3623cdf9ee8b81ea743b7de75a98"
1444-
integrity sha512-kZ80w/M2AvsbRvOr3PjaNh6qEW1LFqs2pLdo2s5R38B2HYXG8Z0PP48/4+j1QHJFL3ssHIbJ4odPRS8PlHrFfw==
1441+
"@typescript-eslint/[email protected].6":
1442+
version "5.30.6"
1443+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.30.6.tgz#86369d0a7af8c67024115ac1da3e8fb2d38907e1"
1444+
integrity sha512-HdnP8HioL1F7CwVmT4RaaMX57RrfqsOMclZc08wGMiDYJBsLGBM7JwXM4cZJmbWLzIR/pXg1kkrBBVpxTOwfUg==
14451445

1446-
"@typescript-eslint/[email protected].5":
1447-
version "5.30.5"
1448-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.5.tgz#c520e4eba20551c4ec76af8d344a42eb6c9767bb"
1449-
integrity sha512-qGTc7QZC801kbYjAr4AgdOfnokpwStqyhSbiQvqGBLixniAKyH+ib2qXIVo4P9NgGzwyfD9I0nlJN7D91E1VpQ==
1446+
"@typescript-eslint/[email protected].6":
1447+
version "5.30.6"
1448+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.6.tgz#a84a0d6a486f9b54042da1de3d671a2c9f14484e"
1449+
integrity sha512-Z7TgPoeYUm06smfEfYF0RBkpF8csMyVnqQbLYiGgmUSTaSXTP57bt8f0UFXstbGxKIreTwQCujtaH0LY9w9B+A==
14501450
dependencies:
1451-
"@typescript-eslint/types" "5.30.5"
1452-
"@typescript-eslint/visitor-keys" "5.30.5"
1451+
"@typescript-eslint/types" "5.30.6"
1452+
"@typescript-eslint/visitor-keys" "5.30.6"
14531453
debug "^4.3.4"
14541454
globby "^11.1.0"
14551455
is-glob "^4.0.3"
14561456
semver "^7.3.7"
14571457
tsutils "^3.21.0"
14581458

1459-
"@typescript-eslint/[email protected].5":
1460-
version "5.30.5"
1461-
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.30.5.tgz#3999cbd06baad31b9e60d084f20714d1b2776765"
1462-
integrity sha512-o4SSUH9IkuA7AYIfAvatldovurqTAHrfzPApOZvdUq01hHojZojCFXx06D/aFpKCgWbMPRdJBWAC3sWp3itwTA==
1459+
"@typescript-eslint/[email protected].6":
1460+
version "5.30.6"
1461+
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.30.6.tgz#1de2da14f678e7d187daa6f2e4cdb558ed0609dc"
1462+
integrity sha512-xFBLc/esUbLOJLk9jKv0E9gD/OH966M40aY9jJ8GiqpSkP2xOV908cokJqqhVd85WoIvHVHYXxSFE4cCSDzVvA==
14631463
dependencies:
14641464
"@types/json-schema" "^7.0.9"
1465-
"@typescript-eslint/scope-manager" "5.30.5"
1466-
"@typescript-eslint/types" "5.30.5"
1467-
"@typescript-eslint/typescript-estree" "5.30.5"
1465+
"@typescript-eslint/scope-manager" "5.30.6"
1466+
"@typescript-eslint/types" "5.30.6"
1467+
"@typescript-eslint/typescript-estree" "5.30.6"
14681468
eslint-scope "^5.1.1"
14691469
eslint-utils "^3.0.0"
14701470

1471-
"@typescript-eslint/[email protected].5":
1472-
version "5.30.5"
1473-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.5.tgz#d4bb969202019d5d5d849a0aaedc7370cc044b14"
1474-
integrity sha512-D+xtGo9HUMELzWIUqcQc0p2PO4NyvTrgIOK/VnSH083+8sq0tiLozNRKuLarwHYGRuA6TVBQSuuLwJUDWd3aaA==
1471+
"@typescript-eslint/[email protected].6":
1472+
version "5.30.6"
1473+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.6.tgz#94dd10bb481c8083378d24de1742a14b38a2678c"
1474+
integrity sha512-41OiCjdL2mCaSDi2SvYbzFLlqqlm5v1ZW9Ym55wXKL/Rx6OOB1IbuFGo71Fj6Xy90gJDFTlgOS+vbmtGHPTQQA==
14751475
dependencies:
1476-
"@typescript-eslint/types" "5.30.5"
1476+
"@typescript-eslint/types" "5.30.6"
14771477
eslint-visitor-keys "^3.3.0"
14781478

14791479
JSONStream@^1.0.3:
@@ -2441,10 +2441,10 @@ core-js-compat@^3.22.1:
24412441
browserslist "^4.20.3"
24422442
semver "7.0.0"
24432443

2444-
core-js@^3.23.4:
2445-
version "3.23.4"
2446-
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.23.4.tgz#92d640faa7f48b90bbd5da239986602cfc402aa6"
2447-
integrity sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==
2444+
core-js@^3.23.5:
2445+
version "3.23.5"
2446+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.23.5.tgz#1f82b0de5eece800827a2f59d597509c67650475"
2447+
integrity sha512-7Vh11tujtAZy82da4duVreQysIoO2EvVrur7y6IzZkH1IHPSekuDi8Vuw1+YKjkbfWLRD7Nc9ICQ/sIUDutcyg==
24482448

24492449
core-util-is@~1.0.0:
24502450
version "1.0.3"
@@ -2816,10 +2816,10 @@ elliptic@^6.5.3:
28162816
minimalistic-assert "^1.0.1"
28172817
minimalistic-crypto-utils "^1.0.1"
28182818

2819-
2820-
version "0.73.6"
2821-
resolved "https://registry.yarnpkg.com/emulators-ui/-/emulators-ui-0.73.6.tgz#77221e4ce7bcabc759786631e8671ada0c76a323"
2822-
integrity sha512-wESDM/WcXSGio0KJOLKfvY4986Yf6LneB4f/1ZYRxMWPp++Igy6Zrg4k+TJ4dtUUFMZFCC5hfW0BHi8K4s5PJQ==
2819+
2820+
version "0.73.7"
2821+
resolved "https://registry.yarnpkg.com/emulators-ui/-/emulators-ui-0.73.7.tgz#da93d0d44563910c37f5fcb6adde2a498248e773"
2822+
integrity sha512-K5XlkbcT1CTqwlhuxengS0EzkHI8f9PNMdAVJx1upkJiZXGJSX2VnceZFwnG4V4u2a6K5jitQhhT9dBDGGWz2g==
28232823

28242824
28252825
version "0.73.7"
@@ -2964,10 +2964,10 @@ eslint-visitor-keys@^3.3.0:
29642964
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
29652965
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
29662966

2967-
eslint@^8.19.0:
2968-
version "8.19.0"
2969-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.19.0.tgz#7342a3cbc4fbc5c106a1eefe0fd0b50b6b1a7d28"
2970-
integrity sha512-SXOPj3x9VKvPe81TjjUJCYlV4oJjQw68Uek+AM0X4p+33dj2HY5bpTZOgnQHcG2eAm1mtCU9uNMnJi7exU/kYw==
2967+
eslint@^8.20.0:
2968+
version "8.20.0"
2969+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.20.0.tgz#048ac56aa18529967da8354a478be4ec0a2bc81b"
2970+
integrity sha512-d4ixhz5SKCa1D6SCPrivP7yYVi7nyD6A4vs6HIAul9ujBzcEmZVM3/0NN/yu5nKhmO1wjp5xQ46iRfmDGlOviA==
29712971
dependencies:
29722972
"@eslint/eslintrc" "^1.3.0"
29732973
"@humanwhocodes/config-array" "^0.9.2"
@@ -5046,10 +5046,10 @@ postcss@^8.1.6, postcss@^8.3.5:
50465046
picocolors "^1.0.0"
50475047
source-map-js "^1.0.2"
50485048

5049-
preact@^10.9.0:
5050-
version "10.9.0"
5051-
resolved "https://registry.yarnpkg.com/preact/-/preact-10.9.0.tgz#69b282b26926b66481c9ae3450cf68610fee29ff"
5052-
integrity sha512-jO6/OvCRL+OT8gst/+Q2ir7dMybZAX8ioP02Zmzh3BkQMHLyqZSujvxbUriXvHi8qmhcHKC2Gwbog6Kt+YTh+Q==
5049+
preact@^10.10.0:
5050+
version "10.10.0"
5051+
resolved "https://registry.yarnpkg.com/preact/-/preact-10.10.0.tgz#7434750a24b59dae1957d95dc0aa47a4a8e9a180"
5052+
integrity sha512-fszkg1iJJjq68I4lI8ZsmBiaoQiQHbxf1lNq+72EmC/mZOsFF5zn3k1yv9QGoFgIXzgsdSKtYymLJsrJPoamjQ==
50535053

50545054
prelude-ls@^1.2.1:
50555055
version "1.2.1"
@@ -6064,10 +6064,10 @@ to-through@^2.0.0:
60646064
dependencies:
60656065
through2 "^2.0.3"
60666066

6067-
ts-node@^10.8.2:
6068-
version "10.8.2"
6069-
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.8.2.tgz#3185b75228cef116bf82ffe8762594f54b2a23f2"
6070-
integrity sha512-LYdGnoGddf1D6v8REPtIH+5iq/gTDuZqv2/UJUU7tKjuEU8xVZorBM+buCGNjj+pGEud+sOoM4CX3/YzINpENA==
6067+
ts-node@^10.9.1:
6068+
version "10.9.1"
6069+
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b"
6070+
integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==
60716071
dependencies:
60726072
"@cspotcode/source-map-support" "^0.8.0"
60736073
"@tsconfig/node10" "^1.0.7"

0 commit comments

Comments
 (0)