zenith-language 0.4.1 → 0.4.5
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.
|
@@ -129,7 +129,14 @@ jobs:
|
|
|
129
129
|
# Match changed files to packages
|
|
130
130
|
CHANGED_PKGS=""
|
|
131
131
|
for pkg in $PACKAGES; do
|
|
132
|
-
|
|
132
|
+
MATCHED=false
|
|
133
|
+
if [ "$pkg" = "." ]; then
|
|
134
|
+
if [ -n "$CHANGED_FILES" ]; then MATCHED=true; fi
|
|
135
|
+
elif echo "$CHANGED_FILES" | grep -q "^$pkg/"; then
|
|
136
|
+
MATCHED=true
|
|
137
|
+
fi
|
|
138
|
+
|
|
139
|
+
if [ "$MATCHED" = "true" ]; then
|
|
133
140
|
if [ -z "$CHANGED_PKGS" ]; then
|
|
134
141
|
CHANGED_PKGS="\"$pkg\""
|
|
135
142
|
else
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "zenith-language",
|
|
3
3
|
"displayName": "Zenith Language Support",
|
|
4
4
|
"description": "Syntax highlighting, IntelliSense, and editor support for Zenith Framework (.zen files)",
|
|
5
|
-
"version": "0.4.
|
|
5
|
+
"version": "0.4.5",
|
|
6
6
|
"publisher": "ZenithBuild",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.80.0"
|
|
@@ -107,4 +107,4 @@
|
|
|
107
107
|
"dependencies": {
|
|
108
108
|
"vscode-languageclient": "^9.0.1"
|
|
109
109
|
}
|
|
110
|
-
}
|
|
110
|
+
}
|