We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c5581a commit 975a396Copy full SHA for 975a396
1 file changed
utils/misc/nodejs-terminal/v2.0/nodejs-terminal-v2.0.html
@@ -464,6 +464,9 @@
464
465
log.green('installing https-server');
466
467
+ var cwd = shell.cwd();
468
+ console.log(cwd);
469
+
470
var mod = await import('https://code.ext-code.com/nodejs/servers/https-server/create-archive.m.js');
471
472
@@ -476,6 +479,7 @@
476
479
for(var [path,file] of files){
477
480
478
481
path = path.slice(base.length);
482
+ path = cwd+path;
483
console.log(path,file);
484
if(path){
485
if(file.dir){
@@ -490,7 +494,8 @@
490
494
491
495
}//for
492
496
493
- web
497
+ await webcontainer.spawn('npm',['i'],{cwd});
498
499
log.green('done.');
500
501
}//https-server
0 commit comments