Skip to content

Commit

Permalink
updated embeddings
Browse files Browse the repository at this point in the history
  • Loading branch information
sonjageorgievska committed Feb 15, 2017
1 parent 3eaebcc commit 202325b
Show file tree
Hide file tree
Showing 12 changed files with 85 additions and 9 deletions.
71 changes: 71 additions & 0 deletions Gruntfile.js~
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
module.exports = function (grunt) {
"use strict";

var SRC_FILES = "src_graphosaurus/**/*.js";

// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
jsdoc: {
dist: {
src: [SRC_FILES],
options: {
destination: "doc",
}
}
},
clean: ["doc/"],
jshint: {
all: ["Gruntfile.js", SRC_FILES],
options: {
browser: true,
curly: true,
eqeqeq: true,
forin: true,
globals: {
define: true,
module: true,
require: true,
THREE: true,
},
indent: 4,
noarg: true,
strict: true,
trailing: true,
undef: true,
unused: true,
}
},
browserify: {
graphosaurus: {
src: ["src_graphosaurus/**/*.js"],
dest: "dist/graphosaurus.js",
}
},
uglify: {
dist: {
files: {
"dist/graphosaurus.min.js": "dist/graphosaurus.js"
}
}
},
watch: {
files: ["Gruntfile.js", SRC_FILES],
tasks: "default",
}
});

// Load plugins
grunt.loadNpmTasks("grunt-contrib-clean");
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks("grunt-contrib-uglify");
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-browserify");
grunt.loadNpmTasks("grunt-jsdoc");

// Tasks
grunt.registerTask("default", ["compile", "doc"]);

grunt.registerTask("compile", ["jshint", "browserify", "uglify"]);
grunt.registerTask("doc", ["clean", "jsdoc"]);
};
1 change: 1 addition & 0 deletions data/canon2d_pce.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion data/data.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions data/data1.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions data/fuji2D_ncc.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions data/fuji2d_pce.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion doc/Edge.html
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Edge.html
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.2</a> on Wed Jan 04 2017 13:19:45 GMT+0100 (W. Europe Standard Time)
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.2</a> on Thu Feb 09 2017 11:59:30 GMT+0100 (W. Europe Standard Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion doc/Graph.html
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Edge.html
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.2</a> on Wed Jan 04 2017 13:19:45 GMT+0100 (W. Europe Standard Time)
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.2</a> on Thu Feb 09 2017 11:59:30 GMT+0100 (W. Europe Standard Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion doc/edge.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Edge.html
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.2</a> on Wed Jan 04 2017 13:19:45 GMT+0100 (W. Europe Standard Time)
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.2</a> on Thu Feb 09 2017 11:59:30 GMT+0100 (W. Europe Standard Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion doc/graph.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Edge.html
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.2</a> on Wed Jan 04 2017 13:19:45 GMT+0100 (W. Europe Standard Time)
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.2</a> on Thu Feb 09 2017 11:59:30 GMT+0100 (W. Europe Standard Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Edge.html
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.2</a> on Wed Jan 04 2017 13:19:45 GMT+0100 (W. Europe Standard Time)
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.2</a> on Thu Feb 09 2017 11:59:30 GMT+0100 (W. Europe Standard Time)
</footer>

<script> prettyPrint(); </script>
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dive",
"version": "0.1.1",
"description": "A 3d data visualization",
"description": "A 3d data visualization",
"author": "Sonja Georgievska",
"license": "Creative Commons Attribution-NoDerivatives",
"bugs": {
Expand All @@ -17,10 +17,11 @@
"devDependencies": {
"grunt": "~0.4.5",
"grunt-browserify": "~3.8.0",
"grunt-jsdoc": "~0.6.7",
"grunt-codacy": "^1.1.0",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-jshint": "~0.11.2",
"grunt-contrib-uglify": "~0.9.1",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-uglify": "~0.9.1"
"grunt-jsdoc": "~0.6.7"
}
}

0 comments on commit 202325b

Please sign in to comment.