Skip to content

Commit 474e8de

Browse files
committed
Add example manifests
1 parent 3e11f80 commit 474e8de

File tree

4 files changed

+47
-0
lines changed

4 files changed

+47
-0
lines changed

examples/Bootstrap.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"source": "twbs/bootstrap/dist",
3+
"destination": "vendor/bootstrap",
4+
"resources": [
5+
{
6+
"source": "css"
7+
},
8+
{
9+
"source": "js"
10+
}
11+
]
12+
}

examples/Dropzone.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"source": "enyo/dropzone/dist",
3+
"destination": "vendor/dropzone",
4+
"resources": [
5+
{
6+
"source": ".",
7+
"recursive": true,
8+
"flatten": true
9+
}
10+
]
11+
}

examples/FontAwesome.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"source": "fortawesome/font-awesome",
3+
"destination": "vendor/font-awesome",
4+
"resources": [
5+
{
6+
"source": "css",
7+
"destination": "css"
8+
},
9+
{
10+
"source": "webfonts",
11+
"destination": "webfonts"
12+
}
13+
]
14+
}

examples/JQuery.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"source": "components/jquery",
3+
"destination": "vendor/jquery",
4+
"resources": [
5+
{
6+
"source": ".",
7+
"filter": "#^jquery.+#"
8+
}
9+
]
10+
}

0 commit comments

Comments
 (0)