mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 06:34:12 +00:00
Merge pull request #9896 from shadcn-ui/fix/exclude-appledouble-from-template-archives
fix(shadcn): apple metadata files in tar
This commit is contained in:
5
.changeset/chilly-chairs-stick.md
Normal file
5
.changeset/chilly-chairs-stick.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"shadcn": patch
|
||||
---
|
||||
|
||||
fix apple metadata files in template
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -777,11 +777,17 @@ async function buildTemplates() {
|
||||
".git",
|
||||
"--exclude",
|
||||
"pnpm-lock.yaml",
|
||||
"--exclude",
|
||||
"._*",
|
||||
"-C",
|
||||
templatesDir,
|
||||
name,
|
||||
],
|
||||
{ cwd: process.cwd(), stdio: "pipe" }
|
||||
{
|
||||
cwd: process.cwd(),
|
||||
stdio: "pipe",
|
||||
env: { ...process.env, COPYFILE_DISABLE: "1" },
|
||||
}
|
||||
)
|
||||
let stderr = ""
|
||||
proc.stderr?.on("data", (data) => (stderr += data))
|
||||
|
||||
Reference in New Issue
Block a user