nxhack / openwrt-node-packages

OpenWrt Project Node.js packages. v18.x TLS and v20.x LTS
GNU General Public License v2.0
257 stars 99 forks source link

remove LEDE node packages #132

Closed p3x-robot closed 6 years ago

p3x-robot commented 6 years ago

Ciao!

How are you?

You are saying:

./scripts/feeds update node
rm ./package/feeds/packages/node
rm ./package/feeds/packages/node-arduino-firmata
rm ./package/feeds/packages/node-cylon
rm ./package/feeds/packages/node-hid
rm ./package/feeds/packages/node-serialport
./scripts/feeds install -a -p node

But there are more that have collision: image

There are 8 packages.

Is it good to do like:

./scripts/feeds update node
rm ./package/feeds/packages/node* -rf
./scripts/feeds install -a -p node

Or is it there, that should be kept?

nxhack commented 6 years ago

Hi @p3x-robot

This process removes the node related module in the official package of openwrt. There are only these five in the official package.

https://github.com/openwrt/packages/tree/master/lang

p3x-robot commented 6 years ago

Ciao!

How are you?

Ok, thanks for responding, so I guess given I use LEDE, I should remove all node* packages, right? Since LEDE provides 8 and I am thinking remove all that start with node* like that. Correct?

nxhack commented 6 years ago

Ok, thanks for responding, so I guess given I use LEDE, I should remove all node packages, right? Since LEDE provides 8 and I am thinking remove all that start with node like that. Correct?

Yes. They are symbolic links. The "-rf" option is not required.

rm ./package/feeds/packages/node*
p3x-robot commented 6 years ago

ok, thanks.