bunkit-cli 1.3.1 → 1.3.3
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 +10 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -21936,11 +21936,15 @@ async function writeUiPackageJson(packagePath, scopeName) {
|
|
|
21936
21936
|
lint: "tsc --noEmit"
|
|
21937
21937
|
},
|
|
21938
21938
|
dependencies: {
|
|
21939
|
+
"radix-ui": "catalog:",
|
|
21939
21940
|
"@radix-ui/react-slot": "catalog:",
|
|
21940
21941
|
"class-variance-authority": "catalog:",
|
|
21941
21942
|
clsx: "catalog:",
|
|
21942
21943
|
"tailwind-merge": "catalog:",
|
|
21944
|
+
"@phosphor-icons/react": "catalog:",
|
|
21943
21945
|
"iconoir-react": "catalog:",
|
|
21946
|
+
"tw-animate-css": "catalog:",
|
|
21947
|
+
shadcn: "catalog:",
|
|
21944
21948
|
tailwindcss: "catalog:",
|
|
21945
21949
|
"@tailwindcss/postcss": "catalog:",
|
|
21946
21950
|
postcss: "catalog:"
|
|
@@ -29123,7 +29127,7 @@ async function setupTooling(projectPath, context) {
|
|
|
29123
29127
|
extends: "../../tooling/typescript/base.json",
|
|
29124
29128
|
compilerOptions: {
|
|
29125
29129
|
target: "ESNext",
|
|
29126
|
-
lib: ["ESNext"],
|
|
29130
|
+
lib: ["ESNext", "DOM", "DOM.Iterable"],
|
|
29127
29131
|
module: "ESNext",
|
|
29128
29132
|
moduleResolution: "bundler",
|
|
29129
29133
|
declaration: true,
|
|
@@ -31075,11 +31079,11 @@ async function buildUiPackage(packagesPath, options) {
|
|
|
31075
31079
|
},
|
|
31076
31080
|
iconLibrary,
|
|
31077
31081
|
aliases: {
|
|
31078
|
-
components: "
|
|
31079
|
-
utils: "
|
|
31080
|
-
ui: "
|
|
31081
|
-
lib: "
|
|
31082
|
-
hooks: "
|
|
31082
|
+
components: "@/components",
|
|
31083
|
+
utils: "@/lib/utils",
|
|
31084
|
+
ui: "@/components/ui",
|
|
31085
|
+
lib: "@/lib",
|
|
31086
|
+
hooks: "@/hooks"
|
|
31083
31087
|
}
|
|
31084
31088
|
};
|
|
31085
31089
|
if (useModernStyle) {
|