From c68b434eb438394d1b069e38ba9d582c8d1fd28f Mon Sep 17 00:00:00 2001 From: Robert Reinhard Date: Mon, 17 Mar 2014 17:15:15 -0700 Subject: [PATCH 1/2] Adding a bower.json file The goal is to reduce the number of files downloaded by ignoring the test directory --- CHANGES | 4 ++++ bower.json | 21 +++++++++++++++++++++ mustache.js.nuspec | 2 +- package.json | 2 +- 4 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 bower.json diff --git a/CHANGES b/CHANGES index c3546e0..dfdec93 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ += 0.8.2 / 17 Mar 2014 + + * Supporting Bower through a bower.json file. + = 0.8.1 / 3 Jan 2014 * Fix usage of partial templates. diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..c3af7d8 --- /dev/null +++ b/bower.json @@ -0,0 +1,21 @@ +{ + "name": "Mustache.js", + "main": "mustache.js", + "version": "0.8.2", + "homepage": "https://github.com/janl/mustache.js", + "authors": [ + "mustache.js Authors " + ], + "description": "Logic-less {{mustache}} templates with JavaScript", + "keywords": ["mustache", "template", "templates", "ejs"], + "moduleType": [ + "amd", + "globals", + "node" + ], + "license": "MIT", + "ignore": [ + "**/.*", + "test" + ] +} diff --git a/mustache.js.nuspec b/mustache.js.nuspec index ae499a6..7a47994 100644 --- a/mustache.js.nuspec +++ b/mustache.js.nuspec @@ -2,7 +2,7 @@ mustache.js - 0.8.1 + 0.8.2 mustache.js Authors https://github.com/janl/mustache.js/blob/master/LICENSE http://mustache.github.com/ diff --git a/package.json b/package.json index 105bbe7..850e2ba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mustache", - "version": "0.8.1", + "version": "0.8.2", "description": "Logic-less {{mustache}} templates with JavaScript", "author": "mustache.js Authors ", "repository": { From 3946a87ec70e37c5e53ae84e1aa788b0d8a90e47 Mon Sep 17 00:00:00 2001 From: Robert Reinhard Date: Thu, 20 Mar 2014 10:01:32 -0700 Subject: [PATCH 2/2] Lowercasing the package name Oops --- bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bower.json b/bower.json index c3af7d8..e8c9b11 100644 --- a/bower.json +++ b/bower.json @@ -1,5 +1,5 @@ { - "name": "Mustache.js", + "name": "mustache.js", "main": "mustache.js", "version": "0.8.2", "homepage": "https://github.com/janl/mustache.js",