bunkit-cli 1.1.2 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +5 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -25024,8 +25024,7 @@ async function setupVSCodeDebug(projectPath, context, preset = "api") {
|
|
|
25024
25024
|
const extensions = {
|
|
25025
25025
|
recommendations: [
|
|
25026
25026
|
"oven.bun-vscode",
|
|
25027
|
-
"biomejs.biome"
|
|
25028
|
-
"dbaeumer.vscode-eslint"
|
|
25027
|
+
"biomejs.biome"
|
|
25029
25028
|
]
|
|
25030
25029
|
};
|
|
25031
25030
|
await writeFile(join(vscodePath, "extensions.json"), JSON.stringify(extensions, null, 2));
|
|
@@ -26969,7 +26968,9 @@ async function setupShadcnMonorepo(projectPath, context) {
|
|
|
26969
26968
|
"class-variance-authority": "catalog:",
|
|
26970
26969
|
clsx: "catalog:",
|
|
26971
26970
|
"tailwind-merge": "catalog:",
|
|
26972
|
-
"lucide-react": "catalog:"
|
|
26971
|
+
"lucide-react": "catalog:",
|
|
26972
|
+
tailwindcss: "catalog:",
|
|
26973
|
+
"@tailwindcss/postcss": "catalog:"
|
|
26973
26974
|
},
|
|
26974
26975
|
devDependencies: {
|
|
26975
26976
|
"@types/react": "catalog:",
|
|
@@ -27060,6 +27061,7 @@ export default config;
|
|
|
27060
27061
|
isolatedModules: true,
|
|
27061
27062
|
jsx: "react-jsx",
|
|
27062
27063
|
types: ["react", "react-dom"],
|
|
27064
|
+
baseUrl: ".",
|
|
27063
27065
|
paths: {
|
|
27064
27066
|
"@/*": ["./src/*"]
|
|
27065
27067
|
}
|