@flow-os/client 0.0.1-dev.1771979233 → 0.0.1-dev.1771979890

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.
@@ -0,0 +1,6 @@
1
+ {
2
+ "files.exclude": {
3
+ "**/node_modules": true,
4
+ "**/index.html": true
5
+ }
6
+ }
package/config/index.html CHANGED
@@ -1,12 +1,13 @@
1
1
  <!DOCTYPE html>
2
- <html lang="en">
2
+ <html lang="it">
3
3
  <head>
4
- <meta charset="UTF-8" />
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <title>Flow OS</title>
4
+ <meta charset="UTF-8"/>
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6
+ <title>Flow</title>
7
+ <style>html,body{margin:0;padding:0;min-height:100vh}#app{min-height:100vh;box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}</style>
7
8
  </head>
8
9
  <body>
9
10
  <div id="app"></div>
10
- <script type="module" src="/main.ts"></script>
11
+ <script type="module">document.getElementById('app').innerHTML='<h1>Flow</h1><p>Dev server ready.</p>';</script>
11
12
  </body>
12
13
  </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flow-os/client",
3
- "version": "0.0.1-dev.1771979233",
3
+ "version": "0.0.1-dev.1771979890",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/config/main.ts DELETED
@@ -1 +0,0 @@
1
- document.getElementById('app')!.innerHTML = '<h1>Flow OS</h1><p>Dev server ready.</p>';