Skip to content
This repository was archived by the owner on Aug 27, 2018. It is now read-only.

Commit b382bf4

Browse files
authored
Merge pull request #103 from myitcv/react_16
Upgrade to React 16
2 parents 6ff9dcf + 8d3198f commit b382bf4

13 files changed

+18792
-20914
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@ before_script:
1616
install: true
1717

1818
script:
19+
- ./_scripts/webpack_deps.sh
1920
- ./_scripts/run_tests.sh
2021
- ./_scripts/check_git_is_clean.sh

_scripts/webpack_deps.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/usr/bin/env bash
2+
3+
# Copyright (c) 2016 Paul Jolly <paul@myitcv.org.uk>, all rights reserved.
4+
# Use of this document is governed by a license found in the LICENSE document.
5+
6+
source "${BASH_SOURCE%/*}/common.bash"
7+
8+
pushd internal/dev > /dev/null
9+
10+
npm install
11+
12+
./node_modules/.bin/webpack
13+
14+
popd > /dev/null
15+
16+
pushd internal/prod > /dev/null
17+
18+
./node_modules/.bin/webpack

internal/dev/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules

0 commit comments

Comments
 (0)