Skip to content

Commit

Permalink
Fixed gulpfile typo and removed stale dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
marekdedic committed May 1, 2021
1 parent 8c72920 commit 7352ce1
Show file tree
Hide file tree
Showing 3 changed files with 12,253 additions and 103 deletions.
5 changes: 3 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ const concat = require( 'gulp-concat' );
const inject = require( 'gulp-inject-string' );
const merge = require( 'merge-stream' );
const rename = require( 'gulp-rename' );
const replace = require( 'gulp-replace' );
const shell = require( 'gulp-shell' );
const terser = require( 'gulp-terser' );
const ts = require( 'gulp-typescript' );
Expand Down Expand Up @@ -35,7 +34,9 @@ gulp.task(

gulp.task(
'build:deps:composer',
shell.tash( 'vendor/bin/php-scoper add-prefix --output-dir=dist/bundled/vendor' )
shell.task(
'vendor/bin/php-scoper add-prefix --output-dir=dist/bundled/vendor'
)
);

gulp.task( 'build:deps:npm:imagelightbox', function () {
Expand Down
Loading

0 comments on commit 7352ce1

Please sign in to comment.