fix: packages dev command failing due to missing dependency mapping (#7381)

* fix: packages dev command failing due to missing dependency mapping

* fix: typescript version to match with other packages
This commit is contained in:
sriram veeraghanta 2025-07-10 15:26:43 +05:30 committed by GitHub
parent 3618ffc2c3
commit 1cb49cacae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 3 deletions

View file

@ -30,6 +30,7 @@
"@plane/eslint-config": "*",
"@plane/typescript-config": "*",
"@types/node": "^22.5.4",
"tsup": "8.4.0",
"typescript": "5.8.3"
}
}

View file

@ -30,6 +30,7 @@
"devDependencies": {
"@plane/eslint-config": "*",
"@plane/typescript-config": "*",
"tsup": "8.4.0"
"tsup": "8.4.0",
"typescript": "5.8.3"
}
}

View file

@ -12,8 +12,8 @@
"dist/**"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --external react --minify",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts --external react",
"build": "tsup --minify",
"dev": "tsup --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"postcss": "postcss styles/globals.css -o styles/output.css --watch",
@ -34,6 +34,7 @@
"@blueprintjs/core": "^4.16.3",
"@blueprintjs/popover2": "^1.13.3",
"@headlessui/react": "^1.7.3",
"@plane/constants": "*",
"@plane/hooks": "*",
"@plane/utils": "*",
"@popperjs/core": "^2.11.8",