@remixhq/core 0.1.30 → 0.1.31

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/collab.d.ts CHANGED
@@ -158,6 +158,7 @@ declare function collabCheckout(params: {
158
158
  cwd: string;
159
159
  appId?: string | null;
160
160
  outputDir?: string | null;
161
+ skipLaneMaterialization?: boolean;
161
162
  }): Promise<{
162
163
  appId: string;
163
164
  dashboardUrl: string;
package/dist/collab.js CHANGED
@@ -4084,8 +4084,8 @@ async function collabCheckout(params) {
4084
4084
  branchName,
4085
4085
  currentAppId: String(app.id),
4086
4086
  expectedUpstreamAppId: upstreamAppId,
4087
- createIfMissing: true,
4088
- seedAppId: String(app.id)
4087
+ createIfMissing: !params.skipLaneMaterialization,
4088
+ seedAppId: params.skipLaneMaterialization ? null : String(app.id)
4089
4089
  });
4090
4090
  const bindingPath = await writeCollabBinding(checkout.repoRoot, {
4091
4091
  projectId: authoritativeLane?.projectId ?? String(app.projectId),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remixhq/core",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
4
4
  "description": "Remix core library",
5
5
  "homepage": "https://github.com/RemixDotOne/remix-core",
6
6
  "license": "MIT",