fix(gulp): change with to assert to import pjson

This commit is contained in:
crlosif 2024-12-22 15:19:00 +00:00
parent b1bc92ff2c
commit 8ca778a77a

View File

@ -4,7 +4,7 @@
// Gulp and package
import { src, dest, parallel, series, task, watch } from 'gulp';
import pjson from './package.json' with {type: 'json'};
import pjson from './package.json' assert { type: 'json' };
// Plugins
import autoprefixer from 'autoprefixer';