Skip to content
This repository has been archived by the owner on Apr 16, 2019. It is now read-only.

Commit

Permalink
Add AMD support
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrsmk committed Jan 8, 2014
1 parent 04318bb commit ece98e7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.markdown
@@ -1,4 +1,4 @@
nut 0.3.0
nut 0.3.1
=========

Nut is a concise query selector engine that just allows you to do extremely simple queries.
Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "pyrsmk/nut",
"version": "0.3.0",
"version": "0.3.1",
"main": "src/nut.js",
"description": "The concise CSS selector engine",
"license": "MIT",
Expand Down
1 change: 0 additions & 1 deletion nut-0.3.0.min.js

This file was deleted.

1 change: 1 addition & 0 deletions nut-0.3.1.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions src/nut.js
@@ -1,14 +1,17 @@
/*
nut, the concise CSS selector engine
Version : 0.3.0
Version : 0.3.1
Author : Aurélien Delogu (dev@dreamysource.fr)
Homepage : https://github.com/pyrsmk/nut
License : MIT
*/

(function(def){
if(typeof module!='undefined'){
if(typeof define=='function'){
define(def);
}
else if(typeof module!='undefined'){
module.exports=def;
}
else{
Expand Down

0 comments on commit ece98e7

Please sign in to comment.