Use correct ESM import syntax

This commit is contained in:
Hunter Tunnicliff 2021-08-04 20:40:53 -07:00 committed by Robin Malfait
parent c52cd713b0
commit ff9b06a95b
No known key found for this signature in database
GPG Key ID: 92F53D68B9041AFE
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import selectorParser from 'postcss-selector-parser'
import postcss from 'postcss'
import culori from 'culori'
import * as culori from 'culori'
import escapeCommas from './escapeCommas'
import { withAlphaValue } from './withAlphaVariable'
import isKeyframeRule from './isKeyframeRule'

View File

@ -1,4 +1,4 @@
import culori from 'culori'
import * as culori from 'culori'
import _ from 'lodash'
function isValidColor(color) {