diff --git a/.github/workflows/create_test_patches.yml b/.github/workflows/create_test_patches.yml index 65fb87dbd8..56fa42d293 100644 --- a/.github/workflows/create_test_patches.yml +++ b/.github/workflows/create_test_patches.yml @@ -58,7 +58,7 @@ jobs: # yarn3+ by default disables lockfile alteration in CI. We want it. YARN_ENABLE_IMMUTABLE_INSTALLS: false run: | - PACKAGE_LIST=`find packages -maxdepth 1 -mindepth 1 -type d -exec basename {} \; | egrep -v 'template|invites|dynamic-links'` + PACKAGE_LIST=`find packages -maxdepth 1 -mindepth 1 -type d -exec basename {} \; | egrep -v 'template|invites'` mkdir $HOME/packages for PACKAGE in $PACKAGE_LIST; do echo "Packing PR version of package $PACKAGE" diff --git a/eslint.config.mjs b/eslint.config.mjs index e0df72a64f..522a587b61 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -39,6 +39,7 @@ export default [ 'packages/**/modular/dist/**/*', 'packages/vertexai/__tests__/test-utils', 'packages/vertexai/dist', + 'packages/dynamic-links/**/*', ], }, ...compat diff --git a/package.json b/package.json index 8892fc5147..00756f8d9f 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "build:all:clean": "lerna run build:clean", "build:all:build": "lerna run build", "lint": "yarn lint:js && yarn lint:android && yarn lint:ios:check", - "lint:js": "eslint packages/!(dynamic-links) --max-warnings=0", + "lint:js": "eslint packages/* --max-warnings=0", "lint:android": "(google-java-format --set-exit-if-changed --replace --glob=\"packages/*/android/src/**/*.java\" || (echo \"\n\nandroid formatting error - please re-run\n\n\" && exit 1)) && (git diff --exit-code packages/*/android/src || (echo \"\n\nandroid files changed from linting, please examine and commit result\n\n\" && exit 1))", "lint:ios:check": "clang-format --glob=\"packages/*/ios/**/*.{h,cpp,m,mm}\" --style=Google -n -Werror", "lint:ios:fix": "clang-format -i --glob=\"packages/*/ios/**/*.{h,cpp,m,mm}\" --style=Google",