All Questions
Tagged with laravel-elixir angularjs
10 questions
1
vote
2
answers
377
views
How can I debug Uncaught Error: [$injector:modulerr] on a compiled js file?
I compiled my all my js, and css using Laravel Elixir via Gulp
While loading my site, I kept seeing this error on my console
all-04432621a2.js:1 is a compiled file.
Link
http://errors.angularjs....
0
votes
2
answers
618
views
AngularJS in Laravel using Elixir
I am trying to setup a Laravel and Angular application. I wanted to place my work files under resources/assets/js and then use webpack and elixir to compile those code and create a single app.js file ...
0
votes
0
answers
122
views
AngularJS libraries conflicting with each other
I'm using gulp to combine my scripts in order to load only one file in HTML (make it faster).
Here's a sample code, name of libraries don't matter much, you'll get the idea :
// gulpfile.js
mix....
1
vote
1
answer
208
views
gulp --production laravel elixir fails on webfonts
I'm using Laravel 5.3 elixir to mix the assets, my js app in angular generally. Webpack is behind it. Everything runs, files compile to single app.js , even my css is there. I use bootstrap to skin ...
2
votes
1
answer
758
views
Dynamically loading multiple entry points and splitting output
I have several different angular modules that I want to dynamically concatenate such that each module has a different single output file.
so that if in the resources/assets/js/angular/modules ...
0
votes
1
answer
33
views
Laravel AngularJs automate urls
How could I make this work in gulp / elixer :
Right now In my angularJs project I put everything manually in my index.html like this:
<script src="angular/controllers/indexController.js"></...
0
votes
1
answer
507
views
Bug elixir gulp --production angularjs
I working with Laravel 5 and Angularjs, Laravel 5 uses Gulp for schedule asset's task and all work fine when use gulp's command, but when I use gulp --production's command and gulp minimize the ...
1
vote
1
answer
134
views
use laravel elixir npm to manage front dependencies
we are able to load angularjs or other js framework using npm as manager of dependencies. I am in doubt on how to use gulp to load all the dependencies from node_modules folder and later concat all ...
0
votes
1
answer
306
views
Git keeps deleting Laravel Elixir (Gulp) generated files
I've been working on a Laravel/AngularJS project in a local branch for a few weeks.
I checked the status before committing, and got these Laravel Elixir generated files:
modified: public/...
1
vote
1
answer
1k
views
Laravel Elixir - adding watch paths
I'm building an Angular application and so have a lot of HTML templates for Angular. My Elixir setup copies these templates into the public folder.
However, I've noticed that the watchers are not ...