@prosopo/client-bundle-example 2.10.22 → 2.10.24
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/.turbo/turbo-build$colon$cjs.log +2 -2
- package/.turbo/turbo-build$colon$tsc.log +11 -11
- package/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +51 -0
- package/package.json +9 -9
- package/src/frictionless-explicit.html +8 -0
- package/src/frictionless-manual-start.html +224 -0
- package/src/image-explicit.html +8 -0
- package/src/plugins/navigation-injector.ts +2 -0
- package/src/plugins/placement-injector.ts +153 -0
- package/src/pow-implicit-sessionid.html +223 -0
- package/src/puzzle-bind-explicit.html +98 -0
- package/src/puzzle-explicit.html +8 -0
- package/tsconfig.tsbuildinfo +1 -1
- package/vite.config.ts +10 -0
package/vite.config.ts
CHANGED
|
@@ -20,6 +20,7 @@ import { type UserConfig, defineConfig } from "vite";
|
|
|
20
20
|
import explanationInjector from "./src/plugins/explanation-injector.js";
|
|
21
21
|
import formFillerInjector from "./src/plugins/form-filler-injector.js";
|
|
22
22
|
import navigationInjector from "./src/plugins/navigation-injector.js";
|
|
23
|
+
import placementInjector from "./src/plugins/placement-injector.js";
|
|
23
24
|
import statusLogInjector from "./src/plugins/status-log-injector.js";
|
|
24
25
|
|
|
25
26
|
loadEnv();
|
|
@@ -174,6 +175,10 @@ export default defineConfig(({ command, mode }) => {
|
|
|
174
175
|
__dirname,
|
|
175
176
|
"src/frictionless-explicit.html",
|
|
176
177
|
),
|
|
178
|
+
"frictionless-manual-start": path.resolve(
|
|
179
|
+
__dirname,
|
|
180
|
+
"src/frictionless-manual-start.html",
|
|
181
|
+
),
|
|
177
182
|
"invisible-pow-explicit": path.resolve(
|
|
178
183
|
__dirname,
|
|
179
184
|
"src/invisible-pow-explicit.html",
|
|
@@ -206,6 +211,10 @@ export default defineConfig(({ command, mode }) => {
|
|
|
206
211
|
__dirname,
|
|
207
212
|
"src/puzzle-explicit.html",
|
|
208
213
|
),
|
|
214
|
+
"puzzle-bind-explicit": path.resolve(
|
|
215
|
+
__dirname,
|
|
216
|
+
"src/puzzle-bind-explicit.html",
|
|
217
|
+
),
|
|
209
218
|
"invisible-puzzle-implicit": path.resolve(
|
|
210
219
|
__dirname,
|
|
211
220
|
"src/invisible-puzzle-implicit.html",
|
|
@@ -222,6 +231,7 @@ export default defineConfig(({ command, mode }) => {
|
|
|
222
231
|
formFillerInjector(),
|
|
223
232
|
explanationInjector(),
|
|
224
233
|
statusLogInjector(),
|
|
234
|
+
placementInjector(),
|
|
225
235
|
{
|
|
226
236
|
name: "copy-files",
|
|
227
237
|
closeBundle() {
|