vscode-zap
Advanced tools
Comparing version 0.0.91 to 0.0.92
@@ -15,4 +15,6 @@ "use strict"; | ||
// Case-insensitive lexicographic ordering by file path. | ||
const aFile = a.uri.fragment.toLowerCase(); | ||
const bFile = b.uri.fragment.toLowerCase(); | ||
const aPathParts = a.uri.fragment.toLowerCase().split("/"); | ||
const bPathParts = b.uri.fragment.toLowerCase().split("/"); | ||
const aFile = aPathParts[aPathParts.length - 1]; | ||
const bFile = bPathParts[bPathParts.length - 1]; | ||
if (aFile < bFile) { | ||
@@ -19,0 +21,0 @@ return -1; |
@@ -5,3 +5,3 @@ { | ||
"description": "Real-time code synchronization", | ||
"version": "0.0.91", | ||
"version": "0.0.92", | ||
"publisher": "sqs", | ||
@@ -42,3 +42,3 @@ "preview": true, | ||
"dependencies": { | ||
"libzap": "^0.0.91", | ||
"libzap": "^0.0.92", | ||
"open": "^0.0.5", | ||
@@ -45,0 +45,0 @@ "vscode-jsonrpc": "3.0.1-alpha.7" |
@@ -15,4 +15,6 @@ import { scm, commands, workspace, Uri, Disposable, SCMProvider, SCMResourceGroup, Event, EventEmitter, SCMResource, SCMResourceDecorations, ProviderResult } from "vscode"; | ||
// Case-insensitive lexicographic ordering by file path. | ||
const aFile = a.uri.fragment.toLowerCase(); | ||
const bFile = b.uri.fragment.toLowerCase(); | ||
const aPathParts = a.uri.fragment.toLowerCase().split("/"); | ||
const bPathParts = b.uri.fragment.toLowerCase().split("/"); | ||
const aFile = aPathParts[aPathParts.length - 1]; | ||
const bFile = bPathParts[bPathParts.length - 1]; | ||
if (aFile < bFile) { | ||
@@ -19,0 +21,0 @@ return -1; |
Sorry, the diff of this file is not supported yet
485532
7243
+ Addedlibzap@0.0.92(transitive)
- Removedlibzap@0.0.91(transitive)
Updatedlibzap@^0.0.92