@papercraneai/cli 1.6.0-beta.1 → 1.6.0

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/lib/dev-server.js CHANGED
@@ -330,10 +330,10 @@ export async function generateScaffolding(workspaceDir) {
330
330
 
331
331
  // next.config.mjs
332
332
  const nextConfigPath = path.join(workspaceDir, 'next.config.mjs');
333
- const transpileLine = isLocalDev ? ` transpilePackages: ['@papercraneai/cli'],\n` : '';
334
333
  const nextConfig = `/** @type {import('next').NextConfig} */
335
334
  const nextConfig = {
336
- ${transpileLine} turbopack: {
335
+ transpilePackages: ['@papercraneai/cli'],
336
+ turbopack: {
337
337
  root: ${JSON.stringify(workspaceDir)},
338
338
  },
339
339
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@papercraneai/cli",
3
- "version": "1.6.0-beta.1",
3
+ "version": "1.6.0",
4
4
  "description": "CLI tool for managing OAuth credentials for LLM integrations",
5
5
  "main": "index.js",
6
6
  "type": "module",