Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,13 @@
"@babel/generator": "7.28.5",
"@babel/parser": "7.28.5",
"@babel/types": "7.28.5",

"@storybook/csf-tools": "8.5.1",
"@types/cross-spawn": "^6.0.6",
"@types/jest": "^29.5.13",
"@types/jsdom": "^21.1.7",
"@types/lodash": "4.17.20",
"@types/lodash.camelcase": "^4.3.9",
"@types/lodash.chunk": "^4.2.9",
"@types/lodash.kebabcase": "^4.1.9",
"@types/node": "22.17.2",
"@types/prettier": "2.7.3",
"@types/prompts": "^2.4.9",
Expand All @@ -89,8 +90,6 @@
"webpack-cli": "5.1.4"
},
"dependencies": {


"boxen": "5.1.1",
"chalk": "^4.1.2",
"commander": "^11.1.0",
Expand All @@ -101,7 +100,9 @@
"find-up": "^5.0.0",
"glob": "^11.0.4",
"jsdom": "^24.1.1",
"lodash": "4.17.21",
"lodash.camelcase": "^4.3.0",
"lodash.chunk": "^4.2.0",
"lodash.kebabcase": "^4.1.1",
"minimatch": "^9.0.3",
"ora": "^5.4.1",
"parse5": "^7.1.2",
Expand Down
2 changes: 1 addition & 1 deletion cli/src/connect/validation.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as url from 'url'
import { chunk } from 'lodash'
import chunk from 'lodash.chunk'

import { CodeConnectJSON } from '../connect/figma_connect'
import { logger } from '../common/logging'
Expand Down
2 changes: 1 addition & 1 deletion cli/src/html/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import path from 'path'
import fs from 'fs'
import { generateProps } from '../react/create'
import * as prettier from 'prettier'
import { kebabCase } from 'lodash'
import kebabCase from 'lodash.kebabcase'
import { getOutFileName } from '../connect/create_common'

export async function createHtmlCodeConnect(
Expand Down
2 changes: 1 addition & 1 deletion cli/src/react/create.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { camelCase } from 'lodash'
import camelCase from 'lodash.camelcase'
import * as prettier from 'prettier'
import fs from 'fs'
import z from 'zod'
Expand Down