@pixelated-tech/components 3.7.9 â 3.7.10
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/scripts/release.sh +2 -2
- package/package.json +1 -1
package/dist/scripts/release.sh
CHANGED
|
@@ -143,7 +143,7 @@ fi
|
|
|
143
143
|
echo ""
|
|
144
144
|
echo "đž Step 5: Committing changes..."
|
|
145
145
|
echo "================================================="
|
|
146
|
-
if
|
|
146
|
+
if grep -q "\"config:encrypt\":" package.json && [ -f "./src/app/config/pixelated.config.json" ]; then
|
|
147
147
|
echo "đ Encrypting configuration..."
|
|
148
148
|
npm run config:encrypt
|
|
149
149
|
fi
|
|
@@ -200,7 +200,7 @@ else
|
|
|
200
200
|
echo "âšī¸ Tag v$new_version already exists"
|
|
201
201
|
fi
|
|
202
202
|
|
|
203
|
-
if
|
|
203
|
+
if grep -q "\"config:decrypt\":" package.json && [ -f "./src/app/config/pixelated.config.json" ]; then
|
|
204
204
|
echo "đ Decrypting configuration for local development..."
|
|
205
205
|
npm run config:decrypt
|
|
206
206
|
fi
|