@zenithbuild/language-server 0.2.2 → 0.2.6

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
- if echo "$CHANGED_FILES" | grep -q "^$pkg/"; then
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenithbuild/language-server",
3
- "version": "0.2.2",
3
+ "version": "0.2.6",
4
4
  "description": "Language Server for Zenith Framework",
5
5
  "main": "./dist/server.js",
6
6
  "types": "./dist/server.d.ts",
@@ -31,4 +31,4 @@
31
31
  "type": "git",
32
32
  "url": "https://github.com/zenithbuild/zenith-language-server.git"
33
33
  }
34
- }
34
+ }