mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
Fix bower name, update bower dependencies, and use unminified versions of libraries where they appear to be equivalent
This commit is contained in:
parent
95ace0f897
commit
3d4fa3761d
2 changed files with 11 additions and 11 deletions
12
bower.json
12
bower.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "Hypothetical Template",
|
||||
"name": "hypothetical-template",
|
||||
"version": "1.0.0",
|
||||
"authors": [
|
||||
"Kevin MacMartin <prurigro@gmail.com>"
|
||||
|
@ -8,12 +8,12 @@
|
|||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"jquery": "~2.2.4",
|
||||
"bootstrap": "^3.3.6",
|
||||
"font-awesome": "~4.5.0",
|
||||
"awesome-bootstrap-checkbox": "~0.3.5",
|
||||
"bootstrap": "^3.3.7",
|
||||
"fontawesome": "~4.6.3",
|
||||
"awesome-bootstrap-checkbox": "~0.3.7",
|
||||
"Sortable": "~1.4.2",
|
||||
"simplemde": "~1.9.0",
|
||||
"datetimepicker": "~2.5.1",
|
||||
"simplemde": "~1.11.2",
|
||||
"datetimepicker": "~2.5.4",
|
||||
"SpinKit": "~1.2.5",
|
||||
"jQuery.stickyFooter": "https://github.com/miWebb/jQuery.stickyFooter.git#~1.2.3"
|
||||
}
|
||||
|
|
10
gulpfile.js
10
gulpfile.js
|
@ -33,8 +33,8 @@ const jsPublic = [
|
|||
|
||||
// javascript libraries for the public site
|
||||
const jsPublicLibs = [
|
||||
"bower_components/jquery/dist/jquery.min.js",
|
||||
"bower_components/bootstrap/dist/js/bootstrap.min.js",
|
||||
"bower_components/jquery/dist/jquery.js",
|
||||
"bower_components/bootstrap/dist/js/bootstrap.js",
|
||||
"bower_components/jQuery.stickyFooter/assets/js/jquery.stickyfooter.js"
|
||||
];
|
||||
|
||||
|
@ -45,10 +45,10 @@ const jsDashboard = [
|
|||
|
||||
// javascript libraries for the dashboard
|
||||
const jsDashboardLibs = [
|
||||
"bower_components/jquery/dist/jquery.min.js",
|
||||
"bower_components/bootstrap/dist/js/bootstrap.min.js",
|
||||
"bower_components/jquery/dist/jquery.js",
|
||||
"bower_components/bootstrap/dist/js/bootstrap.js",
|
||||
"bower_components/Sortable/Sortable.js",
|
||||
"bower_components/datetimepicker/build/jquery.datetimepicker.full.min.js",
|
||||
"bower_components/datetimepicker/build/jquery.datetimepicker.full.js",
|
||||
"bower_components/simplemde/dist/simplemde.min.js"
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue