-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bootstrap Plugin #99
Bootstrap Plugin #99
Conversation
@@ -8,6 +8,6 @@ if (!has.exists('build-time-render')) { | |||
|
|||
if (globals.default.__public_path__) { | |||
// @ts-ignore | |||
__webpack_public_path__ = `${window.location.origin}${globals.default.__public_path__}`; | |||
__webpack_public_path__ = window.location.origin + globals.default.__public_path__; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sneaky
Codecov Report
@@ Coverage Diff @@
## master #99 +/- ##
==========================================
- Coverage 85.49% 84.73% -0.76%
==========================================
Files 33 35 +2
Lines 1275 1336 +61
Branches 356 364 +8
==========================================
+ Hits 1090 1132 +42
- Misses 185 204 +19
Continue to review full report at Codecov.
|
Type: feature
The following has been addressed in the PR:
prettier
as per the readme code style guidelinesDescription:
Description:
Adds
BootstrapPlugin
that provides abootstrap.js
file to be used as an application entry point. Thebootstrap.js
performs runtime checks to determine if shims from@dojo/framework
need to be loaded. Thebootstrap.js
will only load shims that are being used within the application.Related to dojo/framework#183