create-projx 1.3.3 → 1.3.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -192,7 +192,7 @@ async function readComponentMarker(dir) {
192
192
  const data = JSON.parse(raw);
193
193
  return {
194
194
  components: data.components ?? (data.component ? [data.component] : []),
195
- origin: data.origin ?? "scaffold",
195
+ origin: data.origin,
196
196
  skip: data.skip
197
197
  };
198
198
  } catch {
@@ -833,7 +833,7 @@ async function update(cwd, localRepo) {
833
833
  const marker = await readComponentMarker(join5(cwd, dir));
834
834
  if (marker?.skip && marker.skip.length > 0) {
835
835
  componentSkips[component] = marker.skip;
836
- } else if (marker?.origin === "init") {
836
+ } else if (marker?.origin === "init" || !marker?.origin) {
837
837
  componentSkips[component] = ["**"];
838
838
  }
839
839
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-projx",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "description": "Scaffold production-grade fullstack projects in seconds. FastAPI, Fastify, React, Flutter, Terraform — with auth, database, CI/CD, E2E tests, and Docker. One command, ready to deploy.",
5
5
  "type": "module",
6
6
  "bin": {