create-astrale-domain 0.2.0 → 0.2.1
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 +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -819,7 +819,9 @@ async function scaffold(opts) {
|
|
|
819
819
|
}
|
|
820
820
|
await cp(src, opts.dir, {
|
|
821
821
|
recursive: true,
|
|
822
|
-
filter: (s) => !/\/(node_modules|\.astrale|dist-client|\.wrangler)(\/|$)/.test(
|
|
822
|
+
filter: (s) => !/\/(node_modules|\.astrale|dist-client|\.wrangler|pnpm-lock\.yaml)(\/|$)/.test(
|
|
823
|
+
`/${relative(src, s)}`
|
|
824
|
+
)
|
|
823
825
|
});
|
|
824
826
|
await materializeAdapter(opts);
|
|
825
827
|
await stampOrigin(opts.dir, opts.origin);
|