diff --git a/lerna.json b/lerna.json index ecd775d5..e4b8f633 100644 --- a/lerna.json +++ b/lerna.json @@ -1,13 +1,11 @@ { - "$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json", - "version": "1.2.3", - "command": { - "publish": { - "conventionalCommits": true - } - }, - "packages": [ - "pkg/*" - ], - "npmClient": "pnpm" + "$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json", + "version": "1.2.3", + "command": { + "publish": { + "conventionalCommits": true + } + }, + "packages": ["pkg/*"], + "npmClient": "pnpm" } diff --git a/pkg/http/src/parser.ts b/pkg/http/src/parser.ts index 861ae68e..2d4fd1e1 100644 --- a/pkg/http/src/parser.ts +++ b/pkg/http/src/parser.ts @@ -1,12 +1,6 @@ -import { - CstParser, - type IToken, - type CstNode, - createSyntaxDiagramsCode, -} from '@slangroom/deps/chevrotain'; +import { CstParser, type IToken, type CstNode } from '@slangroom/deps/chevrotain'; import { allTokens, Do, Get, Post, Sequential, Parallel, Same } from '@slangroom/http'; - export type PhraseCst = CstNode & { children: { kind: KindCst;