Skip to content

Commit c11995a

Browse files
committed
remove stat server and fix durations bug
1 parent 4ab94a1 commit c11995a

16 files changed

+831
-1842
lines changed

index.html

-11
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,6 @@
3232

3333
gtag("config", "UA-229540973-1");
3434
</script>
35-
<script type="text/javascript">
36-
window.$sleek = [];
37-
window.SLEEK_PRODUCT_ID = 355159471;
38-
(function () {
39-
d = document;
40-
s = d.createElement("script");
41-
s.src = "https://client.sleekplan.com/sdk/e.js";
42-
s.async = 1;
43-
d.getElementsByTagName("head")[0].appendChild(s);
44-
})();
45-
</script>
4635
</body>
4736

4837
</html>

jsconfig.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"vueCompilerOptions": {
3+
"plugins": [
4+
"@vue/language-plugin-pug"
5+
]
6+
}
7+
}

package.json

+18-28
Original file line numberDiff line numberDiff line change
@@ -17,47 +17,37 @@
1717
"build": "vite build ",
1818
"deploy": "sh deploy.sh",
1919
"dev": "vite --host --port 3442",
20-
"serve": "vite preview --port 3400",
21-
"server": "node server.js"
20+
"serve": "vite preview --port 3400"
2221
},
2322
"dependencies": {
2423
"@tonaljs/tonal": "^4.10.0",
25-
"@tonejs/midi": "^2.0.28",
26-
"@vueuse/core": "^10.1.2",
27-
"@vueuse/gesture": "^1.0.0",
28-
"@vueuse/math": "^10.1.2",
29-
"cobe": "^0.6.3",
24+
"@vueuse/core": "^10.5.0",
25+
"@vueuse/math": "^10.5.0",
3026
"color-hash": "^2.0.2",
3127
"colord": "^2.9.3",
3228
"floating-vue": "^2.0.0-y.0",
3329
"hidpi-canvas": "^1.0.10",
34-
"midi-writer-js": "^2.1.4",
30+
"midi-writer-js": "^3.1.1",
3531
"ms": "^2.1.3",
36-
"nanoid": "^4.0.2",
37-
"paper": "^0.12.17",
3832
"simplex-noise": "^4.0.1",
3933
"tone": "^14.8.49",
40-
"vue": "^3.3.4",
41-
"vue-router": "^4.2.2",
42-
"webmidi": "^3.1.6"
34+
"vue": "^3.3.7",
35+
"vue-router": "^4.2.5",
36+
"webmidi": "^3.1.6",
37+
"@unocss/reset": "0.56.5"
4338
},
4439
"devDependencies": {
45-
"@iconify/json": "^2.2.77",
46-
"@vitejs/plugin-vue": "^4.2.3",
47-
"json-server": "^0.17.3",
48-
"json-server-auth": "^2.1.0",
49-
"markdown-it-external-links": "^0.0.6",
50-
"patch-vue-directive-ssr": "^0.0.1",
40+
"unocss": "0.56.5",
41+
"@unocss/extractor-pug": "0.56.5",
42+
"@iconify/json": "^2.2.136",
43+
"@vitejs/plugin-vue": "^4.4.0",
5144
"pug": "3.0.2",
52-
"unplugin-auto-import": "^0.16.4",
53-
"unplugin-icons": "^0.16.3",
54-
"unplugin-vue-components": "^0.25.1",
55-
"vite": "4.0.5",
56-
"vite-aliases": "0.11.2",
45+
"unplugin-auto-import": "^0.16.7",
46+
"unplugin-icons": "^0.17.3",
47+
"unplugin-vue-components": "^0.25.2",
48+
"vite": "4.5.0",
5749
"vite-plugin-pages": "^0.31.0",
58-
"vite-plugin-pages-sitemap": "^1.5.0",
59-
"vite-plugin-pwa": "^0.16.4",
60-
"vite-plugin-windicss": "^1.9.0",
61-
"windicss": "3.5.6"
50+
"vite-plugin-pages-sitemap": "^1.6.1",
51+
"vite-plugin-pwa": "^0.16.6"
6252
}
6353
}

0 commit comments

Comments
 (0)