File tree Expand file tree Collapse file tree 1 file changed +8
-13
lines changed
packages/tailwindcss-language-service/src Expand file tree Collapse file tree 1 file changed +8
-13
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ import {
37
37
addPixelEquivalentsToValue ,
38
38
} from './util/pixelEquivalents'
39
39
import { customClassesIn } from './util/classes'
40
- import * as util from 'node:util'
41
40
import * as postcss from 'postcss'
42
41
43
42
let isUtil = ( className ) =>
@@ -195,12 +194,10 @@ export function completionsFromClassList(
195
194
} catch ( err ) {
196
195
// If the selectors function fails we don't want to crash the whole completion process
197
196
console . log ( 'Error while trying to get selectors for variant' )
198
- console . log (
199
- util . format ( {
200
- variant,
201
- err,
202
- } ) ,
203
- )
197
+ console . log ( {
198
+ variant,
199
+ err,
200
+ } )
204
201
}
205
202
206
203
if ( selectors . length === 0 ) {
@@ -255,12 +252,10 @@ export function completionsFromClassList(
255
252
} catch ( err ) {
256
253
// If the selectors function fails we don't want to crash the whole completion process
257
254
console . log ( 'Error while trying to get selectors for variant' )
258
- console . log (
259
- util . format ( {
260
- variant,
261
- err,
262
- } ) ,
263
- )
255
+ console . log ( {
256
+ variant,
257
+ err,
258
+ } )
264
259
}
265
260
266
261
if ( selectors . length === 0 ) {
You can’t perform that action at this time.
0 commit comments