@treeseed/sdk 0.6.31 → 0.6.32
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/package.json
CHANGED
|
@@ -184,9 +184,11 @@ jobs:
|
|
|
184
184
|
set -euo pipefail
|
|
185
185
|
npm run verify:local 2>&1 | tee verify.log
|
|
186
186
|
if test -f ./packages/sdk/scripts/check-build-warnings.mjs; then
|
|
187
|
-
node ./packages/sdk/scripts/check-build-warnings.mjs verify.log
|
|
187
|
+
node ./packages/sdk/scripts/check-build-warnings.mjs verify.log \
|
|
188
|
+
--allow 'Module "url" has been externalized for browser compatibility, imported by ".*libsodium-sumo.*"'
|
|
188
189
|
elif test -f ./node_modules/@treeseed/sdk/dist/scripts/check-build-warnings.js; then
|
|
189
|
-
node ./node_modules/@treeseed/sdk/dist/scripts/check-build-warnings.js verify.log
|
|
190
|
+
node ./node_modules/@treeseed/sdk/dist/scripts/check-build-warnings.js verify.log \
|
|
191
|
+
--allow 'Module "url" has been externalized for browser compatibility, imported by ".*libsodium-sumo.*"'
|
|
190
192
|
else
|
|
191
193
|
echo "Unable to resolve @treeseed/sdk warning scanner entrypoint."
|
|
192
194
|
exit 1
|