From 6ad8b48deb813e5d3848c1634896997151c6e3e3 Mon Sep 17 00:00:00 2001 From: Vanderhaegen Cedrik Date: Thu, 2 Jul 2015 11:20:38 +0200 Subject: [PATCH 1/2] add package.js --- package.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 package.js diff --git a/package.js b/package.js new file mode 100644 index 0000000..b72d4de --- /dev/null +++ b/package.js @@ -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); + } + } +}; \ No newline at end of file From db8707dc428593add1d1ac295af4c72f5d40eead Mon Sep 17 00:00:00 2001 From: Vanderhaegen Cedrik Date: Thu, 2 Jul 2015 11:20:48 +0200 Subject: [PATCH 2/2] add package.json --- package.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..ec18fc6 --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "dGrowl", + "author": "Eddie Daniels ", + "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" +} \ No newline at end of file