Skip to content

Commit 656c5d7

Browse files
authored
Chore/update deps (#142)
Chore/update deps
2 parents e201138 + 021206c commit 656c5d7

File tree

8 files changed

+7033
-4170
lines changed

8 files changed

+7033
-4170
lines changed

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v11.9.0
1+
10.15.3

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v10.15.3

.travis.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
11
language: node_js
2+
cache: npm
23
node_js:
3-
- stable
4+
- lts/*
5+
before_install:
6+
- rvm install 2.6.0
7+
8+
install:
9+
- npm ci
10+
- bundle install
11+
12+
script:
13+
- npm t
14+
- npm run build:api-markup
15+
- npm run webpack:prod
16+
- bundle exec jekyll build
Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
#!/usr/bin/env bash
2-
set -Eeuo pipefail
2+
set -Eeu pipefail
33
pwd
44

5+
echo "Installing latest develop version of Basil.js"
56
npm install basiljs/basil.js#develop -D
7+
echo "Success"
8+
echo "Copying changelog.txt into jekyll source"
69
cp ./node_modules/basiljs/changelog.txt ./_source/download/
10+
echo "Success"
11+
echo "Building JSDoc data.json using documentationjs"
712
npm run documentationjs -- build ./node_modules/basiljs/basil.js -o ./build-scripts/api/data.json
8-
node build-scripts/src/index.js
13+
echo "Success"
14+
echo "Building markup from data.json"
15+
node build-scripts/index.js
16+
echo "Success"

0 commit comments

Comments
 (0)