add package-ignorables for testing

This commit is contained in:
David DeSandro
2013-01-30 10:59:29 -05:00
parent d6cb0736d6
commit f026c6238d
8 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{
"name": "turtles",
"version": "0.0.1",
"dependencies": {},
"ignore": [
"test/",
"**/*.txt"
]
}

View File

@@ -0,0 +1 @@
Donatello

View File

@@ -0,0 +1,7 @@
/**
* after bower install, this packge should not have *.txt or test/
*/
(function () {
// heroes in a half shell
console.log('turtle power');
})();

View File

@@ -0,0 +1 @@
Leonardo

View File

@@ -0,0 +1 @@
April wears yellow.

View File

@@ -0,0 +1,4 @@
Leonardo
Donatello
Raphael
Michelangelo

View File

@@ -0,0 +1,3 @@
(function () {
return 'Shredder';
})();

View File

@@ -0,0 +1,3 @@
(function () {
return 'Splinter';
})();