@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/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() {