File tree 4 files changed +3959
-33
lines changed
4 files changed +3959
-33
lines changed Original file line number Diff line number Diff line change 1
1
# Validate this file using http://lint.travis-ci.org/
2
2
language : node_js
3
- node_js : stable
3
+ node_js : " 5.10 "
4
4
sudo : false
5
5
script : npm run dist
6
6
before_deploy :
Original file line number Diff line number Diff line change @@ -31,3 +31,21 @@ subdirectory.
31
31
32
32
Alternatively, pre-compiled bundles can be found from the
33
33
[ GitHub releases page] ( https://github.com/lumc-nested/nested-website/releases ) .
34
+
35
+
36
+ Dependency management
37
+ ---------------------
38
+
39
+ In order to have somewhat reproducible builds, we use
40
+ [ npm shrinkwrap] ( https://docs.npmjs.com/cli/shrinkwrap ) to lock down all
41
+ dependencies. To add or update a dependency, run:
42
+
43
+ npm install --save --save-exact some-dependency@some-version
44
+
45
+ Or, if it's a dev dependency:
46
+
47
+ npm install --save-dev --save-exact some-dev-dependency@some-version
48
+
49
+ Then update the shrinkwrap:
50
+
51
+ npm shrinkwrap --dev
You can’t perform that action at this time.
0 commit comments