Skip to content

Commit

Permalink
Merge pull request #7 from posva/update
Browse files Browse the repository at this point in the history
Updated requirejs compatibility
  • Loading branch information
Gozala committed Nov 2, 2014
2 parents 0e4e039 + 9b60e1d commit fe82805
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: node_js
node_js:
- 0.4
- 0.5
- 0.6
- 0.8
- 0.10
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"name": "selfish",
"id": "selfish",
"version": "0.3.2",
"version": "0.3.3",
"description": "Class-free, pure prototypal inheritance",
"keywords": [ "oop", "inheritance", "prototype", "class", "micro", "class-free" ],
"author": "Irakli Gozalishvili <[email protected]> (http://jeditoolkit.com)",
"contributors": [
"Eduardo San Martin Morote <[email protected]> (http://posva.net)"
],
"homepage": "https://github.com/Gozala/selfish",
"repository": {
"type": "git",
Expand All @@ -19,7 +22,7 @@
},
"main": "./selfish.js",
"engines": {
"node": ">=0.4.0"
"node": ">=0.6.0"
},
"scripts": {
"test": "node tests/test-selfish.js"
Expand Down
2 changes: 1 addition & 1 deletion selfish.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
forin: true latedef: false supernew: true */
/*global define: true */

!(typeof define !== "function" ? function($){ $(null, typeof exports !== 'undefined' ? exports : window); } : define)(function(require, exports) {
!(typeof define !== "function" ? function(_, $){ $(null, typeof exports !== 'undefined' ? exports : window); } : define)('selfish', function(require, exports) {

"use strict";

Expand Down

0 comments on commit fe82805

Please sign in to comment.