From f68e3b26c53cbbdbb179fbd70835eb85b8faa071 Mon Sep 17 00:00:00 2001 From: melissag-ensemble <120194874+melissag-ensemble@users.noreply.github.com> Date: Mon, 16 Mar 2026 14:53:18 -0700 Subject: [PATCH 1/5] Auto content update (2026-03-16 21:53:18) --- .../workflows/build-auto-generated-files.yml | 13 +++++ .github/workflows/lint.yml | 51 +++++++++++++------ .gitignore | 8 ++- dev.mjs | 28 ---------- package.json | 21 ++++---- 5 files changed, 63 insertions(+), 58 deletions(-) create mode 100644 .github/workflows/build-auto-generated-files.yml delete mode 100644 dev.mjs diff --git a/.github/workflows/build-auto-generated-files.yml b/.github/workflows/build-auto-generated-files.yml new file mode 100644 index 000000000..c926d91cb --- /dev/null +++ b/.github/workflows/build-auto-generated-files.yml @@ -0,0 +1,13 @@ +--- +name: Build Auto-Generated Files +on: + pull_request: + workflow_dispatch: + +jobs: + build-contributors: + name: Build Auto-Generated Files + if: github.repository != 'AdobeDocs/dev-docs-template' + uses: AdobeDocs/adp-devsite-workflow/.github/workflows/build-auto-generated-files.yml@main + secrets: inherit + \ No newline at end of file diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 18f1e49d3..8c6ddf8da 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,17 +1,36 @@ --- - name: Lint - on: - pull_request: - branches: [main] - paths: - - 'src/pages/**' - - jobs: - lint: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Lint - run: npx --yes github:AdobeDocs/adp-devsite-utils runLint -v \ No newline at end of file + name: Lint + on: + pull_request: + branches: [main] + paths: + - 'src/pages/**' + + jobs: + lint: + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Lint + id: lint + continue-on-error: true + run: npx --yes github:AdobeDocs/adp-devsite-utils runLint -v + + - name: Post Linter Report to PR + if: always() + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + PR_ID: ${{ github.event.pull_request.number }} + GITHUB_REPOSITORY: ${{ github.repository }} + run: | + npm install --no-save github:AdobeDocs/adp-devsite-scripts + node node_modules/adp-devsite-scripts/linter-bot/postLinterReport.js + + - name: Fail if linter found errors + if: steps.lint.outcome == 'failure' + run: exit 1 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 7b703cdee..2a83daa9d 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,7 @@ # npm yarn node_modules -package.lock +package-lock.json yarn-error.log .pnp.* .yarn/* @@ -43,4 +43,8 @@ local-test.yml # yalc .yalc -yalc.lock \ No newline at end of file +yalc.lock + +#txt +linter-output.txt +linter-report.txt diff --git a/dev.mjs b/dev.mjs deleted file mode 100644 index 412e84de7..000000000 --- a/dev.mjs +++ /dev/null @@ -1,28 +0,0 @@ -// content/docs -// serve static on 3001 - -import express from 'express'; -import fs from 'fs'; -import path from 'path'; -import { fileURLToPath } from 'url'; - -const __dirname = path.dirname(fileURLToPath(import.meta.url)); - -const PORT = process.env.DEV_PORT || 3003; - -// TODO: ensure `DOCS_DIRECTORY` starts with `/` -const DOCS_DIRECTORY = process.env.DIRECTORY || './src/pages'; - -const app = express(); -console.log(path.resolve(__dirname, `./${DOCS_DIRECTORY}`)); -app.use( - express.static(path.resolve(__dirname, `./${DOCS_DIRECTORY}`), { - setHeaders: (res) => { - res.setHeader('last-modified', new Date().toGMTString()); - }, - }), -); - -app.listen(PORT, () => { - console.debug(`Docs dev server is running on port ${PORT}`); -}); \ No newline at end of file diff --git a/package.json b/package.json index e2dc9ccc9..1c9373191 100644 --- a/package.json +++ b/package.json @@ -1,32 +1,29 @@ { - "private": true, - "name": "adobe-developer-app-builder", + "name": "dev-docs-template", "version": "1.0.0", "license": "Apache-2.0", "repository": { "type": "git", - "url": "https://github.com/AdobeDocs/app-builder" + "url": "https://github.com/AdobeDocs/dev-docs-template" }, "author": { - "name": "Stephan Ringel", - "url": "https://github.com/icaraps" + "name": "Tim Kim", + "url": "https://github.com/timkim" }, "scripts": { - "dev": "node ./dev.mjs", + "dev": "npx --yes github:AdobeDocs/adp-devsite-utils dev", "buildNavigation": "npx --yes github:AdobeDocs/adp-devsite-utils buildNavigation -v", "buildRedirections": "npx --yes github:AdobeDocs/adp-devsite-utils buildRedirections -v", "renameFiles": "npx --yes github:AdobeDocs/adp-devsite-utils renameFiles -v", "normalizeLinks": "npx --yes github:AdobeDocs/adp-devsite-utils normalizeLinks -v", "buildSiteWideBanner": "npx --yes github:AdobeDocs/adp-devsite-utils buildSiteWideBanner -v", + "buildSiteMetadata": "npx --yes github:AdobeDocs/adp-devsite-utils buildSiteMetadata -v", + "buildContributors": "npx --yes github:AdobeDocs/adp-devsite-utils buildContributors -v", "lint": "npx --yes github:AdobeDocs/adp-devsite-utils runLint -v", "lint:errorOnly": "npx --yes github:AdobeDocs/adp-devsite-utils runLint", - "link:skipdeadlinks": "npx --yes github:AdobeDocs/adp-devsite-utils runLint --skip-dead-links -v", - "link:deadlinkonly": "npx --yes github:AdobeDocs/adp-devsite-utils runLint --dead-links-only -v", + "link:externalLinkOnly": "npx --yes github:AdobeDocs/adp-devsite-utils runLint --external-links-only -v", + "link:checkAllLinks": "npx --yes github:AdobeDocs/adp-devsite-utils runLint --internal-links-only --external-links-only -v", "redirectCheck:stage": "npx --yes github:AdobeDocs/adp-devsite-utils redirectChecker stage --verbose", "redirectCheck:prod": "npx --yes github:AdobeDocs/adp-devsite-utils redirectChecker prod --verbose" - }, - "packageManager": "yarn@3.2.1", - "devDependencies": { - "express": "5.1.0" } } From 9a16dae7536dd532e9d5f313ebd89f85c5e2894b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 16 Mar 2026 21:55:37 +0000 Subject: [PATCH 2/5] Generate contributors --- src/pages/contributors.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/pages/contributors.json diff --git a/src/pages/contributors.json b/src/pages/contributors.json new file mode 100644 index 000000000..b9f0e3096 --- /dev/null +++ b/src/pages/contributors.json @@ -0,0 +1 @@ +{"total":228,"offset":0,"limit":228,"data":[{"page":"/config","avatars":["https://avatars.githubusercontent.com/u/84172705?v=4","https://avatars.githubusercontent.com/u/6577801?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/11652541?v=4","https://avatars.githubusercontent.com/u/46134?v=4","https://avatars.githubusercontent.com/u/4407243?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"3/12/2026"},{"page":"/get_started/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/27/2025"},{"page":"/get_started/app_builder_get_started/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/get_started/app_builder_get_started/ai-development-tools","avatars":["https://avatars.githubusercontent.com/u/84172705?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"3/12/2026"},{"page":"/get_started/app_builder_get_started/app-builder-intro","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/get_started/app_builder_get_started/first-app","avatars":["https://avatars.githubusercontent.com/u/46134?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"2/12/2026"},{"page":"/get_started/app_builder_get_started/publish-app","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/136454403?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"3/5/2026"},{"page":"/get_started/app_builder_get_started/set-up","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/get_started/app_builder_get_started/troubleshoot","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/27/2025"},{"page":"/get_started/runtime_getting_started/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/get_started/runtime_getting_started/activations","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/get_started/runtime_getting_started/deploy","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"4/30/2025"},{"page":"/get_started/runtime_getting_started/entities","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/get_started/runtime_getting_started/how-runtime-works","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"2/3/2026"},{"page":"/get_started/runtime_getting_started/resources","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/get_started/runtime_getting_started/setup","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/get_started/runtime_getting_started/understanding-runtime","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/","avatars":["https://avatars.githubusercontent.com/u/46134?v=4","https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/696727?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/78827399?v=4","https://avatars.githubusercontent.com/u/28722775?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/537688?v=4"],"lastUpdated":"2/12/2026"},{"page":"/guides/app_builder_guides/","avatars":["https://avatars.githubusercontent.com/u/6577801?v=4","https://avatars.githubusercontent.com/u/46134?v=4","https://avatars.githubusercontent.com/u/11652541?v=4","https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"3/5/2026"},{"page":"/guides/app_builder_guides/application_logging/azure-log-analytics","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/application_logging/logging","avatars":["https://avatars.githubusercontent.com/u/32148809?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"3/12/2026"},{"page":"/guides/app_builder_guides/application_logging/new-relic","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/application_logging/splunk-cloud","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/application_logging/splunk-enterprise","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/application-state","avatars":["https://avatars.githubusercontent.com/u/11652541?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"12/11/2025"},{"page":"/guides/app_builder_guides/architecture_overview/app-hooks","avatars":["https://avatars.githubusercontent.com/u/47715589?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"11/20/2025"},{"page":"/guides/app_builder_guides/architecture_overview/architecture-overview","avatars":["https://avatars.githubusercontent.com/u/11652541?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"12/10/2025"},{"page":"/guides/app_builder_guides/architecture_overview/introduction-to-react-spectrum","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/architecture_overview/using-sdks","avatars":["https://avatars.githubusercontent.com/u/11652541?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"12/10/2025"},{"page":"/guides/app_builder_guides/cdn/","avatars":["https://avatars.githubusercontent.com/u/46134?v=4"],"lastUpdated":"2/12/2026"},{"page":"/guides/app_builder_guides/configuration/configuration","avatars":["https://avatars.githubusercontent.com/u/46134?v=4","https://avatars.githubusercontent.com/u/47715589?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/13037215?v=4","https://avatars.githubusercontent.com/u/16779099?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"1/13/2026"},{"page":"/guides/app_builder_guides/configuration/sequences","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"3/4/2026"},{"page":"/guides/app_builder_guides/configuration/webpack-configuration","avatars":["https://avatars.githubusercontent.com/u/84172705?v=4","https://avatars.githubusercontent.com/u/28722775?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"3/12/2026"},{"page":"/guides/app_builder_guides/deployment/cicd-custom","avatars":["https://avatars.githubusercontent.com/u/4407243?v=4"],"lastUpdated":"8/8/2025"},{"page":"/guides/app_builder_guides/deployment/cicd-for-app-builder-apps","avatars":["https://avatars.githubusercontent.com/u/4407243?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"8/8/2025"},{"page":"/guides/app_builder_guides/deployment/cicd-using-github-actions","avatars":["https://avatars.githubusercontent.com/u/6404095?v=4","https://avatars.githubusercontent.com/u/4407243?v=4"],"lastUpdated":"8/26/2025"},{"page":"/guides/app_builder_guides/deployment/credential-rotation","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/deployment/deployment","avatars":["https://avatars.githubusercontent.com/u/4407243?v=4","https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"8/8/2025"},{"page":"/guides/app_builder_guides/deployment/setting-response-headers","avatars":["https://avatars.githubusercontent.com/u/46134?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"2/12/2026"},{"page":"/guides/app_builder_guides/development","avatars":["https://avatars.githubusercontent.com/u/11652541?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/4407243?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"12/10/2025"},{"page":"/guides/app_builder_guides/distribution","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"10/21/2025"},{"page":"/guides/app_builder_guides/exc_app/aec-integration","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/modules","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/27/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/page-objectwithhref","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/page-objectwithpath","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/page-pageapi","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/27/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/page-pageapiproperties","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/27/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/runtime","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/27/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/topbar-callback","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/topbar-customfeedbackconfig","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/27/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/topbar-customsearchconfig","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/27/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/topbar-externalfeedbackconfig","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/27/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/topbar-helpcenterfeedbackconfig","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/27/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/topbar-solution","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/27/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/topbar-topbarapi","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/27/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/topbar-topbarapiproperties","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/27/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/user-userapi","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/exc_app/interfaces/user-userinfo","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/27/2025"},{"page":"/guides/app_builder_guides/exc_app/migrate-app-to-exp-cloud-spa","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/exc_app/modules/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/exc_app/modules/page","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/exc_app/modules/topbar","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/exc_app/modules/user","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/extensions/extension-migration-guide","avatars":["https://avatars.githubusercontent.com/u/46134?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"1/13/2026"},{"page":"/guides/app_builder_guides/extensions/extensions","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/optimization","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/security/","avatars":["https://avatars.githubusercontent.com/u/11652541?v=4","https://avatars.githubusercontent.com/u/6577801?v=4","https://avatars.githubusercontent.com/in/1143301?v=4","https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"2/11/2026"},{"page":"/guides/app_builder_guides/security/understanding-authentication","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/app_builder_guides/storage/","avatars":["https://avatars.githubusercontent.com/u/11652541?v=4","https://avatars.githubusercontent.com/u/6577801?v=4"],"lastUpdated":"3/12/2026"},{"page":"/guides/app_builder_guides/storage/application-state","avatars":["https://avatars.githubusercontent.com/u/6577801?v=4","https://avatars.githubusercontent.com/u/11652541?v=4"],"lastUpdated":"2/17/2026"},{"page":"/guides/app_builder_guides/storage/database","avatars":["https://avatars.githubusercontent.com/u/11652541?v=4","https://avatars.githubusercontent.com/u/6577801?v=4"],"lastUpdated":"3/12/2026"},{"page":"/guides/app_builder_guides/storage/db-best-practices","avatars":["https://avatars.githubusercontent.com/u/11652541?v=4"],"lastUpdated":"3/2/2026"},{"page":"/guides/app_builder_guides/storage/db-commands","avatars":["https://avatars.githubusercontent.com/u/11652541?v=4","https://avatars.githubusercontent.com/u/6577801?v=4"],"lastUpdated":"3/12/2026"},{"page":"/guides/app_builder_guides/storage/db-mongo-compatibility","avatars":["https://avatars.githubusercontent.com/u/11652541?v=4"],"lastUpdated":"3/2/2026"},{"page":"/guides/app_builder_guides/storage/db-runtime-actions","avatars":["https://avatars.githubusercontent.com/u/6577801?v=4","https://avatars.githubusercontent.com/u/11652541?v=4"],"lastUpdated":"3/6/2026"},{"page":"/guides/app_builder_guides/telemetry","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/contribution-guide","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/references","avatars":["https://avatars.githubusercontent.com/u/11652541?v=4","https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"12/10/2025"},{"page":"/guides/runtime_guides/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/runtime_guides/asynchronous-calls","avatars":["https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"10/14/2025"},{"page":"/guides/runtime_guides/ci-cd-pipeline","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/runtime_guides/creating-actions","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/in/1143301?v=4"],"lastUpdated":"2/3/2026"},{"page":"/guides/runtime_guides/creating-rest-apis","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"2/3/2026"},{"page":"/guides/runtime_guides/debugging","avatars":["https://avatars.githubusercontent.com/u/84172705?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"2/13/2026"},{"page":"/guides/runtime_guides/logging-monitoring","avatars":["https://avatars.githubusercontent.com/in/1143301?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"2/3/2026"},{"page":"/guides/runtime_guides/reference_docs/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/runtime_guides/reference_docs/api-ref","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/in/1143301?v=4"],"lastUpdated":"2/3/2026"},{"page":"/guides/runtime_guides/reference_docs/cli-use","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/runtime_guides/reference_docs/configuringproxy","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/runtime_guides/reference_docs/environment-variables","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/runtime_guides/reference_docs/feeds","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"4/30/2025"},{"page":"/guides/runtime_guides/reference_docs/multiple-regions","avatars":["https://avatars.githubusercontent.com/u/1568540?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"1/27/2026"},{"page":"/guides/runtime_guides/reference_docs/packages","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"4/30/2025"},{"page":"/guides/runtime_guides/reference_docs/prepackages","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"3/5/2026"},{"page":"/guides/runtime_guides/reference_docs/runtimes","avatars":["https://avatars.githubusercontent.com/u/28722775?v=4","https://avatars.githubusercontent.com/u/19805283?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"2/3/2026"},{"page":"/guides/runtime_guides/reference_docs/sequences-compositions","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/runtime_guides/reference_docs/triggersrules","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"4/30/2025"},{"page":"/guides/runtime_guides/reference_docs/wsk-use","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/runtime_guides/securing-web-actions","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/runtime_guides/security-general","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/runtime_guides/system-settings","avatars":["https://avatars.githubusercontent.com/u/1568540?v=4","https://avatars.githubusercontent.com/u/4407243?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"1/27/2026"},{"page":"/guides/runtime_guides/throughput-tuning","avatars":["https://avatars.githubusercontent.com/u/1568540?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"1/27/2026"},{"page":"/guides/runtime_guides/tools/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/runtime_guides/tools/cli-install","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/runtime_guides/troubleshooting","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/runtime_guides/using-packages","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/guides/runtime_guides/using-runtime","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/intro_and_overview/","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"10/10/2025"},{"page":"/intro_and_overview/business-case","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/intro_and_overview/community","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"5/26/2025"},{"page":"/intro_and_overview/faq","avatars":["https://avatars.githubusercontent.com/u/11652541?v=4","https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"12/11/2025"},{"page":"/intro_and_overview/release-notes","avatars":["https://avatars.githubusercontent.com/u/247675744?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/38516639?v=4"],"lastUpdated":"1/29/2026"},{"page":"/intro_and_overview/what-is-app-builder","avatars":["https://avatars.githubusercontent.com/u/11652541?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"12/10/2025"},{"page":"/resources/","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/46134?v=4","https://avatars.githubusercontent.com/u/78827399?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/72889866?v=4","https://avatars.githubusercontent.com/u/537688?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/ai-use-cases","avatars":["https://avatars.githubusercontent.com/u/84172705?v=4"],"lastUpdated":"3/12/2026"},{"page":"/resources/asset-compute-worker-ps-api/","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/57922?v=4","https://avatars.githubusercontent.com/u/78827399?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/asset-compute-worker-ps-api/lesson1","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/601729?v=4","https://avatars.githubusercontent.com/u/17300954?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/asset-compute-worker-ps-api/lesson2","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/asset-compute-worker-ps-api/lesson3","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/20048485?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/601729?v=4","https://avatars.githubusercontent.com/u/17300954?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/asset-compute-worker-ps-api/lesson4","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/601729?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/asset-compute-worker-ps-api/requirements","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"2/27/2026"},{"page":"/resources/asset-compute-worker-ps-api/welldone","avatars":["https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"12/11/2024"},{"page":"/resources/barcode-reader/","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/57922?v=4","https://avatars.githubusercontent.com/u/78827399?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/barcode-reader/barcode","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/barcode-reader/bootstrap","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/46134?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/17300954?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/barcode-reader/requirements","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"2/3/2026"},{"page":"/resources/barcode-reader/test","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/barcode-reader/welldone","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/blog-articles","avatars":["https://avatars.githubusercontent.com/u/84172705?v=4","https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"3/5/2026"},{"page":"/resources/ci-cd/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/696727?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/57922?v=4","https://avatars.githubusercontent.com/u/78827399?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/ci-cd/lesson1","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/28722775?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/ci-cd/lesson2","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/ci-cd/lesson3","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/17300954?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/ci-cd/requirements","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"2/3/2026"},{"page":"/resources/ci-cd/welldone","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/cron-jobs/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/57922?v=4","https://avatars.githubusercontent.com/u/78827399?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/cron-jobs/lesson1","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/17300954?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/cron-jobs/lesson2","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/18550571?v=4","https://avatars.githubusercontent.com/u/17300954?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/cron-jobs/lesson3","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"3/5/2026"},{"page":"/resources/cron-jobs/requirements","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"2/3/2026"},{"page":"/resources/cron-jobs/welldone","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/custom-asset-compute-worker/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/57922?v=4","https://avatars.githubusercontent.com/u/78827399?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/custom-asset-compute-worker/aem-cloud-assets","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/custom-asset-compute-worker/lesson1","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/27/2025"},{"page":"/resources/custom-asset-compute-worker/lesson2","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/custom-asset-compute-worker/lesson3","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/601729?v=4","https://avatars.githubusercontent.com/u/17300954?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/custom-asset-compute-worker/lesson4","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/601729?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/custom-asset-compute-worker/lesson5","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/custom-asset-compute-worker/our-worker","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/custom-asset-compute-worker/requirements","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/46134?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"2/3/2026"},{"page":"/resources/custom-asset-compute-worker/welldone","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/customer-dashboard/","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/57922?v=4","https://avatars.githubusercontent.com/u/78827399?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/customer-dashboard/lesson1","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/17300954?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/customer-dashboard/lesson2","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/28722775?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/601729?v=4","https://avatars.githubusercontent.com/u/17300954?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/customer-dashboard/lesson3","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/customer-dashboard/lesson4","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/601729?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/customer-dashboard/lesson5","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/601729?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/customer-dashboard/requirements","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"2/3/2026"},{"page":"/resources/customer-dashboard/welldone","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/debugging/","avatars":["https://avatars.githubusercontent.com/u/46134?v=4","https://avatars.githubusercontent.com/u/57922?v=4","https://avatars.githubusercontent.com/u/78827399?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"12/11/2024"},{"page":"/resources/debugging/lesson1","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/46134?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/debugging/lesson2","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/46134?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/debugging/lesson3","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/39759830?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/debugging/requirements","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"2/3/2026"},{"page":"/resources/debugging/welldone","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/event-driven/","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/57922?v=4","https://avatars.githubusercontent.com/u/78827399?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/event-driven/lesson1","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/17300954?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/event-driven/lesson2","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/event-driven/lesson3","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/8183885?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/28722775?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/17300954?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/event-driven/lesson4","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/28722775?v=4","https://avatars.githubusercontent.com/u/17300954?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/event-driven/requirements","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"2/3/2026"},{"page":"/resources/event-driven/welldone","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/28722775?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/events-runtime/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/57922?v=4","https://avatars.githubusercontent.com/u/78827399?v=4","https://avatars.githubusercontent.com/u/28722775?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"6/10/2025"},{"page":"/resources/events-runtime/lesson1","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/events-runtime/lesson2","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/events-runtime/requirements","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"2/3/2026"},{"page":"/resources/events-runtime/welldone","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/journaling-events/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/28722775?v=4","https://avatars.githubusercontent.com/u/57922?v=4","https://avatars.githubusercontent.com/u/78827399?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/journaling-events/lesson1","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/17300954?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/journaling-events/lesson2","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/journaling-events/lesson3","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/17300954?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/journaling-events/requirements","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/28722775?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"2/3/2026"},{"page":"/resources/journaling-events/welldone","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/sample_apps/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/57922?v=4","https://avatars.githubusercontent.com/u/78827399?v=4","https://avatars.githubusercontent.com/u/5928555?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/sample_apps/code_snippets/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/28722775?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/sample_apps/code_snippets/analytics","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/sample_apps/code_snippets/events","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/sample_apps/code_snippets/files","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/sample_apps/code_snippets/state","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/sample_apps/demo","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/spectrum-intro/","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/57922?v=4","https://avatars.githubusercontent.com/u/78827399?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/spectrum-intro/lesson1","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/spectrum-intro/lesson2","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/spectrum-intro/lesson3","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/spectrum-intro/lesson4","avatars":["https://avatars.githubusercontent.com/u/46134?v=4","https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/22502609?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/17300954?v=4"],"lastUpdated":"2/12/2026"},{"page":"/resources/spectrum-intro/requirements","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"2/3/2026"},{"page":"/resources/spectrum-intro/welldone","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/todo-app/","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/57922?v=4","https://avatars.githubusercontent.com/u/78827399?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/todo-app/lesson1","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4","https://avatars.githubusercontent.com/u/17300954?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/todo-app/lesson2","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/todo-app/lesson3","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/todo-app/lesson4","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/todo-app/lesson5","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/todo-app/lesson6","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/todo-app/requirements","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"2/3/2026"},{"page":"/resources/todo-app/welldone","avatars":["https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/36107?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"4/30/2025"},{"page":"/resources/transclusions/requirements","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/696727?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/developers-live/asset-compute-service-extensibility","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/developers-live/deep-dive","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/developers-live/extend-experience-cloud","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/exploring/ci-cd","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/696727?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/exploring/custom-events","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/exploring/dashboard-case-study","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/exploring/debugging","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/exploring/deep-dive-use-cases","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/exploring/learning-resources","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/exploring/live-wired-sneak","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/exploring/ode-case-study","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/exploring/projects-and-workspaces","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/exploring/react-spectrum","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/exploring/softcrylic-showcase","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/overview/architecture","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/overview/e2-e-user-journey","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/overview/getting-started","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/overview/introduction","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/38516639?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"},{"page":"/resources/videos/overview/security","avatars":["https://avatars.githubusercontent.com/u/14320591?v=4","https://avatars.githubusercontent.com/u/6012307?v=4"],"lastUpdated":"5/26/2025"}],":type":"sheet"} \ No newline at end of file From c75fadaced695eab2067eae17d8273d2802bef77 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 16 Mar 2026 21:56:03 +0000 Subject: [PATCH 3/5] Generate site metadata --- src/pages/adp-site-metadata.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/adp-site-metadata.json b/src/pages/adp-site-metadata.json index d088b02d5..59fd870e0 100644 --- a/src/pages/adp-site-metadata.json +++ b/src/pages/adp-site-metadata.json @@ -1 +1 @@ -{"total":3,"offset":0,"limit":3,"data":[{"key":"contributors","value":null},{"key":"get-credentials","value":null},{"key":"site-wide-banner","value":null}],":type":"sheet"} \ No newline at end of file +{"total":3,"offset":0,"limit":3,"data":[{"key":"contributors","value":"src/pages/contributors.json"},{"key":"get-credentials","value":null},{"key":"site-wide-banner","value":null}],":type":"sheet"} \ No newline at end of file From 5eb6872b873bc49258659f87f158350032f1ad84 Mon Sep 17 00:00:00 2001 From: melissag-ensemble <120194874+melissag-ensemble@users.noreply.github.com> Date: Mon, 16 Mar 2026 14:57:17 -0700 Subject: [PATCH 4/5] fix: preserve repo-specific fields in package.json --- package.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1c9373191..9f591ccce 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,11 @@ { - "name": "dev-docs-template", + "private": true, + "name": "adobe-developer-app-builder", "version": "1.0.0", "license": "Apache-2.0", "repository": { "type": "git", - "url": "https://github.com/AdobeDocs/dev-docs-template" + "url": "https://github.com/AdobeDocs/app-builder" }, "author": { "name": "Tim Kim", @@ -21,9 +22,15 @@ "buildContributors": "npx --yes github:AdobeDocs/adp-devsite-utils buildContributors -v", "lint": "npx --yes github:AdobeDocs/adp-devsite-utils runLint -v", "lint:errorOnly": "npx --yes github:AdobeDocs/adp-devsite-utils runLint", + "link:skipdeadlinks": "npx --yes github:AdobeDocs/adp-devsite-utils runLint --skip-dead-links -v", + "link:deadlinkonly": "npx --yes github:AdobeDocs/adp-devsite-utils runLint --dead-links-only -v", "link:externalLinkOnly": "npx --yes github:AdobeDocs/adp-devsite-utils runLint --external-links-only -v", "link:checkAllLinks": "npx --yes github:AdobeDocs/adp-devsite-utils runLint --internal-links-only --external-links-only -v", "redirectCheck:stage": "npx --yes github:AdobeDocs/adp-devsite-utils redirectChecker stage --verbose", "redirectCheck:prod": "npx --yes github:AdobeDocs/adp-devsite-utils redirectChecker prod --verbose" + }, + "packageManager": "yarn@3.2.1", + "devDependencies": { + "express": "5.1.0" } } From 256fc9c5502d61c50e4113589323386c9b4cccc9 Mon Sep 17 00:00:00 2001 From: melissag-ensemble <120194874+melissag-ensemble@users.noreply.github.com> Date: Mon, 16 Mar 2026 14:57:18 -0700 Subject: [PATCH 5/5] fix: preserve original entries, replace package.lock, add template entries --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2a83daa9d..1476c3f5b 100644 --- a/.gitignore +++ b/.gitignore @@ -45,6 +45,6 @@ local-test.yml .yalc yalc.lock -#txt +# Added by update-bot linter-output.txt linter-report.txt