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
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v11.9.0
10.15.3
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v10.15.3
15 changes: 14 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
language: node_js
cache: npm
node_js:
- stable
- lts/*
before_install:
- rvm install 2.6.0

install:
- npm ci
- bundle install

script:
- npm t
- npm run build:api-markup
- npm run webpack:prod
- bundle exec jekyll build
12 changes: 10 additions & 2 deletions bootstrap-scripts/update-and-generate.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
#!/usr/bin/env bash
set -Eeuo pipefail
set -Eeu pipefail
pwd

echo "Installing latest develop version of Basil.js"
npm install basiljs/basil.js#develop -D
echo "Success"
echo "Copying changelog.txt into jekyll source"
cp ./node_modules/basiljs/changelog.txt ./_source/download/
echo "Success"
echo "Building JSDoc data.json using documentationjs"
npm run documentationjs -- build ./node_modules/basiljs/basil.js -o ./build-scripts/api/data.json
node build-scripts/src/index.js
echo "Success"
echo "Building markup from data.json"
node build-scripts/index.js
echo "Success"
Loading