-
Notifications
You must be signed in to change notification settings - Fork 209
Expand file tree
/
Copy pathjustfile
More file actions
68 lines (53 loc) · 1.22 KB
/
justfile
File metadata and controls
68 lines (53 loc) · 1.22 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
62
63
64
65
66
67
68
# OpenClaw Basic Memory Plugin
# Copy skills from the monorepo top-level skills/ source
fetch-skills:
bun scripts/fetch-skills.ts
# Install dependencies (bun + basic-memory CLI)
install:
bun install --frozen-lockfile
bun scripts/fetch-skills.ts
# Setup Basic Memory project
setup:
bm project add openclaw ~/.basic-memory/openclaw/
# Type check
check-types:
bun run check-types
# Build runtime dist/
build:
bun run build
# 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: fetch-skills check-types lint build test
# Release readiness checks
release-check:
bun run fetch-skills
bun run check-types
bun run lint
bun run build
bun test
npm pack --dry-run
# 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 dist skills node_modules