Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #447 from skaut/esm
Browse files Browse the repository at this point in the history
Switched gulpfile to ESM
  • Loading branch information
marekdedic authored Mar 31, 2024
2 parents 2ad2155 + 5a3d533 commit eb5c9f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
9 changes: 4 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
const gulp = require( 'gulp' );

const merge = require( 'merge-stream' );
const replace = require( 'gulp-replace' );
const shell = require( 'gulp-shell' );
import gulp from 'gulp';
import replace from 'gulp-replace';
import shell from 'gulp-shell';
import merge from 'merge-stream';

gulp.task(
'build:deps:composer:scoper',
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"type": "git",
"url": "git+https://github.com/skaut/skaut-fio-bank-transactions.git"
},
"type": "module",
"scripts": {
"clean": "rimraf dist/*",
"prebuild": "npm run clean",
Expand Down

0 comments on commit eb5c9f6

Please sign in to comment.