Posts by Fábio Peres Toi • 61 points
2 posts
-
2
votes1
answer119
viewsA: Is it possible to swap already installed packages from "dependencies" to "devDependencies" just by switching lines?
Yes, you can move the packages of their dependencies and devDependencies editing the file package json. the way you described it. I would only take care to avoid any typos (e.g., you copied an…
-
1
votes2
answers711
viewsA: Split and rsplit methods, python
Basically your code just adds words found in the list before a tab. Like its last word (in this case, "coffee") does not have a separator (in this case, "or") after it, the code does not enter the…