cognite-create 0.2.38 → 0.2.39

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/bin/index.js +2 -0
  2. package/package.json +1 -1
package/bin/index.js CHANGED
@@ -87,6 +87,8 @@ async function main() {
87
87
  }
88
88
 
89
89
  const createArgs = ["create-vite@latest", projectDir, ...additionalArgs];
90
+ console.log("\nšŸ” Running create-vite with args:", createArgs.join(" "));
91
+ console.log("šŸ“‹ Full command: npx", createArgs.join(" "), "\n");
90
92
  await runCreateVite(createArgs);
91
93
  await cleanupViteDefaults(projectDir);
92
94
  await addCogniteTemplates(projectDir);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cognite-create",
3
- "version": "0.2.38",
3
+ "version": "0.2.39",
4
4
  "description": "Create a Next.js app preconfigured with Cognite defaults.",
5
5
  "bin": {
6
6
  "cognite-create": "./bin/index.js"