Skip to content

Commit b6a47dc

Browse files
committed
feat(crnl): rename crnl.json to create-react-native-library.json
1 parent 8aa2f58 commit b6a47dc

File tree

1 file changed

+7
-3
lines changed
  • packages/create-react-native-library/src

1 file changed

+7
-3
lines changed

packages/create-react-native-library/src/index.ts

+7-3
Original file line numberDiff line numberDiff line change
@@ -801,9 +801,13 @@ async function create(argv: yargs.Arguments<any>) {
801801
};
802802

803803
spinner.text = 'Writing metadata';
804-
fs.writeJsonSync(path.join(folder, 'crnl.json'), metadata, {
805-
spaces: 2,
806-
});
804+
fs.writeJsonSync(
805+
path.join(folder, 'create-react-native-library.json'),
806+
metadata,
807+
{
808+
spaces: 2,
809+
}
810+
);
807811

808812
spinner.succeed(
809813
`Project created successfully at ${kleur.yellow(

0 commit comments

Comments
 (0)