@khalisoft/nexcl 1.0.0 → 1.0.1
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/cli.ts +1 -1
- package/dist/bin/cli.js +1 -1
- package/dist/utils/createProject.js +1 -1
- package/package.json +1 -1
- package/utils/createProject.ts +1 -1
package/bin/cli.ts
CHANGED
package/dist/bin/cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { execa } from "execa";
|
|
2
2
|
import ora from "ora";
|
|
3
3
|
import path from "path";
|
|
4
|
-
import injectCtrl from "./injectCtrl";
|
|
4
|
+
import injectCtrl from "./injectCtrl.js";
|
|
5
5
|
export default async function createProject({ projectName, addAdmin, }) {
|
|
6
6
|
const spinner = ora("Creating Next.js app...").start();
|
|
7
7
|
try {
|
package/package.json
CHANGED