-
By adding a few dependencies to package.json:
```
"through2":"*",
"msx":"*"
"gulp-plumber":"*",
```
and the following to the gulpfile (taken from the msx compiler github page and adapted…
-
I am not sure what's going on but when I use node-sass and I try to apply a map on multiple steps it starts to throw errors on file paths.
``` json
{
"version":3,
"sources":[
"shared.scss",
…
-
I user ‘gulp-filter ’
```
gulp.task('css', function() {
let plugins = [
autoprefixer(postcssConfig.autoprefixer)
],
filterCss = filter('**/*.css', {restore: tr…
-
I have tried everything and despite an irksome feeling that it is my incompetence I am at a loss.
I have the folder structure:
```
dist/
app/
|- js/
main.js
plugins.js
…
-
Here is my ionic info:
```
[WARN] Bad integration name: gulp
Ionic:
ionic (Ionic CLI) : 4.12.0 (C:\Program Files\nodejs\node_modules\ionic)
Ionic Framework : ionic1 1.3.5
@ionic…
-
I have gulp-sonar 3.0.0 with Sonarqube 5.3 and JavaScript plugin version 2.10.we get the following error in our build scripts:
11:42:44] 11:42:44.510 ERROR: Error during SonarQube Scanner executi…
-
I set up a watch task in my gulpfile to watch the data folder and update everything whenever the data folder is updated. This works fine if I'm using a YAML file for the data. However, if I'm using …
-
This is my gulp webserver task:
``` coffee
gulp = require "gulp"
$ = do require "gulp-load-plugins"
gulp.task "webserver", ->
gulp.src "dist"
.pipe $.webserver(
directoryListing : …
-
gulp-rev-replace doesn't seem to be accepting .json files, even when adding 'json' to the replaceInExtensions options. This is to support versioning of pwa manifest.json files.
Paths check out (via…
-
I have a gulp task like this:
``` js
gulp.task("jscs", function () {
gulp.src(["**/*.js"])
.pipe(plugins.jscs())
.pipe(plugins.jscs.reporter());
});
```
Depending on when errors …