tomwhite007 / rename-angular-component

VS Code Extension: Rename Angular Component
https://marketplace.visualstudio.com/items?itemName=tomwhite007.rename-angular-component
Other
30 stars 2 forks source link

Feat/use vscode workspace fs #31

Closed tomwhite007 closed 2 years ago

tomwhite007 commented 2 years ago

More than half of the file access processes in this project currently use fs-extra-promise, which is fine until vscode is in an environment that doesn't have a standard file api - like WSL. This PR is to replace all those commands with vscode.workspace.fs alternatives (some of which don't exist so it's a heavy refactor)

tomwhite007 commented 2 years ago

Closed due to massive performance drop when replacing fs commands with vscode.workspace.fs's limited set of alternatives.