Fixed missing npm dependency

added missing urijs dependency

Change-Id: If3decfbb923b995ec1ee8eca55d949e383fa9644
This commit is contained in:
Sebastian Marcet 2018-06-18 10:42:20 -07:00
parent 037f2dbef0
commit fbae255e7d
5 changed files with 12423 additions and 2 deletions

2
.gitignore vendored
View File

@ -31,3 +31,5 @@ public/assets/css/index.css.map
public/assets/css/index.css
/public/assets/pwstrength-bootstrap/
/public/assets/sweetalert2/
/public/assets/urijs
/public/assets/uri.js

12417
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -48,6 +48,6 @@
"pwstrength-bootstrap": "^2.2.1",
"sweetalert2": "7.3.5",
"typeahead.js": "^0.11.1",
"uri.js": "^0.1.3"
"urijs": "^1.19.1"
}
}

View File

@ -40,6 +40,7 @@
{!! HTML::script('assets/typeahead/typeahead.bundle.js')!!}
{!! HTML::script('assets/bootstrap-tagsinput/bootstrap-tagsinput.js')!!}
{!! HTML::script('assets/sweetalert2/sweetalert2.js')!!}
{!! HTML::script('assets/urijs/URI.min.js')!!}
@yield('scripts')
<span class="version hidden">{!! Config::get('app.version') !!}</span>
</body>

View File

@ -37,7 +37,8 @@ var plugins = [
{from: './node_modules/jquery.cookie/jquery.cookie.js', to: 'jquery-cookie/jquery.cookie.js'},
{from: './node_modules/crypto-js/crypto-js.js', to: 'crypto-js/crypto-js.js'},
{from: './node_modules/pwstrength-bootstrap/dist', to: 'pwstrength-bootstrap'},
{from: './node_modules/sweetalert2/dist', to: 'sweetalert2'}
{from: './node_modules/sweetalert2/dist', to: 'sweetalert2'},
{from: './node_modules/urijs/src', to: 'urijs'},
],
{copyUnmodified: false}
),