ckeditor / ckeditor4-react

Official CKEditor 4 React component.
Other
95 stars 51 forks source link

Update NPM samples dependencies #279

Closed MMMalik closed 2 years ago

MMMalik commented 2 years ago

In order to create these changes, I've run the following command from the project's root:

Remove package-lock.json then local node_modules:

find samples -maxdepth 1 -mindepth 1 -type d -exec bash -c "cd '{}' && rm package-lock.json" \;
find samples -maxdepth 1 -mindepth 1 -type d -exec bash -c "cd '{}' && rm -rf node_modules" \;

Prepare updates:

find samples -maxdepth 1 -mindepth 1 -type d -exec bash -c "cd '{}' && ncu -u" \;

Install packages:

find samples -maxdepth 1 -mindepth 1 -type d -exec bash -c "cd '{}' && npm i" \;