File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 50
50
# Note, all find statements should be written with `.` or `./path` as
51
51
# the search path so that these exclusions match.
52
52
FIND_EXCLUSIONS = \
53
- -not \( \( -path '*/.git/*' -o -path './build/*' -o -path './vendor/*' -o -path './.coderv2/*' -o -path '*/node_modules/*' -o -path './site/out/*' \) -prune \)
53
+ -not \( \( -path '*/.git/*' -o -path './build/*' -o -path './vendor/*' -o -path './.coderv2/*' -o -path '*/node_modules/*' -o -path './site/out/*' -o -path './coderd/apidoc/*' \) -prune \)
54
54
# Source files used for make targets, evaluated on use.
55
55
GO_SRC_FILES = $(shell find . $(FIND_EXCLUSIONS ) -type f -name '* .go')
56
56
# All the shell files in the repo, excluding ignored files.
@@ -522,7 +522,7 @@ docs/admin/prometheus.md: scripts/metricsdocgen/main.go scripts/metricsdocgen/me
522
522
cd site
523
523
yarn run format:write:only ../docs/admin/prometheus.md
524
524
525
- docs/cli.md : scripts/clidocgen/main.go $(GO_SRC_FILES ) docs/manifest.json
525
+ docs/cli.md : scripts/clidocgen/main.go $(GO_SRC_FILES )
526
526
BASE_PATH=" ." go run ./scripts/clidocgen
527
527
cd site
528
528
yarn run format:write:only ../docs/cli.md ../docs/cli/* .md ../docs/manifest.json
Original file line number Diff line number Diff line change 3
3
"description" : " Coder V2 (Workspaces V2)" ,
4
4
"repository" : " https://github.com/coder/coder" ,
5
5
"private" : true ,
6
+ "license" : " AGPL-3.0" ,
6
7
"scripts" : {
7
8
"postinstall" : " yarn typegen" ,
8
9
"build" : " NODE_ENV=production yarn vite build" ,
You can’t perform that action at this time.
0 commit comments