Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update plugin-mux dependency in test and studio-e2-testing #8520

Open
wants to merge 2 commits into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev/studio-e2e-testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"sanity": "workspace:*",
"sanity-plugin-markdown": "^5.0.0",
"sanity-plugin-media": "^2.3.1",
"sanity-plugin-mux-input": "^2.2.1",
"sanity-plugin-mux-input": "^2.5.0",
"sanity-test-studio": "workspace:*",
"styled-components": "^6.1.0"
}
Expand Down
2 changes: 1 addition & 1 deletion dev/test-studio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"sanity-plugin-hotspot-array": "^2.0.0",
"sanity-plugin-markdown": "^5.0.0",
"sanity-plugin-media": "^2.3.1",
"sanity-plugin-mux-input": "^2.2.1",
"sanity-plugin-mux-input": "^2.5.0",
"styled-components": "^6.1.11"
},
"devDependencies": {
Expand Down
10 changes: 5 additions & 5 deletions package.json
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All of this happened due to some formatting issues.
Ran npx prettier --write package.json to get the CI to pass

Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"check:format": "prettier . --check",
"check:lint": "turbo run lint --continue -- --quiet",
"check:react-compiler": "eslint --cache --no-inline-config --no-eslintrc --ext .cjs,.mjs,.js,.jsx,.ts,.tsx --parser @typescript-eslint/parser --plugin react-compiler --rule 'react-compiler/react-compiler: [warn]' --ignore-path .eslintignore.react-compiler --max-warnings 25 .",
"report:react-compiler-bailout": "eslint --cache --no-inline-config --no-eslintrc --ext .cjs,.mjs,.js,.jsx,.ts,.tsx --parser @typescript-eslint/parser --plugin react-compiler --rule 'react-compiler/react-compiler: [error,{__unstable_donotuse_reportAllBailouts:true}]' --ignore-path .eslintignore.react-compiler -f ./scripts/reactCompilerBailouts.cjs . || true",
"check:test": "run-s test -- --silent",
"check:types": "tsc && turbo run check:types --filter='./packages/*' --filter='./packages/@sanity/*'",
"report:react-compiler-bailout": "eslint --cache --no-inline-config --no-eslintrc --ext .cjs,.mjs,.js,.jsx,.ts,.tsx --parser @typescript-eslint/parser --plugin react-compiler --rule 'react-compiler/react-compiler: [error,{__unstable_donotuse_reportAllBailouts:true}]' --ignore-path .eslintignore.react-compiler -f ./scripts/reactCompilerBailouts.cjs . || true",
"chore:format:fix": "prettier --cache --write .",
"chore:lint:fix": "turbo run lint -- --quiet --fix",
"chore:normalize-versions": "node -r esbuild-register scripts/normalizeDependencyVersions.ts",
Expand All @@ -30,7 +30,6 @@
"deploy:movies": "pnpm build && cd examples/movies-studio && sanity deploy",
"deploy:test": "pnpm build && cd dev/test-studio && sanity deploy",
"dev": "pnpm dev:test-studio",
"generate:docs": "tsx --env-file=.env.local ./scripts/generate-documents/cli.ts",
"dev:cli": "pnpm watch",
"dev:design-studio": "pnpm --filter design-studio dev",
"dev:embedded-studio": "pnpm --filter embedded-studio dev",
Expand All @@ -45,6 +44,7 @@
"dev:million-lint": "pnpm report:react-compiler-bailout && pnpm dev:test-studio-million-lint",
"dev:million-lint-everything": "REACT_MILLION_LINT=true REACT_MILLION_LINT_EVERYTHING=true pnpm --filter sanity-test-studio dev",
"dev:test-studio-million-lint": "REACT_MILLION_LINT=true pnpm --filter sanity-test-studio dev",
"generate:docs": "tsx --env-file=.env.local ./scripts/generate-documents/cli.ts",
"docs:report": "node -r dotenv-flow/config -r esbuild-register scripts/doc-report/docReport",
"docs:report:cleanup": "node -r dotenv-flow/config -r esbuild-register scripts/doc-report/docReportCleanup",
"docs:report:create": "node -r dotenv-flow/config -r esbuild-register scripts/doc-report/docReportCreate",
Expand All @@ -62,9 +62,11 @@
"example:clean-studio": "cd examples/blog-studio && pnpm start",
"example:ecommerce-studio": "cd examples/blog-studio && pnpm start",
"example:example-studio": "cd examples/blog-studio && pnpm start",
"prepublishOnly": "pnpm build",
"example:movies-studio": "cd examples/blog-studio && pnpm start",
"prepublishOnly": "pnpm build",
"preinstall": "npx only-allow pnpm",
"install:deps": "pnpm install",
"postinstall": "husky",
"lint": "pnpm check:lint",
"lint:fix": "run-s chore:lint:fix",
"list:deps-updates": "npm-check-updates --workspaces --root -m",
Expand All @@ -75,8 +77,6 @@
"perf:studio:build": "pnpm build --filter=perf-studio",
"perf:studio:dev": "cd perf/studio && pnpm dev",
"perf:test": "cd perf/tests && pnpm perf:test",
"preinstall": "npx only-allow pnpm",
"postinstall": "husky",
"prettier": "prettier --cache .",
"prettify": "lerna run clean && prettier --cache --write .",
"publish:tarball": "node -r esbuild-register scripts/publish/tarball",
Expand Down
Loading
Loading