Skip to content

Commit

Permalink
Update to new versioning strategy -> v0.3.0 (+ minor tooling improvem…
Browse files Browse the repository at this point in the history
…ents)
  • Loading branch information
IjzerenHein committed May 3, 2015
1 parent 9e3c2f0 commit 4df7aa5
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"consistent-this": 2,
"no-constant-condition": 1,
"no-underscore-dangle": 0,
"no-use-before-define": 1,
"no-use-before-define": 0,
"func-names": 0,
"func-style": [2, "declaration"],
"new-cap": 1,
Expand Down
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
eslint: {
target: ['src/*.js'],
target: ['RefreshLoader.js'],
options: {
config: '.eslintrc'
}
},
jscs: {
src: ['src/*.js'],
src: ['RefreshLoader.js'],
options: {
config: '.jscsrc'
}
Expand Down
3 changes: 0 additions & 3 deletions RefreshLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
* @copyright Gloey Apps, 2014
*/

/*global define*/
/*eslint no-use-before-define:0*/

/**
* @module
*/
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "famous-refresh-loader",
"version": "0.0.3",
"version": "0.3.0",
"homepage": "https://github.com/IjzerenHein/famous-refresh-loader",
"repository": {
"type": "git",
Expand Down
20 changes: 7 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
{
"name": "famous-refresh-loader",
"version": "0.0.3",
"version": "0.3.0",
"homepage": "https://github.com/IjzerenHein/famous-refresh-loader",
"repository": {
"type": "git",
"url": "git://github.com/IjzerenHein/famous-refresh-loader.git"
},
"browserify": {
"transform": [
"deamdify",
"famousify",
"brfs"
]
},
"author": {
"name": "Hein Rutjes <hrutjes@gmail.com>"
},
Expand Down Expand Up @@ -42,16 +35,17 @@
"node": ">= 0.10.0"
},
"devDependencies": {
"brfs": "latest",
"browserify": "latest",
"deamdify": "latest",
"famousify": "latest",
"grunt": "latest",
"grunt-eslint": "latest",
"grunt-jscs": "latest"
},
"files": [
"RefreshLoader.js",
"LICENSE"
]
],
"browserify": {
"transform": [
"deamdify"
]
}
}

0 comments on commit 4df7aa5

Please sign in to comment.