django-systemjs icon indicating copy to clipboard operation
django-systemjs copied to clipboard

Results 5 django-systemjs issues
Sort by recently updated
recently updated
newest added

This comes from the following lines in management/commands/systemjs_bundle.py: ``` self.storage = copy(staticfiles_storage) self.storage.systemjs_bundling = True # set flag to check later ``` I'm a pretty good python programmer but I'm...

bug

Lets say I have an app `web`. Inside a template for this app, I load `app.js` like this `{% systemjs_import 'web/app' %}`. When in development mode, the system does not...

enhancement
question

Reference: https://github.com/sergei-maertens/django-systemjs/issues/28#issuecomment-261618212 To be able to support all the jspm options, the management command should be split up to match `jspm bundle` and `jspm build`.

enhancement

It's possible to fire of `subproces.Popen` and poll their completion state. When generating multiple bundles, this should be used to parallelize as much as possible. This does involve changing the...

enhancement

I'd like to exclude jquery, underscore, bootstrap, etc from bundle. Those libraries could be bundled seperately as shared dependencies. And I believe the following is the jspm's answer to the...

enhancement