Skip to content

Commit

Permalink
fixed lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmadFaraz-crypto committed May 6, 2024
1 parent d9f9d4e commit 5c8990b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/unminify/src/transformations/un-jsx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import { generateName } from '@wakaru/ast-utils/identifier'
import { isNull, isTrue, isUndefined } from '@wakaru/ast-utils/matchers'
import { removeDeclarationIfUnused } from '@wakaru/ast-utils/scope'
import { nonNullable } from '@wakaru/shared/array'
import type { ASTTransformation } from '@wakaru/shared/rule'
import { createJSCodeshiftTransformationRule } from '@wakaru/shared/rule'
import { z } from 'zod'
import type { ASTTransformation } from '@wakaru/shared/rule'
import type { ExpressionKind, LiteralKind } from 'ast-types/lib/gen/kinds'
import type { ASTNode, ASTPath, CallExpression, Collection, Identifier, JSCodeshift, JSXAttribute, JSXElement, JSXExpressionContainer, JSXFragment, JSXIdentifier, JSXMemberExpression, JSXSpreadAttribute, JSXSpreadChild, JSXText, MemberExpression, RestElement, SpreadElement, StringLiteral, VariableDeclarator } from 'jscodeshift'
import { z } from 'zod'

export const Schema = z.object({
pragma: z.string().optional().describe('The pragma to use for JSX transformation.'),
Expand Down

0 comments on commit 5c8990b

Please sign in to comment.