-
Notifications
You must be signed in to change notification settings - Fork 262
Modernize build dependencies and standardize version management #16838
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
Merged
Merged
Changes from 10 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
88491fc
Upgrade Node.js to v22 and update dependencies
CamSoper cd6f484
Add search-insights peer dependency to theme
CamSoper 63cad7b
Fix Azure storage account name validation in YAML example
CamSoper 036baf3
Add dependabot configuration for npm and GitHub Actions
CamSoper 6e9f949
Add CSS bundle ID support and update minification process
CamSoper 53f4871
Detailed build guide
CamSoper 4ec8016
Revert to Prettier v2.x, performance-tune lint on commit
CamSoper e4c07d3
Update GitHub Actions to use latest versions of checkout and setup ac…
CamSoper 67867c6
pin Algolia autocomplete plugin and dependencies
CamSoper 9a533f0
Add error mapping for 403 Forbidden to 404 Not Found in CloudFront di…
CamSoper 6c7545f
Modernize build dependencies and standardize version management
CamSoper 1d92236
Add note about BUILD-AND-DEPLOY.md for workflow guidance
CamSoper 28e993e
Add link to AI agent instructions in README.md
CamSoper 8c30759
Update markdown linter configuration and add markdown-it dependency
CamSoper f7055bd
chore(deps): suppress typedoc engine warnings in ensure script
CamSoper e983ba1
docs: clarify instructions for reading AGENTS.md before code changes
CamSoper a4f71a8
fix(deps): replace typedoc-plugin-script-inject with native customJs …
CamSoper 1ee9788
chore(deps): suppress pnpm engine warning in ensure script
CamSoper 2066da5
chore(deps): remove obsolete typedoc warning note
CamSoper 7248737
fix(scripts): correct prettier loglevel option in ensure.sh
CamSoper a05cfce
relative path
CamSoper 6c886b5
Merge remote-tracking branch 'origin/master' into CamSoper/issue16259
CamSoper 13be448
Merge remote-tracking branch 'origin/master' into CamSoper/issue16259
CamSoper File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| root = true | ||
|
|
||
| [*] | ||
| charset = utf-8 | ||
| end_of_line = lf | ||
| insert_final_newline = true | ||
| trim_trailing_whitespace = true | ||
|
|
||
| [*.{js,ts,jsx,tsx,json,yaml,yml}] | ||
| indent_style = space | ||
| indent_size = 4 | ||
|
|
||
| [*.{yaml,yml}] | ||
| indent_size = 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,96 @@ | ||
| version: 2 | ||
| updates: | ||
| # Root package.json | ||
| - package-ecosystem: "npm" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "weekly" | ||
| day: "monday" | ||
| time: "09:00" | ||
| open-pull-requests-limit: 10 | ||
| groups: | ||
| aws-sdk: | ||
| patterns: ["@aws-sdk/*"] | ||
| pulumi: | ||
| patterns: ["@pulumi/*"] | ||
| testing: | ||
| patterns: ["cypress", "jest*", "@types/jest"] | ||
| development: | ||
| patterns: ["prettier", "husky", "markdownlint"] | ||
| ignore: | ||
| - dependency-name: "tailwindcss" | ||
| # Stay on Prettier v2.x due to v3.x performance regression (6x slower) | ||
CamSoper marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| # See BUILD-AND-DEPLOY.md for details | ||
| - dependency-name: "prettier" | ||
| update-types: ["version-update:semver-major"] | ||
| labels: ["dependencies", "npm"] | ||
| commit-message: | ||
| prefix: "deps" | ||
| include: "scope" | ||
|
|
||
| # Theme package.json | ||
| - package-ecosystem: "npm" | ||
| directory: "/theme" | ||
| schedule: | ||
| interval: "weekly" | ||
| day: "monday" | ||
| time: "09:00" | ||
| open-pull-requests-limit: 10 | ||
| groups: | ||
| webpack: | ||
| patterns: ["webpack*", "*-loader", "*-webpack-plugin*"] | ||
| algolia: | ||
| patterns: ["@algolia/*", "algoliasearch"] | ||
| ignore: | ||
| - dependency-name: "tailwindcss" | ||
| labels: ["dependencies", "npm", "theme"] | ||
| commit-message: | ||
| prefix: "deps(theme)" | ||
| include: "scope" | ||
|
|
||
| # Stencil package.json | ||
| - package-ecosystem: "npm" | ||
| directory: "/theme/stencil" | ||
| schedule: | ||
| interval: "weekly" | ||
| day: "monday" | ||
| time: "09:00" | ||
| open-pull-requests-limit: 5 | ||
| groups: | ||
| stencil: | ||
| patterns: ["@stencil/*"] | ||
| testing: | ||
| patterns: ["jest*", "puppeteer"] | ||
| labels: ["dependencies", "npm", "stencil"] | ||
| commit-message: | ||
| prefix: "deps(stencil)" | ||
| include: "scope" | ||
|
|
||
| # Infrastructure package.json | ||
| - package-ecosystem: "npm" | ||
| directory: "/infrastructure" | ||
| schedule: | ||
| interval: "weekly" | ||
| day: "monday" | ||
| time: "09:00" | ||
| open-pull-requests-limit: 5 | ||
| groups: | ||
| pulumi: | ||
| patterns: ["@pulumi/*"] | ||
| labels: ["dependencies", "npm", "infrastructure"] | ||
| commit-message: | ||
| prefix: "deps(infra)" | ||
| include: "scope" | ||
|
|
||
| # GitHub Actions | ||
| - package-ecosystem: "github-actions" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "weekly" | ||
| day: "monday" | ||
| time: "09:00" | ||
| open-pull-requests-limit: 5 | ||
| labels: ["dependencies", "github-actions"] | ||
| commit-message: | ||
| prefix: "ci" | ||
| include: "scope" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.