@scheduler-systems/gal 0.1.3-beta → 0.1.5-beta
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/README.md +2 -2
- package/dist/index.cjs +510 -1
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scheduler-systems/gal",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5-beta",
|
|
4
4
|
"description": "GAL CLI - Command-line tool for managing AI agent configurations across your organization",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"private": false,
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"prebuild": "pnpm --filter @gal/sal build",
|
|
24
24
|
"build": "rm -rf dist && esbuild src/index.ts --bundle --platform=node --target=node18 --outfile=dist/index.cjs --format=cjs --external:pino --external:pino-pretty --external:thread-stream --external:keytar --external:@gal/sal --banner:js='#!/usr/bin/env node' --define:__CLI_VERSION__=\\\"$(node -p \"require('./package.json').version\")-local+$(git rev-parse --short HEAD)\\\" --define:__DEFAULT_API_URL__=\\\"http://localhost:3000\\\" && chmod +x dist/index.cjs",
|
|
25
25
|
"prebuild:publish": "pnpm --filter @gal/sal build",
|
|
26
|
-
"build:publish": "rm -rf dist && esbuild src/index.ts --bundle --platform=node --target=node18 --minify --outfile=dist/index.cjs --format=cjs --external:pino --external:pino-pretty --external:thread-stream --external:keytar --
|
|
26
|
+
"build:publish": "rm -rf dist && esbuild src/index.ts --bundle --platform=node --target=node18 --minify --outfile=dist/index.cjs --format=cjs --external:pino --external:pino-pretty --external:thread-stream --external:keytar --banner:js='#!/usr/bin/env node' --define:__CLI_VERSION__=\\\"$(node -p \"require('./package.json').version\")\\\" --define:__DEFAULT_API_URL__=\\\"${DEFAULT_API_URL:-https://api.gal.run}\\\" && chmod +x dist/index.cjs && node scripts/obfuscate.js",
|
|
27
27
|
"start": "node dist/index.cjs",
|
|
28
28
|
"test": "vitest run --pool=forks",
|
|
29
29
|
"test:watch": "vitest",
|