Skip to content

Commit 4b21ddd

Browse files
committed
Remove bulid-all npm task
1 parent e651255 commit 4b21ddd

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
cache: npm
1515
- run: npm ci
1616
- run: npm run lint
17-
- run: npm run build-all
17+
- run: npm run build -- specs
1818

1919
specs-ietf:
2020
runs-on: ubuntu-latest

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ Labels are assigned based on [Sensible Github Labels](https://github.com/Releque
2525
## Authoring and Building
2626

2727
### Specification
28-
To build the spec files to HTML from the Markdown sources, run `npm run
29-
build-all`. You can also build each individually with `npm run build --
28+
To build all the spec files to HTML from the Markdown sources, run `npm run
29+
build -- specs`. You can also build each individually with `npm run build --
3030
specs/filename.md` (Example: `npm run build -- specs/jsonschema-core.md`). You
3131
can also use wildcards to build multiple specs at the same time: `npm run build
3232
-- specs/jsonschema-*.md`. The HTML files will be available in the `web` folder.

Diff for: package.json

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"main": "index.js",
77
"scripts": {
88
"lint": "eslint . ; remark --no-stdout --frail specs/",
9-
"build-all": "remark --rc-path specs/.remarkrc-build.js --output web/ specs/",
109
"build": "remark --rc-path specs/.remarkrc-build.js --output web/"
1110
},
1211
"license": "MIT",

0 commit comments

Comments
 (0)