@frontman-ai/nextjs 0.1.2 → 0.1.3

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/cli.js +3 -3
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -772,11 +772,11 @@ function getPackageManagerCommand(pm) {
772
772
  case "Npm":
773
773
  return "npm";
774
774
  case "Yarn":
775
- return "yarn";
775
+ return "npx yarn";
776
776
  case "Pnpm":
777
- return "pnpm";
777
+ return "npx pnpm";
778
778
  case "Bun":
779
- return "bun";
779
+ return "npx bun";
780
780
  }
781
781
  }
782
782
  function getInstallArgs(pm, isDevOpt) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontman-ai/nextjs",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Next.js integration for Frontman - AI-powered development tools and observability",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",