Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 1095319

Browse files
committed
Install icekit's bower deps into icekit itself - re #286
1 parent 8ae0e65 commit 1095319

File tree

4 files changed

+25
-9
lines changed

4 files changed

+25
-9
lines changed

icekit/.bowerrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory" : "static/icekit/bower_components"
3+
}

icekit/bin/setup-django.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,12 @@ fi
2626
# Install Node modules.
2727
waitlock.sh npm-install.sh "$ICEKIT_PROJECT_DIR"
2828

29-
# Install Bower components.
29+
# Install Bower components for the project.
3030
waitlock.sh bower-install.sh "$ICEKIT_PROJECT_DIR"
3131

32+
# Install Bower components for icekit.
33+
waitlock.sh bower-install.sh "$ICEKIT_DIR"
34+
3235
# Install Python requirements.
3336
waitlock.sh pip-install.sh "$ICEKIT_PROJECT_DIR"
3437

icekit/bower.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "icekit",
3+
"dependencies": {
4+
"alloyeditor": "^1.2.3",
5+
"bootstrap": "^3.3.7",
6+
"eonasdan-bootstrap-datetimepicker": "^4.17.47",
7+
"font-awesome": "^4.6.3",
8+
"jquery": "^3.1.0",
9+
"lodash": "^4.14.2",
10+
"jquery-ui": "^1.11.4",
11+
"fullcalendar": "^3.0.1",
12+
"iframe-resizer": "^2.8.7",
13+
"skveege-rrule": "^2.1.3",
14+
"js-cookie": "^2.1.3"
15+
},
16+
"private": true
17+
}

project_template/bower.json

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
11
{
22
"name": "project_template",
33
"dependencies": {
4-
"alloyeditor": "^1.2.3",
54
"bootstrap": "^3.3.7",
6-
"eonasdan-bootstrap-datetimepicker": "^4.17.47",
75
"font-awesome": "^4.6.3",
86
"jquery": "^3.1.0",
9-
"lodash": "^4.14.2",
10-
"jquery-ui": "~1.11.4",
11-
"fullcalendar": "^3.0.1",
12-
"iframe-resizer": "~2.8.7",
13-
"skveege-rrule": "~2.1.3",
14-
"js-cookie": "^2.1.3"
7+
"lodash": "^4.14.2"
158
},
169
"private": true
1710
}

0 commit comments

Comments
 (0)