@frontman-ai/nextjs 0.1.2 → 0.1.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.
- package/dist/cli.js +3 -3
- package/package.json +3 -2
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.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Next.js integration for Frontman - AI-powered development tools and observability",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"./Instrumentation": "./dist/instrumentation.js"
|
|
10
10
|
},
|
|
11
11
|
"bin": {
|
|
12
|
-
"frontman-nextjs": "./dist/cli.js"
|
|
12
|
+
"frontman-nextjs": "./dist/cli.js",
|
|
13
|
+
"@frontman-ai/nextjs": "./dist/cli.js"
|
|
13
14
|
},
|
|
14
15
|
"keywords": [
|
|
15
16
|
"frontman",
|