I use the jspm bundle command to merge all my third-party libraries.
jspm bundle app.js - [**/*] ./scripts/bundles/vendor.js --inject --minify
The package is created as expected.
For some reason, when using the package, my HTML stops loading, and I have no idea why.
In my configuration file, I configured all HTML files to be loaded using a text plugin
meta: {"*.html": {loader: "text"}}
When using the option depcache(without a kit) or removing a package from the configuration file, everything works fine.
A text plugin is also included.
I am using jspm v0.16.45
source
share