Questions tagged [bundles]

Bundles are a group of resources.

179 questions
1
vote
1 answer

Symfony2 - $query-getResult() returning a blank page in prod environment

I recently reinstalled my vendors php app/bin vendors install --reinstall Since then in my prod environment I get a blank page (not an error) after any echo "1"; $array = $query->getResult(); echo "2"; it outputs a blank page…
httpete
  • 5,875
  • 4
  • 32
  • 41
1
vote
2 answers

Modifying a Bundle Manifest at run time

Is it possible (and if so, safe) to modify the MANIFEST of a bundle anytime during it's lifecycle (i.e. presumably only between INSTALLED and RESOLVED). I guess another way to ask the question would be, After INSTALLED, but before RESOLVED, is the…
Ray
  • 1,324
  • 10
  • 18
1
vote
1 answer

Why are Scripts and Styles not rendering in ASP.Net Webforms (NOT MVC)

I'm trying unsuccessfully to get script and style bundling working in a .NET framework 4.8 Webforms application with limited success. I've installed the Microsoft.AspNet.Web.Optimization NuGet package and have built my Bundle Config class according…
Karl
  • 912
  • 2
  • 16
  • 28
1
vote
0 answers

WoCoommerce: get bundle data items product in custom loop

I have a pizza sales site which offers 'Ingredients' of which these are simple products, for example: Pizza Napolí is a bundle product, this product has ingredients grouped together. What I'm looking for is to show in a custom loop (wp_query) the…
1
vote
2 answers

Symfony 5 Reusable Bundles controller has no container set, did you forget to define it as a service subscriber

I have a problem with AbstractController in my Reusable Bundles. Without it work AbstractController it works. class MyCustomController { public function sayHello(){ return new Response('Hello'); } } With AbstractController it…
pprgva
  • 11
  • 1
  • 4
1
vote
1 answer

Loading one specific composer package from monolithic repository

I'm searching a way to separate an active composer package with many Symfony bundles in. Currently the package have one global composer.json file in the root directory and its looking like…
1
vote
0 answers

Webpack: Howto divide bundles in a volatile and a permanent fraction

I've been using Webpack only for a short time and I don't know the configuration possibilities well yet. I wrote some Vue code in Typescript. The code imports from Vue and from a few other packages. Packing the whole thing takes 70 seconds. This is…
mirkomaty
  • 11
  • 1
1
vote
1 answer

Bundle gains unexplained requirement to different bundle when try to read XML

This is an odd situation for me. We have a large project using OSGI and I'm modifying one of the bundles. Most of the changes work fine, except that when I try to update one part of the code to read some XML the bundle refuses to load. I get an…
drew
  • 577
  • 2
  • 8
  • 20
1
vote
1 answer

Editing a bundle in TextMate

I want to change the textmate bundle "Create Partial From Selection", which depends on a file called "create_partial_from_selection.rb". I have changed the above file so it outputs double, not single quotes. Problem is i don't know where to put this…
pingu
  • 8,719
  • 12
  • 50
  • 84
1
vote
1 answer

ClassNotFoundException with corresponding bundle loaded at runtime

I've lately added a few dependencies to my program and I'm experiencing problems at runtime. When activating the new feature, I get a ClassNotFoundException. I then whipped up the felixgogo shell and debugged the OSGI environment. I looked at the…
Radioo
  • 422
  • 5
  • 18
1
vote
2 answers

Bundles not working in my ASP.NET website

I wrote this code: BundleConfig.cs public static void RegisterBundles(BundleCollection bundles) { bundles.Add(new ScriptBundle("~/bundles/jquery").Include( "~/js/jquery-{version}.min.js")); // bundle jQuery …
AZOOZ
  • 39
  • 6
1
vote
1 answer

How can I change language contexts in Textmate bundles?

I'd like to get my Textmate bundles to use the correct contexts based on what I'm editing. For example I use YUI a lot so I'd like the HTML bundle to use the YUI JS bundle instead of the standard JS one, etc. Can anyone suggest where and what I…
sh1mmer
  • 1,316
  • 11
  • 19
1
vote
1 answer

How to extract React library to separate bundle?

Is it possible to extract React and(or) ReactDOM libraries to separate bundle via Webpack 4? For example I have the React app which includes React, ReactDOM and Moment.js packages. So I expect two bundles as the result: react.js = react +…
b4v
  • 75
  • 1
  • 10
1
vote
2 answers

Why doesn't the bundle work in my asp.net mvc project?

I have created a bundle of js files ("bundles/js") in which I included all js files that were required for the page. @Scripts.Render("/bundles/js") and after rendering it throws error for above line : Failed to load resource: the server…
user9677867
1
vote
1 answer

Passing ArrayList Objects through Bundle?

Possible Duplicate: Passing data of a non-primitive type between activities in android hi... In my android i need to pass ArrayList object from first activity to a second activity through bundles and retrieve the same object in the second…
kAnNaN
  • 3,669
  • 4
  • 28
  • 39