mirror of
https://github.com/tauri-apps/tauri-search.git
synced 2026-02-04 02:41:20 +01:00
* chore: checking whether full relative path works * chore: add stage input to full-update * chore: moved prep action into actions folder * chore: checkout in action as well as workflow * chore: no name for checkout * fix: added checkout to test workflow * chore: trying actions/prep/action.yml path * chore: added namespace for setup-node * chore: added "shell" for CLI commands * chore: install tauri-repo deps as separate step * chore: use pnpm's action * chore: added pnpm version number * chore: disable cache for now * added some more inputs * chore: remove recursive flag in pnpm action * added ENV specific scripts for full update * chore: move MEILI keys to be stage specific * chore: add secrets to ENV in update * fix: add defensive code to ESM version of getEnv() * fix: more defence with getEnv() * chore: getEnv is defensive as hell :) * chore: another attempt at avoiding getEnv error * chore: picking up secrets in a differnt bucket * chore: full-update includes GH_ secrets
66 lines
3.3 KiB
JSON
66 lines
3.3 KiB
JSON
{
|
|
"name": "tauri-search-monorepo",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"author": "Ken Snyder<ken@ken.net>",
|
|
"scripts": {
|
|
"cli:reset-index-config": "run-s cli:drop-indexes cli:create-indexes cli:push-caches",
|
|
"cli:drop-indexes": "pnpm -C ./packages/tauri-search run drop-indexes",
|
|
"cli:create-indexes": "pnpm -C ./packages/tauri-search run create-indexes",
|
|
"cli:push-caches": "pnpm -C ./packages/tauri-search run push-caches",
|
|
"cli:clear-caches": "pnpm -C ./packages/tauri-search run clear-caches",
|
|
"clean": "pnpm run --filter ./packages run clean",
|
|
"start": "pnpm -r install && run-s up start:tauri-search start:docs full-update",
|
|
"start:tauri-search": "pnpm -C ./packages/tauri-search run watch",
|
|
"start:docs": "pnpm -C ./packages/docs run watch",
|
|
"full-update": "pnpm -C ./packages/tauri-search run full-update",
|
|
"full-update:staging": "NODE_ENV=staging pnpm -C ./packages/tauri-search run full-update",
|
|
"full-update:production": "NODE_ENV=production pnpm -C ./packages/tauri-search run full-update",
|
|
"delta-update": "pnpm -C ./packages/tauri-search run delta-update",
|
|
"build": "run-p build:*",
|
|
"build:cli": "pnpm -C ./packages/tauri-search run build:cli",
|
|
"build:npm": "pnpm -C ./packages/tauri-search run build:npm",
|
|
"watch": "run-s watch:prep watch:rest",
|
|
"watch:prep": "pnpm -C ./packages/tauri-search run build:npm",
|
|
"watch:rest": "run-p watch:tauri-search watch:docs",
|
|
"watch:tauri-search": "pnpm -C ./packages/tauri-search run watch",
|
|
"watch:docs": "pnpm -C ./packages/docs run watch",
|
|
"test": "run-p test:docs test:tauri-search",
|
|
"test:tauri-search": "pnpm -C ./packages/tauri-search run test",
|
|
"test:docs": "pnpm -C ./packages/docs run test",
|
|
"test:watch": "pnpm -C ./packages/tauri-search run test:watch",
|
|
"current-indexes": "pnpm -C ./packages/tauri-search run current-indexes",
|
|
"create-indexes": "pnpm -C ./packages/tauri-search run create-indexes",
|
|
"refresh-prose": "pnpm -C ./packages/tauri-search run refresh-prose",
|
|
"push-prose": "pnpm -C ./packages/tauri-search run push-prose",
|
|
"up": "docker compose up -d",
|
|
"down": "docker compose down",
|
|
"ps": "docker compose ps",
|
|
"logs:scraper": "docker logs scraper",
|
|
"into:scraper": "docker run -it getmeili/docs-scraper:latest bash",
|
|
"into:search": "docker run -it getmeili/meilisearch bash",
|
|
"lint": "run-p lint:*",
|
|
"lint:tauri-search": "pnpm -C ./packages/tauri-search run lint",
|
|
"lint:docs": "pnpm -C ./packages/docs run lint",
|
|
"ping": "npx http GET localhost:7700/health --timeout 2",
|
|
"prune": "docker system prune",
|
|
"restart": "docker compose restart",
|
|
"start:cli": "pnpm install",
|
|
"start:docker": "run-s up",
|
|
"ts-ast": "node ./bin/ts-ast.js",
|
|
"vol:create": "run-s vol:create:*",
|
|
"vol:create:scraper": "docker volume create scraper",
|
|
"vol:create:search": "docker volume create search_db",
|
|
"vol:inspect": "run-s vol:inspect:*",
|
|
"vol:inspect:scraper": "docker volume inspect scraper",
|
|
"vol:inspect:search": "docker volume inspect search_db",
|
|
"npm": "pnpm -C ./packages/tauri-search run watch:npm",
|
|
"npm:test": "pnpm -C ./packages/tauri-search run test"
|
|
},
|
|
"devDependencies": {
|
|
"changeset": "^0.2.6",
|
|
"npm-run-all": "^4.1.5"
|
|
}
|
|
}
|