Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Commit eec2400

Browse files
authored
Merge pull request #5 from punkave/fix/updates
Fix/updates
2 parents 04b01ce + 550a6bf commit eec2400

20 files changed

+2601
-9
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src/js/vendor/**/*.js

.eslintrc

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "punkave",
33
"globals": {
44
"$": 1,
5+
"_": 1,
56
"apos": 1
67
}
78
}

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@ node_modules
22
.DS_Store
33
npm-debug.log
44
dist
5+
public
6+
public/css/
7+
public/imgs/

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: node_js
2+
node_js: '6.11.2'
3+
cache:
4+
directories:
5+
- node_modules
6+
before_script:
7+
- npm install
8+
script:
9+
- gulp build

gulpfile.babel.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ import sass from 'gulp-sass';
1111
import source from 'vinyl-source-stream';
1212

1313
const src = './src/';
14-
const dest = './dist/';
14+
const dest = './public/';
1515

1616
const spawn = require('child_process').spawn;
1717
const reload = browserSync.reload;
18-
const bs = browserSync.create('proxy');
18+
const bs = browserSync.create();
1919
let travis = process.env.TRAVIS || false;
2020

2121
let node;
@@ -33,6 +33,7 @@ gulp.task('server', function () {
3333
gulp.task('browser-sync', ['server'], function () {
3434
bs.init({
3535
proxy: 'localhost:3000',
36+
ui: { port: 3002 },
3637
port: 3001,
3738
open: false
3839
});

0 commit comments

Comments
 (0)