vzcode 0.77.0 → 0.78.0
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/dist/assets/{index-DVG2p8p3.js → index-Cv26Z85N.js} +37 -37
- package/dist/assets/{index-B1DSqTuG.css → index-WtPPom-d.css} +1 -1
- package/dist/assets/{worker-Cy8ajBgn.js → worker-RqaVTR5D.js} +23 -23
- package/dist/index.html +2 -2
- package/package.json +4 -4
- package/src/client/VZCodeContext.tsx +0 -3
- package/src/client/VZSidebar/styles.scss +1 -0
package/dist/index.html
CHANGED
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
|
|
21
21
|
rel="stylesheet"
|
|
22
22
|
/>
|
|
23
|
-
<script type="module" crossorigin src="/assets/index-
|
|
24
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
23
|
+
<script type="module" crossorigin src="/assets/index-Cv26Z85N.js"></script>
|
|
24
|
+
<link rel="stylesheet" crossorigin href="/assets/index-WtPPom-d.css">
|
|
25
25
|
</head>
|
|
26
26
|
<body>
|
|
27
27
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vzcode",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.78.0",
|
|
4
4
|
"description": "Multiplayer code editor system",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -95,12 +95,12 @@
|
|
|
95
95
|
"d3-array": "^3.2.4",
|
|
96
96
|
"diff-match-patch": "^1.0.5",
|
|
97
97
|
"dotenv": "^16.4.5",
|
|
98
|
-
"express": "^4.
|
|
98
|
+
"express": "^4.19.0",
|
|
99
99
|
"ignore": "^5.3.1",
|
|
100
100
|
"json0-ot-diff": "^1.1.2",
|
|
101
101
|
"ngrok": "^4.3.3",
|
|
102
102
|
"open": "^10.1.0",
|
|
103
|
-
"openai": "^4.29.
|
|
103
|
+
"openai": "^4.29.2",
|
|
104
104
|
"prettier-plugin-svelte": "^3.2.2",
|
|
105
105
|
"react": "^18.2.0",
|
|
106
106
|
"react-bootstrap": "^2.10.2",
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
"prettier": "^3.2.5",
|
|
120
120
|
"sass": "^1.72.0",
|
|
121
121
|
"typescript": "^5.4.2",
|
|
122
|
-
"vite": "^5.
|
|
122
|
+
"vite": "^5.2.2",
|
|
123
123
|
"vitest": "^1.4.0"
|
|
124
124
|
}
|
|
125
125
|
}
|
|
@@ -121,7 +121,6 @@ export const VZCodeProvider = ({
|
|
|
121
121
|
initialUsername,
|
|
122
122
|
children,
|
|
123
123
|
codeError = null,
|
|
124
|
-
enableManualPretter = true,
|
|
125
124
|
connected,
|
|
126
125
|
}: {
|
|
127
126
|
content: VZCodeContent;
|
|
@@ -134,7 +133,6 @@ export const VZCodeProvider = ({
|
|
|
134
133
|
initialUsername: Username;
|
|
135
134
|
children: React.ReactNode;
|
|
136
135
|
codeError?: string | null;
|
|
137
|
-
enableManualPretter?: boolean;
|
|
138
136
|
connected: boolean;
|
|
139
137
|
}) => {
|
|
140
138
|
// Auto-run Pretter after local changes.
|
|
@@ -150,7 +148,6 @@ export const VZCodeProvider = ({
|
|
|
150
148
|
shareDBDoc,
|
|
151
149
|
submitOperation,
|
|
152
150
|
prettierWorker,
|
|
153
|
-
enableManualPretter,
|
|
154
151
|
});
|
|
155
152
|
|
|
156
153
|
const runCodeRef = useRunCode(submitOperation);
|