@lvce-editor/explorer-view 3.21.0 → 3.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1692,19 +1692,18 @@ const copy$1 = async (oldUri, newUri) => {
1692
1692
  };
1693
1693
 
1694
1694
  const applyOperation = operation => {
1695
- if (operation.type === CreateFolder$1) {
1696
- return mkdir(operation.path);
1697
- }
1698
- if (operation.type === Copy$1) {
1699
- return copy$1(operation.from || '', operation.path);
1700
- }
1701
- if (operation.type === Rename$2) {
1702
- return rename$1(operation.from || '', operation.path);
1703
- }
1704
- if (operation.type === Remove) {
1705
- return remove(operation.path);
1695
+ switch (operation.type) {
1696
+ case CreateFolder$1:
1697
+ return mkdir(operation.path);
1698
+ case Copy$1:
1699
+ return copy$1(operation.from || '', operation.path);
1700
+ case Rename$2:
1701
+ return rename$1(operation.from || '', operation.path);
1702
+ case Remove:
1703
+ return remove(operation.path);
1704
+ default:
1705
+ return writeFile(operation.path, operation.text);
1706
1706
  }
1707
- return writeFile(operation.path, operation.text);
1708
1707
  };
1709
1708
 
1710
1709
  const applyFileOperations = async operations => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/explorer-view",
3
- "version": "3.21.0",
3
+ "version": "3.22.0",
4
4
  "description": "Explorer Worker",
5
5
  "repository": {
6
6
  "type": "git",