-
Notifications
You must be signed in to change notification settings - Fork 93
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
Inject fails for version 4.2.0 #219
Comments
It worked after changing package.json from group-array : "^0.3.0" to group-array: "0.3.1". Please try to fix the dependencies. |
hi chaitanyavangoori, i have a same problem.
and now it works! But is this the only solution to use the option "starttag"? |
Same here |
I used npm-shrinkwrap to lock the dependencies. I also changed the versiob of group-array back to 0.3.1. |
wish we had seen this issue sooner. we just now received an issue about this on group-array, looks like a regression that should be easy to fix. or if shrinkwrapping is easier we can leave it as is. |
Same error here :( |
I believe this was fixed by @doowb in group-array |
gulp inject var gulp = require('gulp'); }); gulp.task('inject',function(){ var injectSrc = gulp.src([',/public/css/.css', }); please help! |
Im having the same issue with gulp-inject ^4.3.1
UPDATE: the html is
Error is:
Other env settings:
|
@juanpasolano can you paste your html with the inject tags also? thx in advance |
@rejas thanks for getting back... I've updated my comment with the html i'm using. |
Deleted my old comments to sumamrize my findings:
looking at the src code of this plugin it cannot infer from your starttag how the endtag will look like so you have to a) either specify the endTag option with |
Hello, inject seems to fail suddenly without any change in the task. This is the error I which I am facing,
My gulp task:
`gulp.task('update:index', function () {
var target = gulp.src('./app/index.html');
});`
There seems to be some dependency updates which I have observed,
new
[INFO] ├─┬ [email protected]
[INFO] │ ├── [email protected]
[INFO] │ ├── [email protected]
[INFO] │ ├─┬ [email protected]
[INFO] │ │ ├── [email protected]
[INFO] │ │ ├── [email protected]
[INFO] │ │ ├─┬ [email protected]
[INFO] │ │ │ └── [email protected]
[INFO] │ │ └─┬ [email protected]
[INFO] │ │ ├── [email protected]
[INFO] │ │ └─┬ [email protected]
[INFO] │ │ ├── [email protected]
[INFO] │ │ └─┬ [email protected]
[INFO] │ │ └── [email protected]
[INFO] │ └─┬ [email protected]
[INFO] │ └── [email protected]
OLD which was working
[INFO] ├─┬ [email protected]
[INFO] │ ├── [email protected]
[INFO] │ ├── [email protected]
[INFO] │ ├─┬ [email protected]
[INFO] │ │ ├── [email protected]
[INFO] │ │ └─┬ [email protected]
[INFO] │ │ └── [email protected]
[INFO] │ └─┬ [email protected]
[INFO] │ └── [email protected]
The text was updated successfully, but these errors were encountered: