默认 node_modules in react native
Default node_modules in react native
我想在使用时配置默认node_modules:
react-native init NAME
每次我使用 init 命令时,我都会看到一个 eslint-plugin-react-native
包被默认安装!
我尝试全局卸载它,但没有区别!
npm uninstall -g eslint-plugin-react-native
如何从默认包中删除包?
正如 Tom Hastjarjanto(eslint-plugin-react-native
的所有者)所说:
it is a dependency of react-native itself so thats why its installed by default.
我想在使用时配置默认node_modules:
react-native init NAME
每次我使用 init 命令时,我都会看到一个 eslint-plugin-react-native
包被默认安装!
我尝试全局卸载它,但没有区别!
npm uninstall -g eslint-plugin-react-native
如何从默认包中删除包?
正如 Tom Hastjarjanto(eslint-plugin-react-native
的所有者)所说:
it is a dependency of react-native itself so thats why its installed by default.