From 28321b129b4aeb11908f190c8b6e47733fd8fe5e Mon Sep 17 00:00:00 2001 From: Dustin K Date: Sun, 2 Aug 2015 15:52:53 +0200 Subject: [PATCH] Changed some dependencies to SemVer 2.0(?) versioning syntax to update to the latest build of the newest version (e.g: "bower": "1.x") and fix 'bower install' errors (on Windows 7) --- bower.json | 14 ++++++------ package.json | 62 ++++++++++++++++++++++++++-------------------------- 2 files changed, 38 insertions(+), 38 deletions(-) diff --git a/bower.json b/bower.json index c4e8c37..0fcabc3 100644 --- a/bower.json +++ b/bower.json @@ -1,9 +1,9 @@ { - "name": "fireshell", - "version": "1.0.0", - "dependencies": { - "modernizr": "~2.6.2", - "jquery": "~1.10.2", - "normalize-css": "~2.1.3" - } + "name": "fireshell", + "version": "1.0.0", + "dependencies": { + "modernizr": "~2.6.2", + "jquery": "~1.10.2", + "normalize-css": "3.x" + } } diff --git a/package.json b/package.json index cefcf06..33a496d 100644 --- a/package.json +++ b/package.json @@ -1,33 +1,33 @@ { - "name": "fireshell", - "title": "Fiercely quick and opinionated front-ends", - "url": "http://getfireshell.com", - "author": "Todd Motto", - "copyright": "2013", - "version": "1.1.0", - "license": "MIT", - "repository": { - "type": "git", - "url": "http://github.com/toddmotto/fireshell.git" - }, - "devDependencies": { - "bower": "~1.2.6", - "grunt": "~0.4.1", - "grunt-contrib-concat": "~0.3.0", - "grunt-contrib-sass": "~0.5.0", - "grunt-contrib-uglify": "~0.2.0", - "grunt-contrib-connect": "~0.3.0", - "grunt-contrib-jshint": "~0.4.3", - "grunt-contrib-watch": "~0.4.4", - "grunt-bower": "~0.7.0", - "grunt-autoprefixer": "~0.3.0", - "grunt-contrib-cssmin": "~0.6.2", - "grunt-contrib-clean": "~0.5.0", - "connect-livereload": "~0.2.0", - "grunt-open": "~0.2.0", - "matchdep": "~0.1.2" - }, - "scripts": { - "postinstall" : "node_modules/.bin/bower install" - } + "name": "fireshell", + "title": "Fiercely quick and opinionated front-ends", + "url": "http://getfireshell.com", + "author": "Todd Motto", + "copyright": "2013", + "version": "1.1.0", + "license": "MIT", + "repository": { + "type": "git", + "url": "http://github.com/toddmotto/fireshell.git" + }, + "devDependencies": { + "bower": "1.x", + "grunt": "0.x", + "grunt-contrib-concat": "~0.3.0", + "grunt-contrib-sass": "~0.5.0", + "grunt-contrib-uglify": "~0.2.0", + "grunt-contrib-connect": "~0.3.0", + "grunt-contrib-jshint": "~0.4.3", + "grunt-contrib-watch": "~0.4.4", + "grunt-bower": "0.x", + "grunt-autoprefixer": "~0.3.0", + "grunt-contrib-cssmin": "~0.6.2", + "grunt-contrib-clean": "~0.5.0", + "connect-livereload": "~0.2.0", + "grunt-open": "~0.2.0", + "matchdep": "~0.1.2" + }, + "scripts": { + "postinstall" : "node_modules/.bin/bower install" + } }