Skip to content

Commit

Permalink
run update
Browse files Browse the repository at this point in the history
  • Loading branch information
jonschlinkert committed Feb 22, 2015
1 parent 38eb2c3 commit 86bab4d
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 22 deletions.
11 changes: 10 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
*.* text eol=lf
# Enforce Unix newlines
* text eol=lf

# binaries
*.ai binary
*.psd binary
*.jpg binary
*.gif binary
*.png binary
*.jpeg binary
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.DS_Store
*.DS_store
*.sublime-*
_gh_pages
Expand Down
9 changes: 5 additions & 4 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{
"asi": false,
"boss": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"esnext": true,
"immed": true,
"latedef": true,
"latedef": false,
"laxcomma": false,
"mocha": true,
"newcap": true,
"noarg": true,
"node": true,
"sub": true,
"undef": "var",
"unused": true,
"mocha": true
"undef": true,
"unused": true
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 Jon Schlinkert
Copyright (c) 2015, Jon Schlinkert.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ Released under the MIT license

***

_This file was generated by [verb](https://github.com/assemble/verb) on February 15, 2015._
_This file was generated by [verb](https://github.com/assemble/verb) on February 21, 2015._

[assemble]: https://github.com/assemble/assemble
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*!
* helper-resolve <https://github.com/jonschlinkert/helper-resolve>
*
* Copyright (c) 2015 Jon Schlinkert.
* Licensed under the MIT license.
* Copyright (c) 2015, Jon Schlinkert.
* Licensed under the MIT License.
*/

'use strict';
Expand Down
14 changes: 4 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,11 @@
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"repository": {
"type": "git",
"url": "git://github.com/jonschlinkert/helper-resolve.git"
},
"repository": "jonschlinkert/helper-resolve",
"bugs": {
"url": "https://github.com/jonschlinkert/helper-resolve/issues"
},
"license": {
"type": "MIT",
"url": "https://github.com/jonschlinkert/helper-resolve/blob/master/LICENSE"
},
"license": "MIT",
"files": [
"index.js"
],
Expand All @@ -29,16 +23,16 @@
"test": "mocha"
},
"dependencies": {
"lodash": "^3.2.0",
"resolve": "^1.1.0"
},
"devDependencies": {
"handlebars": "^3.0.0",
"jquery": "^2.1.3",
"lodash": "^3.2.0",
"mocha": "*",
"resolve": "^1.1.0",
"should": "*",
"template": "^0.9.3"
},
"keywords": []
}
}
6 changes: 3 additions & 3 deletions test.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/*!
* helper-resolve <https://github.com/jonschlinkert/helper-resolve>
*
* Copyright (c) 2015 Jon Schlinkert.
* Licensed under the MIT license.
* Copyright (c) 2015, Jon Schlinkert.
* Licensed under the MIT License.
*/

'use strict';

var path = require('path');
var should = require('should');
require('should');
var handlebars = require('handlebars');
var Template = require('template');
var template = new Template();
Expand Down

0 comments on commit 86bab4d

Please sign in to comment.