-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.example
More file actions
45 lines (34 loc) · 989 Bytes
/
Copy pathMakefile.example
File metadata and controls
45 lines (34 loc) · 989 Bytes
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
.PHONY: help install dev lint test build verify pack publish auth-login login
help:
@echo "install Install development dependencies"
@echo "dev Run the TypeScript CLI"
@echo "lint Type-check without emitting"
@echo "test Run unit and integration tests"
@echo "build Compile the npm package"
@echo "verify Run all release gates"
@echo "pack Inspect the package contents"
@echo "publish Publish after all release gates pass"
@echo "auth-login Authenticate interactively with npm/WebAuthn"
@echo "login Retired token-login tombstone"
install:
bun install
dev:
bun run dev --help
lint:
npm run lint
test:
npm test
build:
npm run build
verify:
npm run verify
pack: verify
npm pack --dry-run
auth-login:
npm login --registry https://registry.npmjs.org/
login:
@echo "Token-based login is retired for VSSH."
@echo "Use 'make auth-login' and complete npm's interactive WebAuthn flow."
@false
publish: verify
npm publish --access public