vfsjs-test 1.0.10 → 1.0.11

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.
Files changed (2) hide show
  1. package/main.js +5 -38
  2. package/package.json +1 -1
package/main.js CHANGED
@@ -18,44 +18,11 @@ async function startDeveloperWorkspace() {
18
18
  if (display) display.innerHTML += "<br>> Running developer asset deployment...";
19
19
 
20
20
  // Add your scripts and styles to memory target registers
21
- vfs.add('live_theme.css', `
22
- /* Animate the entire viewport background */
23
- body {
24
- background: linear-gradient(-45deg, #ff007f, #7f00ff, #00bfff, #00ff7f, #ffea00, #ff007f) !important;
25
- background-size: 400% 400% !important;
26
- animation: rainbowShift 12s ease infinite !important;
27
- color: #ffffff !important;
28
- text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
29
- }
30
-
31
- /* Make the title text pop */
32
- h2 {
33
- color: #ffffff !important;
34
- text-shadow: 0 0 10px rgba(255,255,255,0.6), 0 0 20px rgba(0,255,255,0.4);
35
- }
36
-
37
- /* Style the log box to look like a dark synthwave terminal */
38
- #status {
39
- background: rgba(10, 10, 25, 0.85) !important;
40
- border: 2px solid #ff007f !important;
41
- border-radius: 8px;
42
- box-shadow: 0 0 15px rgba(255, 0, 127, 0.4), inset 0 0 10px rgba(0, 0, 0, 0.9) !important;
43
- color: #00ffcc !important;
44
- }
45
-
46
- /* Bold tags inside the logs get a neon highlight */
47
- #status b {
48
- color: #ffea00 !important;
49
- text-shadow: 0 0 5px rgba(255,234,0,0.5);
50
- }
51
-
52
- /* Keyframes to smoothly move the background gradients */
53
- @keyframes rainbowShift {
54
- 0% { background-position: 0% 50%; }
55
- 50% { background-position: 100% 50%; }
56
- 100% { background-position: 0% 50%; }
57
- }
58
- `, 'text/css');
21
+ vfs.add('live_theme.css', `body { background: linear-gradient(-45deg, #ff007f, #7f00ff, #00bfff, #00ff7f, #ffea00, #ff007f) !important; background-size: 400% 400% !important; animation: rainbowShift 12s ease infinite !important; color: #ffffff !important; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); }
22
+ h2 { color: #ffffff !important; text-shadow: 0 0 10px rgba(255,255,255,0.6), 0 0 20px rgba(0,255,255,0.4); }
23
+ #status { background: rgba(10, 10, 25, 0.85) !important; border: 2px solid #ff007f !important; border-radius: 8px; box-shadow: 0 0 15px rgba(255, 0, 127, 0.4), inset 0 0 10px rgba(0, 0, 0, 0.9) !important; color: #00ffcc !important; }
24
+ #status b { color: #ffea00 !important; text-shadow: 0 0 5px rgba(255,234,0,0.5); }
25
+ @keyframes rainbowShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }\n`, 'text/css');
59
26
  vfs.add('index.js', `
60
27
  console.log("VFS Engine: Intercepted via head script execution successfully!");
61
28
  const statusEl = document.getElementById('status');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vfsjs-test",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "",
5
5
  "main": "index.html",
6
6
  "scripts": {