Compare commits

..

1 commit

Author SHA1 Message Date
snyk-bot
5774be030d
fix: upgrade material-symbols from 0.14.5 to 0.15.0
Snyk has created this PR to upgrade material-symbols from 0.14.5 to 0.15.0.

See this package in npm:
https://www.npmjs.com/package/material-symbols

See this project in Snyk:
https://app.snyk.io/org/flow-works/project/ceb3cece-f9c9-4baa-a014-81251a490e64?utm_source=github&utm_medium=referral&page=upgrade-pr
2024-03-09 19:29:19 +00:00
3 changed files with 6 additions and 11 deletions

8
package-lock.json generated
View file

@ -13,7 +13,7 @@
"chalk": "^5.3.0",
"eruda": "^3.0.1",
"js-ini": "^1.6.0",
"material-symbols": "^0.14.3",
"material-symbols": "^0.15.0",
"prism-code-editor": "^2.3.0",
"semver": "^7.5.4",
"uuid": "^9.0.1"
@ -6157,9 +6157,9 @@
}
},
"node_modules/material-symbols": {
"version": "0.14.5",
"resolved": "https://registry.npmjs.org/material-symbols/-/material-symbols-0.14.5.tgz",
"integrity": "sha512-3fB0MEG93k8C7D7sI0HSQWlKy3rgIQ6HPICkEPs9blsod/nWofSBdDPvUa9XpNRIqciqLA+hZF8DVnA4J19BlQ=="
"version": "0.15.0",
"resolved": "https://registry.npmjs.org/material-symbols/-/material-symbols-0.15.0.tgz",
"integrity": "sha512-216LRlmN8fZb0CoIOaQBmRZ55BptWcd7z//0v7dXQA6aogsvI9Qp1nMQ5jZ44dbgBXntUQzWdB5Q2D+6bJXioA=="
},
"node_modules/md5.js": {
"version": "1.3.5",

View file

@ -38,7 +38,7 @@
"chalk": "^5.3.0",
"eruda": "^3.0.1",
"js-ini": "^1.6.0",
"material-symbols": "^0.14.3",
"material-symbols": "^0.15.0",
"prism-code-editor": "^2.3.0",
"semver": "^7.5.4",
"uuid": "^9.0.1"

View file

@ -116,12 +116,7 @@ window.console.group = (...args: any) => {
try {
const args = new URLSearchParams(window.location.search)
const kernel = new Kernel()
writeln('/-----------------------------------------------\\')
writeln('| FlowOS is now discontinued. Starting in 10s...|')
writeln('\\-----------------------------------------------/')
setTimeout(() => {
kernel.boot(boot, progress, args).catch(e => console.error(e))
}, 10000)
await kernel.boot(boot, progress, args)
} catch (e) {
writeln()
writeln('An error occured while booting FlowOS.')