Skip to content

Commit

Permalink
Attempt to fix ESM require vs import error.
Browse files Browse the repository at this point in the history
  • Loading branch information
imcbride committed Jan 12, 2024
1 parent 504ee64 commit 9abcf04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var gulp = require('gulp');
var sass = require('gulp-sass');
var autoprefixer = require('gulp-autoprefixer');
import autoprefixer from 'gulp-autoprefixer';
var cmq = require('gulp-combine-mq');
var cssnano = require('gulp-cssnano');
var sourcemaps = require('gulp-sourcemaps');
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "0.0.0",
"description": "",
"main": "",
"type": "module",
"scripts": {
"build": "gulp build",
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down

0 comments on commit 9abcf04

Please sign in to comment.