Skip to content

Commit

Permalink
updated dependendcies
Browse files Browse the repository at this point in the history
  • Loading branch information
atruskie committed Jul 3, 2014
1 parent 15d7ffb commit efcf310
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
10 changes: 6 additions & 4 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -526,11 +526,13 @@ module.exports = function (grunt) {
options: {
hostname: '*',
port: 8080,
base: '<%= build_dir %>',
base: './<%= build_dir %>',
debug: true,
livereload: true,
//keepalive: true,
middleware: function (connect, options) {

grunt.log.writeln(options.base);

return [
modRewrite([

Expand All @@ -557,10 +559,10 @@ module.exports = function (grunt) {
]),
// this specifies that the build_dir, ('build') is a static directory where content
// will be served from.
connect.static(options.base),
connect.static(options.base[0]),

// for source maps
connect.static(__dirname)
//connect.static(__dirname)
];
}
}
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"hint.css": "https://github.com/chinchang/hint.css.git",
"modernizr": "~2.8.x",
"jquery-ui": "~1.10.3",
"momentjs": "~2.6.x",
"momentjs": "~2.7.x",
"jasmine-matchers": "https://github.com/JamieMason/Jasmine-Matchers.git#develop",
"objectdiff": "https://github.com/NV/objectDiff.js.git",
"lodash": "~2.4.x",
Expand Down
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
"url": "https://github.com/QutBioacoustics/baw-client.git"
},
"//": [
"THE karma-chrome-launcher IS NEEDED TO LAUNCH CHROME PROPERLY ON WINDOWS. REMOVE WHEN PULL REQUEST COMPLETED https://github.com/karma-runner/karma-chrome-launcher",
"to install specific version of karma: npm i -g [email protected]"
"THE karma-chrome-launcher IS NEEDED TO LAUNCH CHROME PROPERLY ON WINDOWS. REMOVE WHEN PULL REQUEST COMPLETED https://github.com/karma-runner/karma-chrome-launcher"
],
"devDependencies": {
"grunt": "~0.4.1",
Expand All @@ -23,17 +22,17 @@
"grunt-contrib-jshint": "0.10.x",
"grunt-contrib-concat": "~0.4.0",
"grunt-contrib-watch": "~0.6.x",
"grunt-contrib-uglify": "0.4.x",
"grunt-contrib-uglify": "0.5.x",
"grunt-karma": "~0.8.x",
"karma-chrome-launcher": "~0.1.1",
"grunt-ngmin": "0.0.3",
"grunt-html2js": "~0.2.3",
"grunt-conventional-changelog": "~1.1",
"grunt-changelog": "~0.2.x",
"grunt-bump": "0.0.14",
"grunt-contrib-connect": "0.7.x",
"connect-modrewrite": "~0.5.7",
"grunt-sass": "0.12.x",
"grunt-contrib-connect": "0.8.x",
"connect-modrewrite": "0.7.x",
"grunt-sass": "0.14.x",
"lodash": "~2.4.1",
"karma-phantomjs-launcher": "~0.1.1",
"karma-jasmine": "~0.2.x",
Expand Down

0 comments on commit efcf310

Please sign in to comment.