@algolia/wizard 0.3.0-rc.44.1 → 0.3.0-rc.44.2

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.
Files changed (2) hide show
  1. package/dist/main.js +3 -3
  2. package/package.json +3 -3
package/dist/main.js CHANGED
@@ -2186,7 +2186,7 @@ async function runAnalysis(mode, extraInstructions = []) {
2186
2186
  // package.json
2187
2187
  var package_default = {
2188
2188
  name: "@algolia/wizard",
2189
- version: "0.3.0-rc.44.1",
2189
+ version: "0.3.0-rc.44.2",
2190
2190
  description: "Magically implement Algolia functionality in your codebase",
2191
2191
  type: "module",
2192
2192
  engines: {
@@ -2200,8 +2200,8 @@ var package_default = {
2200
2200
  "docs"
2201
2201
  ],
2202
2202
  scripts: {
2203
- "build:proxy": `esbuild src/proxy/index.ts --bundle --platform=node --format=esm --target=node24 --banner:js='import { createRequire as __cr } from "module"; const require = __cr(import.meta.url);' --outfile=dist/proxy.mjs`,
2204
- build: "esbuild src/main.tsx --bundle --platform=node --format=esm --target=node18 --packages=external --jsx=automatic --banner:js='#!/usr/bin/env node' --outfile=dist/main.js && cp src/ui/algolia.png dist/algolia.png",
2203
+ "build:proxy": "node scripts/build.mjs proxy",
2204
+ build: "node scripts/build.mjs",
2205
2205
  "dev:proxy": "NODE_OPTIONS=--use-system-ca tsx watch src/proxy/index.ts",
2206
2206
  dev: "touch .env && tsx --env-file=.env ./src/main.tsx",
2207
2207
  "env:load": "pnpm exec -- varlock load",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@algolia/wizard",
3
- "version": "0.3.0-rc.44.1",
3
+ "version": "0.3.0-rc.44.2",
4
4
  "description": "Magically implement Algolia functionality in your codebase",
5
5
  "type": "module",
6
6
  "engines": {
@@ -14,8 +14,8 @@
14
14
  "docs"
15
15
  ],
16
16
  "scripts": {
17
- "build:proxy": "esbuild src/proxy/index.ts --bundle --platform=node --format=esm --target=node24 --banner:js='import { createRequire as __cr } from \"module\"; const require = __cr(import.meta.url);' --outfile=dist/proxy.mjs",
18
- "build": "esbuild src/main.tsx --bundle --platform=node --format=esm --target=node18 --packages=external --jsx=automatic --banner:js='#!/usr/bin/env node' --outfile=dist/main.js && cp src/ui/algolia.png dist/algolia.png",
17
+ "build:proxy": "node scripts/build.mjs proxy",
18
+ "build": "node scripts/build.mjs",
19
19
  "dev:proxy": "NODE_OPTIONS=--use-system-ca tsx watch src/proxy/index.ts",
20
20
  "dev": "touch .env && tsx --env-file=.env ./src/main.tsx",
21
21
  "env:load": "pnpm exec -- varlock load",