Skip to content

Commit

Permalink
Moved to version v0.1.2-alpha.
Browse files Browse the repository at this point in the history
Added creatartis-base dependency.
  • Loading branch information
LeonardoVal committed Apr 30, 2014
1 parent 055517b commit 25057fb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
7 changes: 4 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ module.exports = function(grunt) {
"creatartis-base": "git://github.com/LeonardoVal/creatartis-base.git"
},
"devDependencies": {
"jquery": "~2.0.3"
"jquery": "~2.0.3",
//"dygraphs": "~1.0.1" // Dygraphs bower package does not have the combined library.
}
};
// Copy package.json members to bower.json.
Expand All @@ -122,8 +123,8 @@ module.exports = function(grunt) {

// Register tasks. /////////////////////////////////////////////////////////////
grunt.registerTask('compile', ['concat_sourcemap:build', 'uglify:build']);
grunt.registerTask('build', ['concat_sourcemap:build', 'karma:build',
'uglify:build', 'docker:build']);
grunt.registerTask('build', ['concat_sourcemap:build',
'karma:build', 'uglify:build', 'docker:build']);
grunt.registerTask('default', ['build']);
grunt.registerTask('test', ['concat_sourcemap:build', 'karma:build',
'karma:chrome', 'karma:firefox', 'karma:opera', 'karma:iexplore']);
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"name": "inveniemus",
"description": "A search and optimization library, focusing on metaheuristics.",
"version": "0.1.1",
"version": "0.1.2",
"keywords": [
"search",
"optimization",
Expand Down
2 changes: 1 addition & 1 deletion build/inveniemus.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"search", "optimization", "metaheuristic", "hill climbing",
"evolutionary computing", "genetic algorithm"
],
"version": "0.1.1",
"version": "0.1.2",
"author": {
"name": "Leonardo Val",
"email": "[email protected]>"
Expand All @@ -27,7 +27,9 @@
},
"main": "build/inveniemus.min.js",
"files": [ "build" ],
"dependencies": {},
"dependencies": {
"creatartis-base": "git://github.com/LeonardoVal/creatartis-base.git"
},
"devDependencies": {
"requirejs": "~2.1.9",
"grunt": "~0.4.4",
Expand Down

0 comments on commit 25057fb

Please sign in to comment.