@skaldapp/monaco-sfc 1.2.3 → 1.2.4
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.
- package/dist/vue.worker.js +2 -2
- package/package.json +4 -4
package/dist/vue.worker.js
CHANGED
|
@@ -124738,8 +124738,8 @@ ${lanes.join("\n")}
|
|
|
124738
124738
|
function getPathComponentsRelativeTo(from, to, stringEqualityComparer, getCanonicalFileName) {
|
|
124739
124739
|
const fromComponents = reducePathComponents(getPathComponents(from));
|
|
124740
124740
|
const toComponents = reducePathComponents(getPathComponents(to));
|
|
124741
|
-
let start;
|
|
124742
|
-
for (
|
|
124741
|
+
let start = 0;
|
|
124742
|
+
for (; start < fromComponents.length && start < toComponents.length; start++) {
|
|
124743
124743
|
const fromComponent = getCanonicalFileName(fromComponents[start]);
|
|
124744
124744
|
const toComponent = getCanonicalFileName(toComponents[start]);
|
|
124745
124745
|
if (!(start === 0 ? equateStringsCaseInsensitive : stringEqualityComparer)(fromComponent, toComponent)) break;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://www.schemastore.org/package",
|
|
3
3
|
"name": "@skaldapp/monaco-sfc",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.4",
|
|
5
5
|
"description": "A Monaco Editor language server for Vue Single File Components (SFC) providing syntax highlighting, IntelliSense, error detection, and more",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"vue",
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@rollup/plugin-commonjs": "^29.0.3",
|
|
68
|
-
"@skaldapp/configs": "^1.6.
|
|
68
|
+
"@skaldapp/configs": "^1.6.3",
|
|
69
69
|
"@types/markdown-it": "^14.2.0",
|
|
70
|
-
"@types/node": "^26.
|
|
71
|
-
"eslint": "^10.
|
|
70
|
+
"@types/node": "^26.5.0",
|
|
71
|
+
"eslint": "^10.10.0",
|
|
72
72
|
"jsonc-parser": "^3.3.1",
|
|
73
73
|
"path-browserify": "^1.0.1",
|
|
74
74
|
"vite": "^8.2.2"
|