@algolia/wizard 0.2.0 → 0.3.0-rc.43.6

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 (3) hide show
  1. package/README.md +3 -49
  2. package/dist/main.js +1175 -600
  3. package/package.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@algolia/wizard",
3
- "version": "0.2.0",
3
+ "version": "0.3.0-rc.43.6",
4
4
  "description": "Magically implement Algolia functionality in your codebase",
5
5
  "type": "module",
6
6
  "engines": {
@@ -14,9 +14,9 @@
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",
19
- "dev:proxy": "NODE_OPTIONS=--use-system-ca tsx watch src/proxy/index.ts",
17
+ "build:proxy": "node scripts/build.mjs proxy",
18
+ "build": "node scripts/build.mjs",
19
+ "dev:proxy": "touch .env && NODE_OPTIONS=--use-system-ca tsx watch --env-file=.env src/proxy/index.ts",
20
20
  "dev": "touch .env && tsx --env-file=.env ./src/main.tsx",
21
21
  "env:load": "pnpm exec -- varlock load",
22
22
  "prepare": "husky",