Skip to content

Commit

Permalink
Remove bulid-all npm task
Browse files Browse the repository at this point in the history
  • Loading branch information
jdesrosiers committed Nov 7, 2024
1 parent 3d24c08 commit fc42081
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run build-all
- run: npm run build -- specs

specs-ietf:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ Labels are assigned based on [Sensible Github Labels](https://github.com/Releque
## Authoring and Building

### Specification
To build the spec files to HTML from the Markdown sources, run `npm run
build-all`. You can also build each individually with `npm run build --
To build all the spec files to HTML from the Markdown sources, run `npm run
build -- specs`. You can also build each individually with `npm run build --
specs/filename.md` (Example: `npm run build -- specs/jsonschema-core.md`). You
can also use wildcards to build multiple specs at the same time: `npm run build
-- specs/jsonschema-*.md`. The HTML files will be available in the `web` folder.
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"main": "index.js",
"scripts": {
"lint": "eslint . ; remark --no-stdout --frail specs/",
"build-all": "remark --rc-path specs/.remarkrc-build.js --output web/ specs/",
"build": "remark --rc-path specs/.remarkrc-build.js --output web/"
},
"license": "MIT",
Expand Down

0 comments on commit fc42081

Please sign in to comment.