mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 11:36:45 +00:00
remove a ton of public/vendor git submodules, using CDN instead. The
reason we're removing the submodules (intead of keeping them around for offline development) is that derby does some watchfile magic on the public directory, and it causes a "max file limit" operating system error (mitigated by `ulimit -u 2048`). For offline developers, you may want to have some symlinks and a git stash handy
This commit is contained in:
parent
86f560f69b
commit
d737bd0714
8 changed files with 3 additions and 19 deletions
12
.gitmodules
vendored
12
.gitmodules
vendored
|
|
@ -1,18 +1,6 @@
|
|||
[submodule "public/vendor/bootstrap-datepicker"]
|
||||
path = public/vendor/bootstrap-datepicker
|
||||
url = https://github.com/eternicode/bootstrap-datepicker.git
|
||||
[submodule "public/vendor/bootstrap-growl"]
|
||||
path = public/vendor/bootstrap-growl
|
||||
url = https://github.com/ifightcrime/bootstrap-growl.git
|
||||
[submodule "public/vendor/bootstrap"]
|
||||
path = public/vendor/bootstrap
|
||||
url = https://github.com/twitter/bootstrap.git
|
||||
[submodule "public/vendor/github-buttons"]
|
||||
path = public/vendor/github-buttons
|
||||
url = https://github.com/mdo/github-buttons.git
|
||||
[submodule "public/vendor/jquery-cookie"]
|
||||
path = public/vendor/jquery-cookie
|
||||
url = https://github.com/carhartl/jquery-cookie.git
|
||||
[submodule "public/vendor/jquery-ui"]
|
||||
path = public/vendor/jquery-ui
|
||||
url = https://github.com/jquery/jquery-ui.git
|
||||
|
|
|
|||
1
public/vendor/bootstrap
vendored
1
public/vendor/bootstrap
vendored
|
|
@ -1 +0,0 @@
|
|||
Subproject commit eb24718add4dd36fe92fdbdb79e6ff4ce5919300
|
||||
1
public/vendor/bootstrap-datepicker
vendored
1
public/vendor/bootstrap-datepicker
vendored
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 3f12c74bcd5a0d6763951ce14450c8727b661bc9
|
||||
1
public/vendor/bootstrap-growl
vendored
1
public/vendor/bootstrap-growl
vendored
|
|
@ -1 +0,0 @@
|
|||
Subproject commit c033de329bb1b21e4175e2a53efd844b664d27c8
|
||||
1
public/vendor/jquery-cookie
vendored
1
public/vendor/jquery-cookie
vendored
|
|
@ -1 +0,0 @@
|
|||
Subproject commit cefb0c399960553edae76f91f9fc5470a1c3bc04
|
||||
|
|
@ -9,10 +9,8 @@
|
|||
@import "./alerts.styl";
|
||||
@import "./helpers.styl";
|
||||
@import "./responsive.styl";
|
||||
|
||||
@import "./scrollbars.styl";
|
||||
|
||||
@import "../../public/vendor/bootstrap-datepicker/css/datepicker.css";
|
||||
|
||||
// fix exploding to very wide for some reason
|
||||
.datepicker
|
||||
|
|
|
|||
|
|
@ -21,6 +21,8 @@
|
|||
<!-- CDN -->
|
||||
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.1/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.1/css/bootstrap-responsive.min.css" rel="stylesheet">
|
||||
<link href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.0.0/css/datepicker.css" rel="stylesheet">
|
||||
|
||||
|
||||
<Header:>
|
||||
<app:modals:modals />
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.1/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.1/css/bootstrap-responsive.min.css" rel="stylesheet">
|
||||
|
||||
<link href="/vendor/bootstrap/docs/assets/css/docs.css" rel="stylesheet">
|
||||
<link href="//twitter.github.com/bootstrap/assets/css/docs.css" rel="stylesheet">
|
||||
<link href="/css/static-pages.css" rel="stylesheet">
|
||||
<link href="/css/footer.css" rel="stylesheet">
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue