Skip to content

Commit 5354f90

Browse files
committed
chore: add debug logs to nextjs-app-generator
1 parent fa49190 commit 5354f90

File tree

1 file changed

+2
-2
lines changed
  • packages/gene-tools/src/generators/nextjs-app-generator

1 file changed

+2
-2
lines changed

packages/gene-tools/src/generators/nextjs-app-generator/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { updateCypressTsConfig } from '../utilities';
2727
export default async function (tree: Tree, schema: BrainlyNextJSAppGenerator) {
2828
const { name, directory = '', e2e } = schema;
2929
const currentPackageJson = readJson(tree, 'package.json');
30-
30+
console.log({schema})
3131
await applicationGenerator(tree, {
3232
name: name,
3333
directory: directory,
@@ -40,7 +40,7 @@ export default async function (tree: Tree, schema: BrainlyNextJSAppGenerator) {
4040
appDir: false,
4141
src: false,
4242
});
43-
43+
console.log('after applicationGenerator')
4444
const normalizedDirectory = directory.replace(/\//g, '-');
4545
const projectName = normalizedDirectory
4646
? `${normalizedDirectory}-${name}`

0 commit comments

Comments
 (0)