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

Commit

Permalink
Install icekit's bower deps into icekit itself - re #286
Browse files Browse the repository at this point in the history
  • Loading branch information
markfinger committed Oct 31, 2017
1 parent 8ae0e65 commit 1095319
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 9 deletions.
3 changes: 3 additions & 0 deletions icekit/.bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory" : "static/icekit/bower_components"
}
5 changes: 4 additions & 1 deletion icekit/bin/setup-django.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ fi
# Install Node modules.
waitlock.sh npm-install.sh "$ICEKIT_PROJECT_DIR"

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

# Install Bower components for icekit.
waitlock.sh bower-install.sh "$ICEKIT_DIR"

# Install Python requirements.
waitlock.sh pip-install.sh "$ICEKIT_PROJECT_DIR"

Expand Down
17 changes: 17 additions & 0 deletions icekit/bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "icekit",
"dependencies": {
"alloyeditor": "^1.2.3",
"bootstrap": "^3.3.7",
"eonasdan-bootstrap-datetimepicker": "^4.17.47",
"font-awesome": "^4.6.3",
"jquery": "^3.1.0",
"lodash": "^4.14.2",
"jquery-ui": "^1.11.4",
"fullcalendar": "^3.0.1",
"iframe-resizer": "^2.8.7",
"skveege-rrule": "^2.1.3",
"js-cookie": "^2.1.3"
},
"private": true
}
9 changes: 1 addition & 8 deletions project_template/bower.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
{
"name": "project_template",
"dependencies": {
"alloyeditor": "^1.2.3",
"bootstrap": "^3.3.7",
"eonasdan-bootstrap-datetimepicker": "^4.17.47",
"font-awesome": "^4.6.3",
"jquery": "^3.1.0",
"lodash": "^4.14.2",
"jquery-ui": "~1.11.4",
"fullcalendar": "^3.0.1",
"iframe-resizer": "~2.8.7",
"skveege-rrule": "~2.1.3",
"js-cookie": "^2.1.3"
"lodash": "^4.14.2"
},
"private": true
}

0 comments on commit 1095319

Please sign in to comment.