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(react-carousel): fluent v9 carousel control responsiveness for mobile/small devices #33886

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Next Next commit
feat(nx-cloud): setup nx cloud workspace
This commit sets up Nx Cloud for your Nx workspace, enabling distributed caching and the Nx Cloud GitHub integration for fast CI and improved developer experience.

You can access your Nx Cloud workspace by going to
https://cloud.nx.app/orgs/679f823a65c43fc4a1ac99c8/workspaces/679f831f71fd2cb4bf200ec8

**Note:** This commit attempts to maintain formatting of the nx.json file, however you may need to correct formatting by running an nx format command and committing the changes.
  • Loading branch information
iwint committed Feb 2, 2025
commit bdcb6cff8cbc23a4b9dac313a0cc3f132f3b450d
79 changes: 61 additions & 18 deletions nx.json
Original file line number Diff line number Diff line change
@@ -11,38 +11,63 @@
},
"targetDefaults": {
"bundle-size": {
"dependsOn": ["^build"],
"dependsOn": [
"^build"
],
"cache": true
},
"bundle": {
"cache": true,
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"build": {
"dependsOn": ["^build"],
"inputs": ["production", "^production"],
"dependsOn": [
"^build"
],
"inputs": [
"production",
"^production"
],
"cache": true
},
"build-storybook": {
"dependsOn": [],
"inputs": ["default", "{workspaceRoot}/.storybook/**", "{projectRoot}/.storybook/**"],
"inputs": [
"default",
"{workspaceRoot}/.storybook/**",
"{projectRoot}/.storybook/**"
],
"cache": true
},
"generate-api": {
"dependsOn": ["^generate-api"],
"dependsOn": [
"^generate-api"
],
"cache": true
},
"type-check": {
"dependsOn": ["^build"],
"dependsOn": [
"^build"
],
"cache": true
},
"prepare": {
"dependsOn": ["^prepare"],
"dependsOn": [
"^prepare"
],
"cache": true
},
"test": {
"dependsOn": ["^build"],
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
"dependsOn": [
"^build"
],
"inputs": [
"default",
"^production",
"{workspaceRoot}/jest.preset.js"
],
"cache": true
},
"test-ssr": {
@@ -51,10 +76,16 @@
"e2e": {
"dependsOn": [],
"cache": true,
"inputs": ["default", "{projectRoot}/cypress.config.ts", "!{projectRoot}/**/?(*.)+cy.[jt]s?(x)?"]
"inputs": [
"default",
"{projectRoot}/cypress.config.ts",
"!{projectRoot}/**/?(*.)+cy.[jt]s?(x)?"
]
},
"lint": {
"dependsOn": ["build"],
"dependsOn": [
"build"
],
"cache": true,
"inputs": [
"default",
@@ -64,11 +95,17 @@
]
},
"verify-packaging": {
"dependsOn": ["^build"],
"dependsOn": [
"^build"
],
"cache": true
},
"@nx/jest:jest": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
"inputs": [
"default",
"^production",
"{workspaceRoot}/jest.preset.js"
],
"cache": true,
"options": {
"passWithNoTests": true
@@ -82,7 +119,10 @@
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"sharedGlobals": [],
"production": [
"default",
@@ -98,11 +138,14 @@
"northstar": {
"releaseTagPattern": "@fluentui/react-northstar_v{version}",
"projectsRelationship": "fixed",
"projects": ["packages/fluentui/*"]
"projects": [
"packages/fluentui/*"
]
}
}
},
"parallel": 3,
"useInferencePlugins": false,
"defaultBase": "master"
}
"defaultBase": "master",
"nxCloudAccessToken": "ZTAyOTBkMjAtMDAwNy00ZTllLTg5NzktNTdhNjQzOTJlMDRkfHJlYWQtd3JpdGU="
}