DEV Community

Discussion on: How To Make Your Own Custom React Native Templates (2021)

Collapse
 
paolosantarsiero profile image
paolosantarsiero

For me not work. This is the repository, so can you check it if is right?
github.com/paolosantarsiero/templa...

Collapse
 
paolosantarsiero profile image
paolosantarsiero • Edited

The erros seems:
1). (node:26953) Warning: Accessing non-existent property 'padLevels' of module exports inside circular dependency.
2) Removing module templateWebView...
error This module isn't specified in a package.json file.
info Visit yarnpkg.com/en/docs/cli/remove for documentation about this command.
warn Failed to clean up template temp files in node_modules/templateWebView. This is not a critical error, you can work on your app.

Collapse
 
criszz77 profile image
criszz77

This template only works with the new CLI. Make sure you have uninstalled the legacy react-native-cli first (npm uninstall -g react-native-cli) for the below command to work. If you wish to not use npx, you can also install the new CLI globally (npm i -g @react-native-community/cli or yarn global add @react-native-community/cli).

Collapse
 
roycechua profile image
Royce Chua

Hi paolosantarsiero, may I know what node version you are using? this might be related to the warning in 1. For 2. I suspect this is a problem with your package.lock.json and yarn.lock. Normally, you should only stick to one package manager to avoid this so please delete either package.lock.json or yarn.lock then try again.