@papercraneai/cli 1.8.1 → 1.8.2

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/bin/papercrane.js CHANGED
@@ -927,7 +927,7 @@ program
927
927
  const currentLink = path.join(os.homedir(), '.papercrane', 'current');
928
928
  try {
929
929
  await fs.readlink(currentLink);
930
- workspaceDir = currentLink;
930
+ workspaceDir = await fs.realpath(currentLink);
931
931
  } catch {
932
932
  console.error(chalk.red('No workspace set up.'));
933
933
  console.error(chalk.dim('\nRun one of:'));
package/lib/dev-server.js CHANGED
@@ -340,6 +340,9 @@ const nextConfig = {
340
340
  turbopack: {
341
341
  root: ${JSON.stringify(workspaceDir)},
342
342
  },
343
+ experimental: {
344
+ turbopackFileSystemCacheForDev: false,
345
+ },
343
346
  };
344
347
  export default nextConfig;
345
348
  `;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@papercraneai/cli",
3
- "version": "1.8.1",
3
+ "version": "1.8.2",
4
4
  "description": "CLI tool for managing OAuth credentials for LLM integrations",
5
5
  "main": "index.js",
6
6
  "type": "module",