Skip to content

Commit 9590031

Browse files
committed
Add updated wp-dev-lib as submodule
1 parent c29ebc9 commit 9590031

File tree

4 files changed

+33
-0
lines changed

4 files changed

+33
-0
lines changed

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[submodule "dev-lib"]
2+
path = dev-lib
3+
url = ../wp-plugin-dev-lib
4+
branch = vip-themes

.jshintrc

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

.travis.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
language:
2+
- php
3+
- node_js
4+
5+
php:
6+
- 5.4
7+
- 5.5
8+
9+
node_js:
10+
- 0.10
11+
12+
env:
13+
- WP_VERSION=latest WP_MULTISITE=0
14+
- WP_VERSION=latest WP_MULTISITE=1
15+
- WP_VERSION=4.0 WP_MULTISITE=0
16+
- WP_VERSION=4.0 WP_MULTISITE=1
17+
18+
before_script:
19+
- export DEV_LIB_PATH=dev-lib
20+
- if [ ! -e "$DEV_LIB_PATH" ] && [ -L .travis.yml ]; then export DEV_LIB_PATH=$( dirname $( readlink .travis.yml ) ); fi
21+
- source $DEV_LIB_PATH/travis.before_script.sh
22+
23+
script:
24+
- $DEV_LIB_PATH/travis.script.sh
25+
26+
after_script:
27+
- $DEV_LIB_PATH/travis.after_script.sh

dev-lib

Submodule dev-lib added at e4e1607

0 commit comments

Comments
 (0)