Skip to content

Commit 4effda1

Browse files
Basic entities graph based on sample data visualization
1 parent 79164cd commit 4effda1

File tree

10 files changed

+16264
-13
lines changed

10 files changed

+16264
-13
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1-
# iKnow Entity Browser
1+
# iKnow Entity Browser<sup>[development]</sup>
22

33
A visualizer of iKnow entities.
44

5+
Preview
6+
-------
7+
8+
![Screenshot](https://cloud.githubusercontent.com/assets/4989256/20240678/2bc3c772-a927-11e6-84fb-01adc6b259df.png)
9+
510
Development
611
-----------
712

gulpfile.babel.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,16 @@ gulp.task("html", ["clean"], () => {
3333
.pipe(gulp.dest(BUILD_DIR + "/static"));
3434
});
3535

36+
gulp.task("etc", ["clean"], () => {
37+
return gulp.src([
38+
`${ SOURCE_DIR }/static/**/*.*`,
39+
`!${ SOURCE_DIR }/static/js/**/*.*`,
40+
`!${ SOURCE_DIR }/static/scss/**/*.*`,
41+
`!${ SOURCE_DIR }/static/index.html`
42+
])
43+
.pipe(gulp.dest(BUILD_DIR + "/static"));
44+
});
45+
3646
gulp.task("js", ["clean"], () => {
3747
return browserify(`${ SOURCE_DIR }/static/js/index.js`, { debug: true })
3848
.transform(to5ify)
@@ -50,4 +60,4 @@ gulp.task("css", ["clean"], () => {
5060
.pipe(gulp.dest(`${ BUILD_DIR }/static/css`));
5161
});
5262

53-
gulp.task("default", ["cls", "html", "js", "css"]);
63+
gulp.task("default", ["cls", "html", "js", "css", "etc"]);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iknow-entity-browser",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "Visualizer for iKnow entities",
55
"main": "gulpfile.babel.js",
66
"scripts": {

0 commit comments

Comments
 (0)