-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjustfile
More file actions
61 lines (47 loc) · 1.07 KB
/
justfile
File metadata and controls
61 lines (47 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# OpenClaw Basic Memory Plugin
# Fetch skills from GitHub
fetch-skills:
bun scripts/fetch-skills.ts
# Install dependencies (bun + basic-memory CLI)
install:
bun install
bash scripts/setup-bm.sh
bun scripts/fetch-skills.ts
git config core.hooksPath .githooks
# Setup Basic Memory project
setup:
bm project add openclaw ~/.basic-memory/openclaw/
# Type check
check-types:
bun run check-types
# Lint
lint:
bun run lint
# Lint fix (safe + unsafe)
lint-fix:
bun run lint:fix
# Format and fix
fix:
bun run lint:fix
# Run tests
test:
bun test
# Run all checks
check: check-types lint
# Release readiness checks
release-check:
bun run release:check
# Show exactly what would be published to npm
release-pack:
npm pack --dry-run
# Publish current version to npm (requires npm auth)
release-publish:
npm publish
# Bump version, publish, and push commit+tag
release version:
npm version {{version}}
npm publish
git push origin main --follow-tags
# Clean build artifacts and node_modules
clean:
rm -rf node_modules bun.lock