Skip to content

Commit 9ad39f4

Browse files
committed
fix(travis): fix travis build
1 parent 3a3fcba commit 9ad39f4

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

.envrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
use nix -p nodejs
12
layout node

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
language: node_js
2-
cache:
3-
directories:
4-
- node_modules
52
notifications:
63
email: false
74
node_js:
@@ -13,7 +10,7 @@ jobs:
1310
- stage: release
1411
node_js: lts/*
1512
# Advanced: optionally overwrite your default `script` step to skip the tests
16-
# script: skip
13+
script: skip
1714
deploy:
1815
provider: script
1916
skip_cleanup: true

README.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ git clone https://github.com/jethrokuan/sharedb-ace.git
5252
#+END_SRC
5353

5454
#+BEGIN_SRC sh
55-
cd sharedb-ace && yarn install
55+
cd sharedb-ace && npm install
5656
#+END_SRC
5757

5858
*** Generating JS Docs

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,9 @@
1414
"build": "npm run build:npm && npm run build:dist",
1515
"build:npm": "babel source --presets babel-preset-latest --out-dir distribution",
1616
"build:dist": "webpack",
17-
"watch": "npm run build",
1817
"test": "echo 'doing nothing'",
1918
"lint": "eslint source",
20-
"docs": "jsdoc source/*.js -d ./docs/",
21-
"prepublish": "npm run build",
19+
"docs": "jsdoc source/*.js -d ./docs/"
2220
},
2321
"precommit": {
2422
"run": [

0 commit comments

Comments
 (0)