We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0df9265 commit e26d9daCopy full SHA for e26d9da
.circleci/config.yml
@@ -202,8 +202,9 @@ jobs:
202
# Check if package.json differs
203
diff plotly/labextension/package.json plotly/labextension-tmp/package.json > package_json_diff.txt || true
204
205
- # Filter package.json diff to ignore allowed hash changes (e.g. jupyterlab/build keys)
206
- grep -vE '"(jupyterlab|build)"\s*:' package_json_diff.txt > package_json_diff_filtered.txt
+
+ # Allow only the "load": "static/..." line to differ
207
+ grep -vE '"load": "static/.*\.js"' package_json_diff.txt > package_json_diff_filtered.txt
208
209
# Check both filtered diffs
210
if [ -s filtered_diff.txt ] || [ -s package_json_diff_filtered.txt ]; then
0 commit comments