Skip to content

Commit

Permalink
Basic entities graph based on sample data visualization
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitaeverywhere committed Nov 12, 2016
1 parent 79164cd commit 4effda1
Show file tree
Hide file tree
Showing 10 changed files with 16,264 additions and 13 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# iKnow Entity Browser
# iKnow Entity Browser<sup>[development]</sup>

A visualizer of iKnow entities.

Preview
-------

![Screenshot](https://cloud.githubusercontent.com/assets/4989256/20240678/2bc3c772-a927-11e6-84fb-01adc6b259df.png)

Development
-----------

Expand Down
12 changes: 11 additions & 1 deletion gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ gulp.task("html", ["clean"], () => {
.pipe(gulp.dest(BUILD_DIR + "/static"));
});

gulp.task("etc", ["clean"], () => {
return gulp.src([
`${ SOURCE_DIR }/static/**/*.*`,
`!${ SOURCE_DIR }/static/js/**/*.*`,
`!${ SOURCE_DIR }/static/scss/**/*.*`,
`!${ SOURCE_DIR }/static/index.html`
])
.pipe(gulp.dest(BUILD_DIR + "/static"));
});

gulp.task("js", ["clean"], () => {
return browserify(`${ SOURCE_DIR }/static/js/index.js`, { debug: true })
.transform(to5ify)
Expand All @@ -50,4 +60,4 @@ gulp.task("css", ["clean"], () => {
.pipe(gulp.dest(`${ BUILD_DIR }/static/css`));
});

gulp.task("default", ["cls", "html", "js", "css"]);
gulp.task("default", ["cls", "html", "js", "css", "etc"]);
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iknow-entity-browser",
"version": "0.0.1",
"version": "0.0.2",
"description": "Visualizer for iKnow entities",
"main": "gulpfile.babel.js",
"scripts": {
Expand Down
Loading

0 comments on commit 4effda1

Please sign in to comment.