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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

# Ignore node_modules
node_modules/
package-lock.json

# Ignore test coverage
junit.xml
Expand Down
9 changes: 4 additions & 5 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,21 @@ build:
commands:
- 'echo "output directory: ${READTHEDOCS_OUTPUT}html"'
# shared-web build
- npm install --ignore-scripts
- npm ci --ignore-scripts
- npm run build
- npm pack
- mkdir -p ${READTHEDOCS_OUTPUT}html/dist
- cp -r dist/* ${READTHEDOCS_OUTPUT}html/dist
# jsdoc 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 # we need to include scripts for postinstall actions
- cd examples/jekyll && npm ci # we need to include scripts for postinstall actions
- cd examples/jekyll && npm run build
# doxygen example build
- cd examples/doxygen && npm install --ignore-scripts
- cd examples/doxygen && npm ci --ignore-scripts
- cd examples/doxygen && npm run build
# sphinx example build
- cd examples/sphinx && npm install # we need to include scripts for postinstall actions
- cd examples/sphinx && npm ci # we need to include scripts for postinstall actions
- cd examples/sphinx && npm run build
- cd examples/sphinx && npm run lint
# debug output
Expand Down
66 changes: 66 additions & 0 deletions examples/doxygen/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/doxygen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Example use of @lizardbyte/shared-web in doxygen html.",
"dependencies": {
"@jothepro/doxygen-awesome-css": "github:jothepro/doxygen-awesome-css#v2.3.4",
"@lizardbyte/shared-web": "file:../../lizardbyte-shared-web-0.0.0.tgz"
"@lizardbyte/shared-web": "file:../.."
},
"scripts": {
"build": "doxygen Doxyfile"
Expand Down
Loading