execute gulp

This commit is contained in:
Thomas Müller 2016-01-20 22:02:44 +01:00
parent 67d407ba6e
commit 4a6393cf13
3 changed files with 6 additions and 10 deletions

View File

@ -23,7 +23,7 @@ matrix:
install:
# install ocdev
- sudo apt-get -y install python3-jinja2 python3-setuptools
- sudo apt-get -y install python3-jinja2 python3-setuptools npm
- sudo easy_install3 requests
- sudo easy_install3 ocdev
# set up postgresql
@ -40,10 +40,10 @@ install:
- cd owncloud
- ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --database-pass --admin-user admin --admin-pass admin --database $DB
- ./occ app:enable contactsrework
before_script:
- cd apps/contactsrework
- npm install
script:
- phpunit -c phpunit.xml
- phpunit -c phpunit.integration.xml
- node_modules/gulp/bin/gulp.js

View File

@ -1,6 +1,5 @@
var gulp = require('gulp'),
concat = require('gulp-concat'),
notify = require('gulp-notify'),
jshint = require('gulp-jshint');
gulp.task('js', function() {
@ -14,8 +13,7 @@ gulp.task('js', function() {
.pipe(jshint('.jshintrc'))
.pipe(jshint.reporter('default'))
.pipe(concat('script.js'))
.pipe(gulp.dest('js/public'))
.pipe(notify({message: 'Scripts task complete'}));
.pipe(gulp.dest('js/public'));
});
gulp.task('css', function() {
@ -24,8 +22,7 @@ gulp.task('css', function() {
'!css/public/**.css'
])
.pipe(concat('style.css'))
.pipe(gulp.dest('css/public'))
.pipe(notify({message: 'Styles task complete'}));
.pipe(gulp.dest('css/public'));
});
gulp.task('watch', function() {

View File

@ -19,7 +19,6 @@
"devDependencies": {
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-jshint": "^1.11.2",
"gulp-notify": "^2.2.0"
"gulp-jshint": "^1.11.2"
}
}