Skip to content

Commit

Permalink
Merge pull request #5 from stratease/4_add_package_files
Browse files Browse the repository at this point in the history
4 add package files
  • Loading branch information
stratease committed Jul 3, 2015
2 parents 3817e41 + db8707d commit f6dd694
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
21 changes: 21 additions & 0 deletions package.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
var miniExcludeMids = {
'dGrowl/LICENSE.md': 1,
'dGrowl/README.md': 1,
'dGrowl/package': 1
};

var profile = {
resourceTags: {
test: function (filename) {
return /\/test\//.test(filename);
},

miniExclude: function (filename, mid) {
return /\/test\//.test(filename) || mid in miniExcludeMids;
},

amd: function (filename) {
return (/\.js$/).test(filename);
}
}
};
20 changes: 20 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "dGrowl",
"author": "Eddie Daniels <stratease@gmail.com>",
"version": "0.1.2",
"description": "A simple, extensible \"growl\" like notification widget using the dojo js framework.",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"repository": {
"type": "git",
"url": "https://github.com/stratease/dGrowl"
},
"directories": {
"lib": "."
},
"dojoBuild": "package.js"
}

0 comments on commit f6dd694

Please sign in to comment.