Skip to content

Commit 8d8845d

Browse files
authored
Merge pull request #93 from visdesignlab/client-dev
Add client-side graph search.
2 parents c8acd1f + 3aa54f6 commit 8d8845d

40 files changed

+805946
-190238
lines changed

.eslintrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"browser": true,
77
"jasmine": true
88
},
9-
"ecmaFeatures": {
10-
"modules": true
11-
},
129
"globals": {
1310
"angular": true,
1411
"module": true,
1512
"inject": true
13+
},
14+
"parserOptions": {
15+
"sourceType": "module"
1616
}
1717
}

bower.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "connectivityMatrixJs",
2+
"name": "graffinity",
33
"version": "0.0.0",
44
"dependencies": {
55
"angular-animate": "~1.5.5",
@@ -27,15 +27,16 @@
2727
"angular-bootstrap": "^2.1.3",
2828
"ng-tags-input": "^3.1.1",
2929
"angular-ui-select": "^0.19.4",
30-
"file-saver": "^1.3.3"
30+
"file-saver": "FileSaver#1.3.4"
3131
},
3232
"devDependencies": {
33-
"angular-mocks": "~1.4.2"
33+
"angular-mocks": "~1.5.5"
3434
},
3535
"overrides": {
3636
"bootstrap": {
3737
"main": [
3838
"dist/css/bootstrap.css",
39+
"dist/js/bootstrap.min.js",
3940
"dist/fonts/glyphicons-halflings-regular.eot",
4041
"dist/fonts/glyphicons-halflings-regular.svg",
4142
"dist/fonts/glyphicons-halflings-regular.ttf",
@@ -44,7 +45,14 @@
4445
]
4546
},
4647
"fontawesome": {
47-
"main": "css/font-awesome.css"
48+
"main": [
49+
"css/font-awesome.css",
50+
"fonts/fontawesome-webfont.eot",
51+
"fonts/fontawesome-webfont.svg",
52+
"fonts/fontawesome-webfont.ttf",
53+
"fonts/fontawesome-webfont.woff",
54+
"fonts/fontawesome-webfont.woff2"
55+
]
4856
},
4957
"ng-tags-input": {
5058
"main": [

gulp/build.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ gulp.task('other', function () {
8282
});
8383

8484
return gulp.src([
85-
path.join(conf.paths.src, '/**/*'),
86-
path.join('!' + conf.paths.src, '/**/*.{html,css,js}')
85+
path.join(conf.paths.src, '/**/*.json'),
86+
path.join(conf.paths.src, '/**/ext/*.js')
8787
])
8888
.pipe(fileFilter)
8989
.pipe(gulp.dest(path.join(conf.paths.dist, '/')));

gulpfile.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
var gulp = require('gulp');
1010
var wrench = require('wrench');
11+
const ghPages = require('gulp-gh-pages');
1112

1213
/**
1314
* This will load all js or coffee files in the gulp directory
@@ -27,3 +28,11 @@ wrench.readdirSyncRecursive('./gulp').filter(function(file) {
2728
gulp.task('default', ['clean'], function () {
2829
gulp.start('build');
2930
});
31+
32+
/**
33+
* Push to branch gh-pages.
34+
*/
35+
gulp.task('deploy', function() {
36+
return gulp.src('./dist/**/*')
37+
.pipe(ghPages());
38+
});

0 commit comments

Comments
 (0)