vfsjs-test 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/main.js +7 -6
- package/package.json +1 -1
package/main.js
CHANGED
|
@@ -44,12 +44,13 @@ async function bootEngine() {
|
|
|
44
44
|
display.innerHTML += "<br>> Link secured. Executing transaction assertions...";
|
|
45
45
|
|
|
46
46
|
// Run Verification Loop
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
47
|
+
// Inside main.js verification block:
|
|
48
|
+
vfs.add('live-theme.css', `body { background: #070a13 !important; color: #22d3ee !important; }`);
|
|
49
|
+
|
|
50
|
+
vfs.add('index.js', `
|
|
51
|
+
console.log("VFS Execute: Active out of virtual memory pipeline!");
|
|
52
|
+
document.getElementById('status').innerHTML += "<br>> Virtual index.js routing validated.";
|
|
53
|
+
`, 'text/javascript');
|
|
53
54
|
|
|
54
55
|
// Verify Delete Works
|
|
55
56
|
vfs.add('trash.js', 'console.log("drop")');
|