Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ build:
commands:
- 'echo "output directory: ${READTHEDOCS_OUTPUT}html"'
# shared-web build
- npm install
- npm install --ignore-scripts
- npm run build
- npm pack
- mkdir -p ${READTHEDOCS_OUTPUT}html/dist
Expand All @@ -18,13 +18,13 @@ build:
- npm run generate-docs
# jekyll example build
- 'echo "baseurl: projects/shared-web/$READTHEDOCS_VERSION"/jekyll >> ./examples/jekyll/_config.yml'
- cd examples/jekyll && npm install
- cd examples/jekyll && npm install # we need to include scripts for postinstall actions
- cd examples/jekyll && npm run build
# doxygen example build
- cd examples/doxygen && npm install
- cd examples/doxygen && npm install --ignore-scripts
- cd examples/doxygen && npm run build
# sphinx example build
- cd examples/sphinx && npm install
- cd examples/sphinx && npm install # we need to include scripts for postinstall actions
- cd examples/sphinx && npm run build
- cd examples/sphinx && npm run lint
# debug output
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Common web assets for use in LizardByte projects.

1. Add the dependency to your package.json file:
```bash
npm install @lizardbyte/shared-web
npm install @lizardbyte/shared-web --ignore-scripts
```

### Install via GitHub Package Registry
Expand All @@ -35,5 +35,5 @@ Common web assets for use in LizardByte projects.

2. Add the dependency to your package.json file:
```bash
npm install @lizardbyte/shared-web
npm install @lizardbyte/shared-web --ignore-scripts
```