claudeship 0.2.19 → 0.2.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apps/server/dist/chat/chat.controller.d.ts +1 -1
- package/apps/server/dist/chat/chat.service.d.ts +1 -1
- package/apps/server/dist/database/database.module.js +15 -4
- package/apps/server/dist/database/database.module.js.map +1 -1
- package/apps/server/dist/database/infra/database-infra.controller.d.ts +14 -0
- package/apps/server/dist/database/infra/database-infra.controller.js +121 -0
- package/apps/server/dist/database/infra/database-infra.controller.js.map +1 -0
- package/apps/server/dist/database/infra/database-infra.service.d.ts +34 -0
- package/apps/server/dist/database/infra/database-infra.service.js +130 -0
- package/apps/server/dist/database/infra/database-infra.service.js.map +1 -0
- package/apps/server/dist/database/infra/docker.service.d.ts +34 -0
- package/apps/server/dist/database/infra/docker.service.js +186 -0
- package/apps/server/dist/database/infra/docker.service.js.map +1 -0
- package/apps/server/dist/database/infra/index.d.ts +4 -0
- package/apps/server/dist/database/infra/index.js +21 -0
- package/apps/server/dist/database/infra/index.js.map +1 -0
- package/apps/server/dist/database/infra/postgres-container.service.d.ts +31 -0
- package/apps/server/dist/database/infra/postgres-container.service.js +163 -0
- package/apps/server/dist/database/infra/postgres-container.service.js.map +1 -0
- package/apps/server/dist/database/infra/sqlite-infra.service.d.ts +14 -0
- package/apps/server/dist/database/infra/sqlite-infra.service.js +121 -0
- package/apps/server/dist/database/infra/sqlite-infra.service.js.map +1 -0
- package/apps/server/dist/project/project.controller.d.ts +7 -0
- package/apps/server/dist/project/project.module.js +2 -1
- package/apps/server/dist/project/project.module.js.map +1 -1
- package/apps/server/dist/project/project.service.d.ts +10 -1
- package/apps/server/dist/project/project.service.js +35 -3
- package/apps/server/dist/project/project.service.js.map +1 -1
- package/apps/server/dist/tsconfig.tsbuildinfo +1 -1
- package/apps/server/package.json +1 -1
- package/apps/server/prisma/dev.db +0 -0
- package/apps/server/prisma/migrations/20260109053359_add_database_provider/migration.sql +11 -0
- package/apps/server/prisma/schema.prisma +16 -5
- package/apps/web/.next/BUILD_ID +1 -1
- package/apps/web/.next/app-build-manifest.json +8 -8
- package/apps/web/.next/build-manifest.json +2 -2
- package/apps/web/.next/cache/.previewinfo +1 -1
- package/apps/web/.next/cache/.rscinfo +1 -1
- package/apps/web/.next/cache/.tsbuildinfo +1 -1
- package/apps/web/.next/cache/config.json +3 -3
- package/apps/web/.next/cache/eslint/.cache_j3uhuz +1 -1
- package/apps/web/.next/cache/webpack/client-production/0.pack +0 -0
- package/apps/web/.next/cache/webpack/client-production/index.pack +0 -0
- package/apps/web/.next/cache/webpack/edge-server-production/index.pack +0 -0
- package/apps/web/.next/cache/webpack/server-production/0.pack +0 -0
- package/apps/web/.next/cache/webpack/server-production/index.pack +0 -0
- package/apps/web/.next/prerender-manifest.json +13 -13
- package/apps/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/apps/web/.next/server/app/_not-found.html +1 -1
- package/apps/web/.next/server/app/_not-found.rsc +2 -2
- package/apps/web/.next/server/app/index.html +1 -1
- package/apps/web/.next/server/app/index.rsc +3 -3
- package/apps/web/.next/server/app/page.js +1 -1
- package/apps/web/.next/server/app/page.js.nft.json +1 -1
- package/apps/web/.next/server/app/page_client-reference-manifest.js +1 -1
- package/apps/web/.next/server/app/project/[id]/page.js +2 -2
- package/apps/web/.next/server/app/project/[id]/page.js.nft.json +1 -1
- package/apps/web/.next/server/app/project/[id]/page_client-reference-manifest.js +1 -1
- package/apps/web/.next/server/app/settings/page.js +2 -2
- package/apps/web/.next/server/app/settings/page.js.nft.json +1 -1
- package/apps/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
- package/apps/web/.next/server/app/settings.html +1 -1
- package/apps/web/.next/server/app/settings.rsc +3 -3
- package/apps/web/.next/server/chunks/{811.js → 526.js} +1 -1
- package/apps/web/.next/server/pages/404.html +1 -1
- package/apps/web/.next/server/pages/500.html +1 -1
- package/apps/web/.next/server/server-reference-manifest.json +1 -1
- package/apps/web/.next/static/chunks/193-9e44b5a1ad3e0586.js +1 -0
- package/apps/web/.next/static/chunks/700-75e1212e819e279c.js +1 -0
- package/apps/web/.next/static/chunks/app/page-6f2bfb6c9202164b.js +1 -0
- package/apps/web/.next/static/chunks/app/project/[id]/page-388d14835cae411b.js +1 -0
- package/apps/web/.next/static/chunks/app/settings/page-34c4ce9b8e645903.js +1 -0
- package/apps/web/.next/static/css/70f2a13cf3d254d8.css +3 -0
- package/apps/web/.next/trace +18 -18
- package/apps/web/package.json +1 -1
- package/apps/web/src/app/settings/page.tsx +138 -2
- package/apps/web/src/components/chat/MessageInput.tsx +5 -8
- package/apps/web/src/components/chat/QueuePreview.tsx +98 -0
- package/apps/web/src/components/chat/StreamingMessage.tsx +126 -20
- package/apps/web/src/components/project/ProjectCard.tsx +12 -2
- package/apps/web/src/stores/useChatStore.ts +26 -6
- package/package.json +1 -1
- package/packages/shared/src/types/project.ts +6 -0
- package/apps/web/.next/static/chunks/574-1fe2bcd6cfb41646.js +0 -1
- package/apps/web/.next/static/chunks/992-806bad722ba16222.js +0 -1
- package/apps/web/.next/static/chunks/app/page-8310956d8eae9762.js +0 -1
- package/apps/web/.next/static/chunks/app/project/[id]/page-c28098a9b8a94336.js +0 -1
- package/apps/web/.next/static/chunks/app/settings/page-3532fad509d55b77.js +0 -1
- package/apps/web/.next/static/css/0a24552d9794f8c8.css +0 -3
- /package/apps/web/.next/static/{oNlRdQOvyo3lMU4vZQSEf → UHB0ELmeUrSRXrnycF8qv}/_buildManifest.js +0 -0
- /package/apps/web/.next/static/{oNlRdQOvyo3lMU4vZQSEf → UHB0ELmeUrSRXrnycF8qv}/_ssgManifest.js +0 -0
package/apps/web/.next/trace
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
[{"name":"generate-buildid","duration":278,"timestamp":131477041,"id":4,"parentId":1,"tags":{},"startTime":1767754675655,"traceId":"2c8d09f5a579ad25"},{"name":"load-custom-routes","duration":433,"timestamp":131477459,"id":5,"parentId":1,"tags":{},"startTime":1767754675656,"traceId":"2c8d09f5a579ad25"},{"name":"create-dist-dir","duration":76555,"timestamp":131625147,"id":6,"parentId":1,"tags":{},"startTime":1767754675803,"traceId":"2c8d09f5a579ad25"},{"name":"create-pages-mapping","duration":289,"timestamp":131708748,"id":7,"parentId":1,"tags":{},"startTime":1767754675887,"traceId":"2c8d09f5a579ad25"},{"name":"collect-app-files","duration":15444,"timestamp":131709075,"id":8,"parentId":1,"tags":{},"startTime":1767754675887,"traceId":"2c8d09f5a579ad25"},{"name":"create-app-mapping","duration":1406,"timestamp":131724550,"id":9,"parentId":1,"tags":{},"startTime":1767754675903,"traceId":"2c8d09f5a579ad25"},{"name":"create-app-layouts","duration":176,"timestamp":131725988,"id":10,"parentId":1,"tags":{},"startTime":1767754675904,"traceId":"2c8d09f5a579ad25"},{"name":"collect-default-files","duration":701,"timestamp":131731336,"id":12,"parentId":1,"tags":{},"startTime":1767754675910,"traceId":"2c8d09f5a579ad25"},{"name":"generate-route-types","duration":22007,"timestamp":131726580,"id":11,"parentId":1,"tags":{},"startTime":1767754675905,"traceId":"2c8d09f5a579ad25"},{"name":"public-dir-conflict-check","duration":633,"timestamp":131748746,"id":13,"parentId":1,"tags":{},"startTime":1767754675927,"traceId":"2c8d09f5a579ad25"},{"name":"generate-routes-manifest","duration":2641,"timestamp":131749585,"id":14,"parentId":1,"tags":{},"startTime":1767754675928,"traceId":"2c8d09f5a579ad25"},{"name":"create-entrypoints","duration":31502,"timestamp":132728792,"id":18,"parentId":16,"tags":{},"startTime":1767754676907,"traceId":"2c8d09f5a579ad25"},{"name":"generate-webpack-config","duration":148096,"timestamp":132760506,"id":19,"parentId":17,"tags":{},"startTime":1767754676939,"traceId":"2c8d09f5a579ad25"},{"name":"next-trace-entrypoint-plugin","duration":3669,"timestamp":133044143,"id":21,"parentId":20,"tags":{},"startTime":1767754677222,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":43656,"timestamp":133162722,"id":35,"parentId":24,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_app.js","layer":"pages-dir-node"},"startTime":1767754677341,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":149441,"timestamp":133165642,"id":36,"parentId":29,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_document.js","layer":"pages-dir-node"},"startTime":1767754677344,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":259,"timestamp":133324138,"id":37,"parentId":35,"tags":{"name":"react/jsx-runtime","layer":null},"startTime":1767754677502,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":96,"timestamp":133324450,"id":38,"parentId":35,"tags":{"name":"react","layer":null},"startTime":1767754677503,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":192889,"timestamp":133147164,"id":30,"parentId":25,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!","layer":"pages-dir-node"},"startTime":1767754677325,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2683,"timestamp":133429540,"id":39,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/get-page-files.js","layer":"pages-dir-node"},"startTime":1767754677608,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4322,"timestamp":133430098,"id":40,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/htmlescape.js","layer":"pages-dir-node"},"startTime":1767754677608,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8583,"timestamp":133430466,"id":41,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/utils.js","layer":"pages-dir-node"},"startTime":1767754677609,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10268,"timestamp":133430650,"id":42,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"pages-dir-node"},"startTime":1767754677609,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12356,"timestamp":133430735,"id":43,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/pretty-bytes.js","layer":"pages-dir-node"},"startTime":1767754677609,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":410174,"timestamp":133150794,"id":31,"parentId":23,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2F_not-found%2Fpage&name=app%2F_not-found%2Fpage&pagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767754677329,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":407510,"timestamp":133161622,"id":32,"parentId":26,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2Fpage&name=app%2Fpage&pagePath=private-next-app-dir%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767754677340,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13043,"timestamp":133589167,"id":47,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/tracer.js","layer":"pages-dir-node"},"startTime":1767754677767,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13533,"timestamp":133589236,"id":48,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/utils.js","layer":"pages-dir-node"},"startTime":1767754677767,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":36245,"timestamp":133588571,"id":44,"parentId":35,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"pages-dir-node"},"startTime":1767754677767,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":40963,"timestamp":133588756,"id":45,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/constants.js","layer":"pages-dir-node"},"startTime":1767754677767,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":41158,"timestamp":133589045,"id":46,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":"pages-dir-node"},"startTime":1767754677767,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":41786,"timestamp":133589303,"id":49,"parentId":42,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"pages-dir-node"},"startTime":1767754677768,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":62,"timestamp":133632498,"id":50,"parentId":31,"tags":{"name":"path","layer":null},"startTime":1767754677811,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":38,"timestamp":133632639,"id":51,"parentId":31,"tags":{"name":"next/dist/shared/lib/router/utils/app-paths","layer":null},"startTime":1767754677811,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":23,"timestamp":133632696,"id":52,"parentId":31,"tags":{"name":"next/dist/shared/lib/router/utils/is-bot","layer":null},"startTime":1767754677811,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-external","duration":18,"timestamp":133632737,"id":53,"parentId":31,"tags":{"name":"next/dist/shared/lib/no-fallback-error.external","layer":null},"startTime":1767754677811,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7274,"timestamp":133637687,"id":54,"parentId":39,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":"pages-dir-node"},"startTime":1767754677816,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8159,"timestamp":133637864,"id":55,"parentId":39,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-page-path.js","layer":"pages-dir-node"},"startTime":1767754677816,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":584993,"timestamp":133162396,"id":34,"parentId":28,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2Fsettings%2Fpage&name=app%2Fsettings%2Fpage&pagePath=private-next-app-dir%2Fsettings%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fsettings%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767754677341,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":630531,"timestamp":133162026,"id":33,"parentId":27,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2Fproject%2F%5Bid%5D%2Fpage&name=app%2Fproject%2F%5Bid%5D%2Fpage&pagePath=private-next-app-dir%2Fproject%2F%5Bid%5D%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fproject%2F%5Bid%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767754677340,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1730,"timestamp":133826028,"id":56,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-kind.js","layer":"pages-dir-node"},"startTime":1767754678004,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4995,"timestamp":133826405,"id":58,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/templates/helpers.js","layer":"pages-dir-node"},"startTime":1767754678005,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":20153,"timestamp":133826477,"id":59,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/pages-handler.js","layer":"pages-dir-node"},"startTime":1767754678005,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":20904,"timestamp":133826535,"id":60,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/module.compiled.js","layer":"pages-dir-node"},"startTime":1767754678005,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":23623,"timestamp":133826809,"id":63,"parentId":47,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/constants.js","layer":"pages-dir-node"},"startTime":1767754678005,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8795,"timestamp":133873889,"id":66,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/vendored/contexts/html-context.js","layer":"pages-dir-node"},"startTime":1767754678052,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":42898,"timestamp":133874063,"id":67,"parentId":47,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"pages-dir-node"},"startTime":1767754678052,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":52049,"timestamp":133874127,"id":68,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-kind.js","layer":"rsc"},"startTime":1767754678052,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":55143,"timestamp":133875559,"id":69,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1767754678054,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":57572,"timestamp":133875799,"id":70,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1767754678054,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":59283,"timestamp":133876065,"id":71,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request-meta.js","layer":"rsc"},"startTime":1767754678054,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":61359,"timestamp":133876296,"id":72,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/render-result.js","layer":"rsc"},"startTime":1767754678055,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":62675,"timestamp":133876517,"id":73,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/send-payload.js","layer":"rsc"},"startTime":1767754678055,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":63182,"timestamp":133876816,"id":74,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/streaming-metadata.js","layer":"rsc"},"startTime":1767754678055,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":64276,"timestamp":133877110,"id":75,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/server-action-request-meta.js","layer":"rsc"},"startTime":1767754678055,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":65806,"timestamp":133877361,"id":76,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/fallback.js","layer":"rsc"},"startTime":1767754678056,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":69266,"timestamp":133878149,"id":77,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1767754678056,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":70003,"timestamp":133878412,"id":78,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1767754678057,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":70181,"timestamp":133878660,"id":79,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/instrumentation/utils.js","layer":"rsc"},"startTime":1767754678057,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":76801,"timestamp":133878936,"id":80,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/interop-default.js","layer":"rsc"},"startTime":1767754678057,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":77083,"timestamp":133879219,"id":81,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/strip-flight-headers.js","layer":"rsc"},"startTime":1767754678057,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":78432,"timestamp":133879720,"id":83,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/action-utils.js","layer":"rsc"},"startTime":1767754678058,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":81167,"timestamp":133879965,"id":84,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1767754678058,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":83396,"timestamp":133880233,"id":85,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/node.js","layer":"rsc"},"startTime":1767754678058,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":84028,"timestamp":133880456,"id":86,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/fallback-params.js","layer":"rsc"},"startTime":1767754678059,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":84645,"timestamp":133880665,"id":87,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/experimental/ppr.js","layer":"rsc"},"startTime":1767754678059,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":85281,"timestamp":133880870,"id":88,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/encoded-tags.js","layer":"rsc"},"startTime":1767754678059,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":86803,"timestamp":133881907,"id":95,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/index.js","layer":"rsc"},"startTime":1767754678060,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":150396,"timestamp":133826137,"id":57,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_error.js","layer":"pages-dir-node"},"startTime":1767754678004,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":150330,"timestamp":133826594,"id":61,"parentId":45,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":"pages-dir-node"},"startTime":1767754678005,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":150459,"timestamp":133826870,"id":64,"parentId":54,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":"pages-dir-node"},"startTime":1767754678005,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":150690,"timestamp":133826960,"id":65,"parentId":55,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"pages-dir-node"},"startTime":1767754678005,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":151640,"timestamp":133826706,"id":62,"parentId":47,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"pages-dir-node"},"startTime":1767754678005,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":97846,"timestamp":133881249,"id":90,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"rsc"},"startTime":1767754678059,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":99012,"timestamp":133881441,"id":91,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js","layer":"rsc"},"startTime":1767754678060,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":99641,"timestamp":133881563,"id":92,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/not-found.js","layer":"rsc"},"startTime":1767754678060,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":100239,"timestamp":133881683,"id":93,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/forbidden.js","layer":"rsc"},"startTime":1767754678060,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":102320,"timestamp":133881103,"id":89,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-headers.js","layer":"rsc"},"startTime":1767754678059,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":102578,"timestamp":133881799,"id":94,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/unauthorized.js","layer":"rsc"},"startTime":1767754678060,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":108398,"timestamp":133879477,"id":82,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/encryption-utils.js","layer":"rsc"},"startTime":1767754678058,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-cjs","duration":1242,"timestamp":133996063,"id":96,"parentId":35,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/cjs/_interop_require_default.cjs","layer":"pages-dir-node"},"startTime":1767754678174,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":977423,"timestamp":133057572,"id":24,"parentId":22,"tags":{"request":"next/dist/pages/_app"},"startTime":1767754677236,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":56,"timestamp":134035134,"id":97,"parentId":60,"tags":{"name":"next/dist/compiled/next-server/pages.runtime.prod.js","layer":null},"startTime":1767754678213,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1325,"timestamp":134035220,"id":98,"parentId":59,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request-meta.js","layer":"pages-dir-node"},"startTime":1767754678213,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6641,"timestamp":134035307,"id":99,"parentId":59,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/constants.js","layer":"pages-dir-node"},"startTime":1767754678214,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9122,"timestamp":134035347,"id":100,"parentId":59,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/send-payload.js","layer":"pages-dir-node"},"startTime":1767754678214,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10876,"timestamp":134035381,"id":101,"parentId":59,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/render-result.js","layer":"pages-dir-node"},"startTime":1767754678214,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11133,"timestamp":134035411,"id":102,"parentId":59,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/interop-default.js","layer":"pages-dir-node"},"startTime":1767754678214,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11425,"timestamp":134035445,"id":103,"parentId":59,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/instrumentation/utils.js","layer":"pages-dir-node"},"startTime":1767754678214,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":67,"timestamp":134060325,"id":105,"parentId":78,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.prod.js","layer":null},"startTime":1767754678239,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5532,"timestamp":134061041,"id":109,"parentId":59,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/index.js","layer":"pages-dir-node"},"startTime":1767754678239,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":53353,"timestamp":134060421,"id":106,"parentId":69,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1767754678239,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":91250,"timestamp":134035475,"id":104,"parentId":59,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"pages-dir-node"},"startTime":1767754678214,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":73960,"timestamp":134060750,"id":107,"parentId":73,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"rsc"},"startTime":1767754678239,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":74240,"timestamp":134060895,"id":108,"parentId":69,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"rsc"},"startTime":1767754678239,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":7785,"timestamp":134145572,"id":111,"parentId":32,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"rsc"},"startTime":1767754678324,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9538,"timestamp":134147617,"id":112,"parentId":54,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"pages-dir-node"},"startTime":1767754678326,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":26211,"timestamp":134141852,"id":110,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/layout.tsx","layer":"rsc"},"startTime":1767754678320,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-external","duration":48,"timestamp":134172434,"id":113,"parentId":59,"tags":{"name":"../../../shared/lib/no-fallback-error.external","layer":null},"startTime":1767754678351,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2260,"timestamp":134172560,"id":114,"parentId":59,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/redirect-status.js","layer":"pages-dir-node"},"startTime":1767754678351,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2312,"timestamp":134173028,"id":116,"parentId":100,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/cache-control.js","layer":"pages-dir-node"},"startTime":1767754678351,"traceId":"2c8d09f5a579ad25"}]
|
|
2
|
-
[{"name":"build-module-js","duration":19958,"timestamp":134750921,"id":217,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolve-metadata.js","layer":"rsc"},"startTime":1767754678929,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":25190,"timestamp":134751210,"id":218,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-constants.js","layer":"rsc"},"startTime":1767754678929,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":25989,"timestamp":134751417,"id":219,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/pathname.js","layer":"rsc"},"startTime":1767754678930,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":42056,"timestamp":134751651,"id":220,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"rsc"},"startTime":1767754678930,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":43120,"timestamp":134751789,"id":221,"parentId":159,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"rsc"},"startTime":1767754678930,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":53340,"timestamp":134751944,"id":223,"parentId":159,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js","layer":"rsc"},"startTime":1767754678930,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":69761,"timestamp":134751886,"id":222,"parentId":176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"pages-dir-node"},"startTime":1767754678930,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":31003,"timestamp":134823038,"id":224,"parentId":110,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"rsc"},"startTime":1767754679001,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5092,"timestamp":134861561,"id":225,"parentId":222,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"pages-dir-node"},"startTime":1767754679040,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5768,"timestamp":134866860,"id":226,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/basic.js","layer":"rsc"},"startTime":1767754679045,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6431,"timestamp":134867191,"id":227,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/alternate.js","layer":"rsc"},"startTime":1767754679045,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11663,"timestamp":134867393,"id":228,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/opengraph.js","layer":"rsc"},"startTime":1767754679046,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12692,"timestamp":134867594,"id":229,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icons.js","layer":"rsc"},"startTime":1767754679046,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":16371,"timestamp":134867815,"id":230,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/meta.js","layer":"rsc"},"startTime":1767754679046,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":19555,"timestamp":134868063,"id":231,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js","layer":"rsc"},"startTime":1767754679046,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3182,"timestamp":134888594,"id":232,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/router-utils/is-postpone.js","layer":"rsc"},"startTime":1767754679067,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2881,"timestamp":134912707,"id":234,"parentId":149,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/client.node.js","layer":"rsc"},"startTime":1767754679091,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":16818,"timestamp":134902334,"id":233,"parentId":225,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"pages-dir-node"},"startTime":1767754679081,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-cjs","duration":4818,"timestamp":134919699,"id":235,"parentId":122,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs","layer":"pages-dir-node"},"startTime":1767754679098,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-css","duration":4916,"timestamp":134919782,"id":236,"parentId":110,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":"rsc"},"startTime":1767754679098,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":1866983,"timestamp":133057731,"id":29,"parentId":22,"tags":{"request":"next/dist/pages/_document"},"startTime":1767754677236,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1003,"timestamp":134927818,"id":238,"parentId":135,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/vendored/contexts/amp-context.js","layer":"pages-dir-node"},"startTime":1767754679106,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1127,"timestamp":134927924,"id":239,"parentId":135,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/vendored/contexts/head-manager-context.js","layer":"pages-dir-node"},"startTime":1767754679106,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5104,"timestamp":134928233,"id":241,"parentId":185,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/headers.js","layer":"rsc"},"startTime":1767754679106,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":20741,"timestamp":134923317,"id":237,"parentId":163,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/styles/access-error-styles.js","layer":"rsc"},"startTime":1767754679102,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":17407,"timestamp":134927992,"id":240,"parentId":192,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1767754679106,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2787,"timestamp":134962414,"id":243,"parentId":200,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/error-telemetry-utils.js","layer":"rsc"},"startTime":1767754679141,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2959,"timestamp":134962636,"id":244,"parentId":200,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/react-large-shell-error.js","layer":"rsc"},"startTime":1767754679141,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9448,"timestamp":134962874,"id":245,"parentId":200,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"rsc"},"startTime":1767754679141,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9904,"timestamp":134963028,"id":246,"parentId":192,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"rsc"},"startTime":1767754679141,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-external","duration":33,"timestamp":134973246,"id":247,"parentId":199,"tags":{"name":"../app-render/after-task-async-storage.external","layer":null},"startTime":1767754679151,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":768,"timestamp":134973515,"id":249,"parentId":211,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/helpers.js","layer":"pages-dir-node"},"startTime":1767754679152,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1707,"timestamp":134973682,"id":251,"parentId":211,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/utils.js","layer":"pages-dir-node"},"startTime":1767754679152,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3554,"timestamp":134973293,"id":248,"parentId":210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/route-pattern-normalizer.js","layer":"rsc"},"startTime":1767754679152,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3847,"timestamp":134973558,"id":250,"parentId":212,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/helpers.js","layer":"rsc"},"startTime":1767754679152,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5267,"timestamp":134973713,"id":252,"parentId":212,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/utils.js","layer":"rsc"},"startTime":1767754679152,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":19060,"timestamp":134962077,"id":242,"parentId":200,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/format-server-error.js","layer":"rsc"},"startTime":1767754679140,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1800,"timestamp":134990874,"id":255,"parentId":211,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/request.js","layer":"pages-dir-node"},"startTime":1767754679169,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2908,"timestamp":134990354,"id":253,"parentId":217,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/interop-default.js","layer":"rsc"},"startTime":1767754679169,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3005,"timestamp":134990651,"id":254,"parentId":217,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/default-metadata.js","layer":"rsc"},"startTime":1767754679169,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3791,"timestamp":134990925,"id":256,"parentId":212,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/request.js","layer":"rsc"},"startTime":1767754679169,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":94989,"timestamp":134995581,"id":257,"parentId":191,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js","layer":"rsc"},"startTime":1767754679174,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":92961,"timestamp":134998825,"id":260,"parentId":217,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/app-dir-module.js","layer":"rsc"},"startTime":1767754679177,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":93574,"timestamp":134998987,"id":261,"parentId":217,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/utils.js","layer":"rsc"},"startTime":1767754679177,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8060,"timestamp":135111823,"id":266,"parentId":217,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-opengraph.js","layer":"rsc"},"startTime":1767754679290,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9338,"timestamp":135112166,"id":267,"parentId":217,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-title.js","layer":"rsc"},"startTime":1767754679290,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12992,"timestamp":135112419,"id":268,"parentId":217,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-basics.js","layer":"rsc"},"startTime":1767754679291,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13605,"timestamp":135112672,"id":269,"parentId":217,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-icons.js","layer":"rsc"},"startTime":1767754679291,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4221,"timestamp":135140360,"id":270,"parentId":185,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/cookie/index.js","layer":"rsc"},"startTime":1767754679319,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6186,"timestamp":135140668,"id":271,"parentId":217,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1767754679319,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1160,"timestamp":135159434,"id":272,"parentId":230,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/non-nullable.js","layer":"rsc"},"startTime":1767754679338,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1850,"timestamp":135192378,"id":273,"parentId":226,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/constants.js","layer":"rsc"},"startTime":1767754679371,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3587,"timestamp":135192698,"id":274,"parentId":229,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js","layer":"rsc"},"startTime":1767754679371,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1755,"timestamp":135210447,"id":276,"parentId":200,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/string-hash/index.js","layer":"rsc"},"startTime":1767754679389,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3538,"timestamp":135210748,"id":277,"parentId":245,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"rsc"},"startTime":1767754679389,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6609,"timestamp":135214743,"id":279,"parentId":255,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/next-url.js","layer":"pages-dir-node"},"startTime":1767754679393,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6916,"timestamp":135215025,"id":281,"parentId":255,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/error.js","layer":"pages-dir-node"},"startTime":1767754679393,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7131,"timestamp":135215291,"id":283,"parentId":255,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/cookies.js","layer":"pages-dir-node"},"startTime":1767754679394,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":17297,"timestamp":135214508,"id":278,"parentId":210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/path-to-regexp/index.js","layer":"rsc"},"startTime":1767754679393,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22505,"timestamp":135214809,"id":280,"parentId":256,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/next-url.js","layer":"rsc"},"startTime":1767754679393,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22843,"timestamp":135215083,"id":282,"parentId":256,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/error.js","layer":"rsc"},"startTime":1767754679393,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":26265,"timestamp":135215347,"id":284,"parentId":256,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/cookies.js","layer":"rsc"},"startTime":1767754679394,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":103402,"timestamp":135196491,"id":275,"parentId":234,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.node.production.js","layer":"rsc"},"startTime":1767754679375,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3561,"timestamp":135312586,"id":285,"parentId":266,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1767754679491,"traceId":"2c8d09f5a579ad25"},{"name":"font-loader","duration":269773,"timestamp":135054558,"id":263,"parentId":262,"tags":{},"startTime":1767754679233,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2748,"timestamp":135327724,"id":286,"parentId":266,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-url.js","layer":"rsc"},"startTime":1767754679506,"traceId":"2c8d09f5a579ad25"},{"name":"font-loader","duration":248531,"timestamp":135085071,"id":265,"parentId":264,"tags":{},"startTime":1767754679263,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":32,"timestamp":135333767,"id":287,"parentId":275,"tags":{"name":"util","layer":null},"startTime":1767754679512,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2620,"timestamp":135333816,"id":288,"parentId":271,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1767754679512,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3740,"timestamp":135334092,"id":289,"parentId":271,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/lru-cache.js","layer":"rsc"},"startTime":1767754679512,"traceId":"2c8d09f5a579ad25"},{"name":"postcss","duration":8219,"timestamp":135732769,"id":290,"parentId":262,"tags":{},"startTime":1767754679911,"traceId":"2c8d09f5a579ad25"},{"name":"postcss","duration":3459,"timestamp":135737540,"id":291,"parentId":264,"tags":{},"startTime":1767754679916,"traceId":"2c8d09f5a579ad25"},{"name":"next-font-loader","duration":742611,"timestamp":134999297,"id":262,"parentId":258,"tags":{},"startTime":1767754679178,"traceId":"2c8d09f5a579ad25"},{"name":"next-font-loader","duration":656932,"timestamp":135084982,"id":264,"parentId":259,"tags":{},"startTime":1767754679263,"traceId":"2c8d09f5a579ad25"},{"name":"css-loader","duration":50149,"timestamp":135741296,"id":292,"parentId":258,"tags":{"astUsed":"true"},"startTime":1767754679920,"traceId":"2c8d09f5a579ad25"},{"name":"css-loader","duration":49574,"timestamp":135741883,"id":293,"parentId":259,"tags":{"astUsed":"true"},"startTime":1767754679920,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":796278,"timestamp":134995830,"id":258,"parentId":110,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}","layer":"rsc"},"startTime":1767754679174,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":793599,"timestamp":134998731,"id":259,"parentId":110,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}","layer":"rsc"},"startTime":1767754679177,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":919,"timestamp":135792914,"id":294,"parentId":166,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-dom.js","layer":"rsc"},"startTime":1767754679971,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5471,"timestamp":135798298,"id":295,"parentId":279,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-hostname.js","layer":"pages-dir-node"},"startTime":1767754679977,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5936,"timestamp":135798445,"id":296,"parentId":280,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-hostname.js","layer":"rsc"},"startTime":1767754679977,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6764,"timestamp":135798596,"id":297,"parentId":279,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":"pages-dir-node"},"startTime":1767754679977,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7524,"timestamp":135798689,"id":298,"parentId":280,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":"rsc"},"startTime":1767754679977,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6053,"timestamp":135806689,"id":299,"parentId":279,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":"pages-dir-node"},"startTime":1767754679985,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7220,"timestamp":135806803,"id":300,"parentId":280,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":"rsc"},"startTime":1767754679985,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6270,"timestamp":135818337,"id":301,"parentId":298,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"rsc"},"startTime":1767754679997,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6738,"timestamp":135818507,"id":302,"parentId":279,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","layer":"pages-dir-node"},"startTime":1767754679997,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7210,"timestamp":135818586,"id":303,"parentId":280,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","layer":"rsc"},"startTime":1767754679997,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2203,"timestamp":135826127,"id":305,"parentId":217,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/server-only/empty.js","layer":"rsc"},"startTime":1767754680004,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3244,"timestamp":135825971,"id":304,"parentId":299,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":"pages-dir-node"},"startTime":1767754680004,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3282,"timestamp":135826375,"id":306,"parentId":286,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/isomorphic/path.js","layer":"rsc"},"startTime":1767754680005,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4389,"timestamp":135833260,"id":307,"parentId":297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":"pages-dir-node"},"startTime":1767754680011,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8100,"timestamp":135833382,"id":308,"parentId":298,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":"rsc"},"startTime":1767754680012,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8539,"timestamp":135833531,"id":309,"parentId":297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":"pages-dir-node"},"startTime":1767754680012,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9006,"timestamp":135833615,"id":310,"parentId":298,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":"rsc"},"startTime":1767754680012,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":15958,"timestamp":135843073,"id":311,"parentId":299,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":"pages-dir-node"},"startTime":1767754680021,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":16574,"timestamp":135843211,"id":312,"parentId":300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":"rsc"},"startTime":1767754680021,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9580,"timestamp":135862088,"id":313,"parentId":283,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js","layer":"pages-dir-node"},"startTime":1767754680040,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":17270,"timestamp":135862182,"id":314,"parentId":284,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js","layer":"rsc"},"startTime":1767754680040,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":2826005,"timestamp":133057626,"id":25,"parentId":22,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1767754677236,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":2826754,"timestamp":133056891,"id":23,"parentId":22,"tags":{"request":"next-app-loader?page=%2F_not-found%2Fpage&name=app%2F_not-found%2Fpage&pagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767754677235,"traceId":"2c8d09f5a579ad25"}]
|
|
3
|
-
[{"name":"add-entry","duration":2825986,"timestamp":133057663,"id":26,"parentId":22,"tags":{"request":"next-app-loader?page=%2Fpage&name=app%2Fpage&pagePath=private-next-app-dir%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767754677236,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":2825940,"timestamp":133057712,"id":28,"parentId":22,"tags":{"request":"next-app-loader?page=%2Fsettings%2Fpage&name=app%2Fsettings%2Fpage&pagePath=private-next-app-dir%2Fsettings%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fsettings%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767754677236,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":2825965,"timestamp":133057690,"id":27,"parentId":22,"tags":{"request":"next-app-loader?page=%2Fproject%2F%5Bid%5D%2Fpage&name=app%2Fproject%2F%5Bid%5D%2Fpage&pagePath=private-next-app-dir%2Fproject%2F%5Bid%5D%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fproject%2F%5Bid%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767754677236,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":1881,"timestamp":135982222,"id":337,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767754680160,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":288,"timestamp":135984133,"id":338,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767754680162,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":798,"timestamp":135984440,"id":339,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767754680163,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":711,"timestamp":135985257,"id":340,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767754680163,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":264,"timestamp":135985988,"id":341,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767754680164,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":241,"timestamp":135986290,"id":342,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767754680165,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":228,"timestamp":135986546,"id":343,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767754680165,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":261,"timestamp":135986789,"id":344,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767754680165,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":373,"timestamp":135987067,"id":345,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767754680165,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":280,"timestamp":135987457,"id":346,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767754680166,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":4677,"timestamp":136014180,"id":349,"parentId":343,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"ssr"},"startTime":1767754680192,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":8233,"timestamp":136012463,"id":347,"parentId":341,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"ssr"},"startTime":1767754680191,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":8249,"timestamp":136013976,"id":348,"parentId":345,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"ssr"},"startTime":1767754680192,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":18116,"timestamp":136015032,"id":352,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1767754680193,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":20135,"timestamp":136014886,"id":351,"parentId":337,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"ssr"},"startTime":1767754680193,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":21696,"timestamp":136014349,"id":350,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js","layer":"ssr"},"startTime":1767754680193,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":21393,"timestamp":136015208,"id":355,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1767754680193,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":23064,"timestamp":136015101,"id":353,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js","layer":"ssr"},"startTime":1767754680193,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22199,"timestamp":136016731,"id":358,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js","layer":"ssr"},"startTime":1767754680195,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":23271,"timestamp":136016388,"id":356,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js","layer":"ssr"},"startTime":1767754680195,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":24736,"timestamp":136016629,"id":357,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js","layer":"ssr"},"startTime":1767754680195,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":35350,"timestamp":136015153,"id":354,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1767754680193,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6959,"timestamp":136074116,"id":361,"parentId":352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/search-params.js","layer":"ssr"},"startTime":1767754680252,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10293,"timestamp":136074322,"id":362,"parentId":352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/params.js","layer":"ssr"},"startTime":1767754680253,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10604,"timestamp":136074500,"id":363,"parentId":356,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-constants.js","layer":"ssr"},"startTime":1767754680253,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13363,"timestamp":136072084,"id":359,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js","layer":"ssr"},"startTime":1767754680250,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":23246,"timestamp":136073941,"id":360,"parentId":352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"ssr"},"startTime":1767754680252,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":24550,"timestamp":136074618,"id":364,"parentId":357,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"ssr"},"startTime":1767754680253,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":24947,"timestamp":136074676,"id":365,"parentId":357,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1767754680253,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":25798,"timestamp":136074734,"id":366,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1767754680253,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6291,"timestamp":136122743,"id":367,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/dynamic-rendering-utils.js","layer":"ssr"},"startTime":1767754680301,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6848,"timestamp":136123038,"id":368,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/create-deduped-by-callsite-server-error-logger.js","layer":"ssr"},"startTime":1767754680301,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6489,"timestamp":136123843,"id":373,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1767754680302,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12166,"timestamp":136123659,"id":371,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/reflect-utils.js","layer":"ssr"},"startTime":1767754680302,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12724,"timestamp":136123754,"id":372,"parentId":366,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1767754680302,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12741,"timestamp":136124049,"id":374,"parentId":366,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1767754680302,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":21879,"timestamp":136123482,"id":370,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/utils.js","layer":"ssr"},"startTime":1767754680302,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":27613,"timestamp":136123249,"id":369,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1767754680301,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7324,"timestamp":136180806,"id":375,"parentId":369,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/scheduler.js","layer":"ssr"},"startTime":1767754680359,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12138,"timestamp":136181103,"id":376,"parentId":370,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1767754680359,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12858,"timestamp":136181245,"id":377,"parentId":369,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1767754680359,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13316,"timestamp":136181341,"id":378,"parentId":369,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1767754680360,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":16775,"timestamp":136181449,"id":379,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1767754680360,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":18219,"timestamp":136181646,"id":381,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1767754680360,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":18708,"timestamp":136181829,"id":383,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1767754680360,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22835,"timestamp":136181739,"id":382,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/use-action-queue.js","layer":"ssr"},"startTime":1767754680360,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":23368,"timestamp":136182023,"id":385,"parentId":357,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation-untracked.js","layer":"ssr"},"startTime":1767754680360,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":24009,"timestamp":136182116,"id":386,"parentId":350,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/handle-isr-error.js","layer":"ssr"},"startTime":1767754680360,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":31594,"timestamp":136182205,"id":387,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js","layer":"ssr"},"startTime":1767754680360,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":32949,"timestamp":136181919,"id":384,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/bfcache.js","layer":"ssr"},"startTime":1767754680360,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":38647,"timestamp":136181556,"id":380,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1767754680360,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4004,"timestamp":136254216,"id":392,"parentId":355,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1767754680432,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3628,"timestamp":136254932,"id":393,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1767754680433,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5776,"timestamp":136253989,"id":389,"parentId":382,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"ssr"},"startTime":1767754680432,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6214,"timestamp":136254164,"id":391,"parentId":380,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1767754680432,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6090,"timestamp":136255083,"id":394,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1767754680433,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6421,"timestamp":136255150,"id":395,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"ssr"},"startTime":1767754680433,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6722,"timestamp":136255249,"id":397,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"ssr"},"startTime":1767754680433,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8215,"timestamp":136254106,"id":390,"parentId":380,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1767754680432,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12370,"timestamp":136255200,"id":396,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1767754680433,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":14978,"timestamp":136253823,"id":388,"parentId":381,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"ssr"},"startTime":1767754680432,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1123,"timestamp":136291603,"id":402,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js","layer":"ssr"},"startTime":1767754680470,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1156,"timestamp":136291768,"id":403,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js","layer":"ssr"},"startTime":1767754680470,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4304,"timestamp":136289597,"id":398,"parentId":391,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"ssr"},"startTime":1767754680468,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9247,"timestamp":136289841,"id":399,"parentId":397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"ssr"},"startTime":1767754680468,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8258,"timestamp":136291368,"id":400,"parentId":388,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1767754680470,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":17387,"timestamp":136291472,"id":401,"parentId":396,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1767754680470,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1694,"timestamp":136311326,"id":404,"parentId":402,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1767754680490,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3696,"timestamp":136311790,"id":407,"parentId":380,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/nav-failure-handler.js","layer":"ssr"},"startTime":1767754680490,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6003,"timestamp":136311584,"id":405,"parentId":381,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1767754680490,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9507,"timestamp":136311697,"id":406,"parentId":381,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1767754680490,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":654,"timestamp":136337039,"id":415,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-dom.js","layer":"ssr"},"startTime":1767754680515,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3526,"timestamp":136335238,"id":409,"parentId":396,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-find-source-map-url.js","layer":"ssr"},"startTime":1767754680513,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4145,"timestamp":136335121,"id":408,"parentId":396,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1767754680513,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6494,"timestamp":136335357,"id":411,"parentId":396,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-build-id.js","layer":"ssr"},"startTime":1767754680514,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7598,"timestamp":136335302,"id":410,"parentId":396,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1767754680514,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8938,"timestamp":136335451,"id":413,"parentId":396,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/set-cache-busting-search-param.js","layer":"ssr"},"startTime":1767754680514,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10491,"timestamp":136335407,"id":412,"parentId":396,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-params.js","layer":"ssr"},"startTime":1767754680514,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":5120,"timestamp":136348696,"id":416,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/Header.tsx","layer":"ssr"},"startTime":1767754680527,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":20107,"timestamp":136336821,"id":414,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1767754680515,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":12219,"timestamp":136349757,"id":418,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectList.tsx","layer":"ssr"},"startTime":1767754680528,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13675,"timestamp":136349631,"id":417,"parentId":412,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js","layer":"ssr"},"startTime":1767754680528,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":13701,"timestamp":136350236,"id":420,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/button.tsx","layer":"ssr"},"startTime":1767754680528,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":15483,"timestamp":136349985,"id":419,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectModal.tsx","layer":"ssr"},"startTime":1767754680528,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":15439,"timestamp":136350421,"id":421,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/input.tsx","layer":"ssr"},"startTime":1767754680529,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":18533,"timestamp":136350568,"id":422,"parentId":349,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/workspace/WorkspaceLayout.tsx","layer":"ssr"},"startTime":1767754680529,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":815,"timestamp":136385345,"id":423,"parentId":355,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js","layer":"ssr"},"startTime":1767754680564,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":4272,"timestamp":136413271,"id":424,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useProjectStore.ts","layer":"ssr"},"startTime":1767754680592,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":659,"timestamp":136424875,"id":426,"parentId":396,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-server-dom-webpack-client.js","layer":"ssr"},"startTime":1767754680603,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":13554,"timestamp":136413520,"id":425,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/api.ts","layer":"ssr"},"startTime":1767754680592,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":15735,"timestamp":136446483,"id":428,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unrecognized-action-error.js","layer":"ssr"},"startTime":1767754680625,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":16903,"timestamp":136446326,"id":427,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1767754680625,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":17079,"timestamp":136446665,"id":430,"parentId":407,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"ssr"},"startTime":1767754680625,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":17569,"timestamp":136446745,"id":431,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"ssr"},"startTime":1767754680625,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":18526,"timestamp":136446581,"id":429,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1767754680625,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1995,"timestamp":136474947,"id":432,"parentId":385,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js","layer":"ssr"},"startTime":1767754680653,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3228,"timestamp":136475442,"id":434,"parentId":413,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/cache-busting-search-param.js","layer":"ssr"},"startTime":1767754680654,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":4446,"timestamp":136475238,"id":433,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/index.ts","layer":"ssr"},"startTime":1767754680653,"traceId":"2c8d09f5a579ad25"}]
|
|
4
|
-
[{"name":"build-module-tsx","duration":3101,"timestamp":136484463,"id":435,"parentId":416,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/LanguageSwitcher.tsx","layer":"ssr"},"startTime":1767754680663,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":19300,"timestamp":136488238,"id":440,"parentId":418,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectCard.tsx","layer":"ssr"},"startTime":1767754680666,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":21590,"timestamp":136507902,"id":441,"parentId":418,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectCard.tsx","layer":"ssr"},"startTime":1767754680686,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":65550,"timestamp":136487775,"id":436,"parentId":348,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Check,FolderOpen,Loader2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754680666,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":66115,"timestamp":136488138,"id":439,"parentId":422,"tags":{"name":"__barrel_optimize__?names=Database,Eye,FlaskConical,FolderTree,GitBranch,Settings2,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754680666,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":66512,"timestamp":136487902,"id":437,"parentId":349,"tags":{"name":"__barrel_optimize__?names=AlertCircle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754680666,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":66537,"timestamp":136488030,"id":438,"parentId":416,"tags":{"name":"__barrel_optimize__?names=ArrowLeft,Settings!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754680666,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6169,"timestamp":136549077,"id":442,"parentId":427,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1767754680727,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6645,"timestamp":136549213,"id":443,"parentId":427,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/forbidden.js","layer":"ssr"},"startTime":1767754680727,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4897,"timestamp":136558830,"id":445,"parentId":427,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unauthorized.js","layer":"ssr"},"startTime":1767754680737,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5180,"timestamp":136558932,"id":446,"parentId":427,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.js","layer":"ssr"},"startTime":1767754680737,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8110,"timestamp":136558659,"id":444,"parentId":440,"tags":{"name":"__barrel_optimize__?names=Globe,Server,Smartphone,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754680737,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7615,"timestamp":136564327,"id":447,"parentId":441,"tags":{"name":"__barrel_optimize__?names=Plus,Sparkles!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754680743,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":871,"timestamp":136577076,"id":449,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/server-inserted-html.js","layer":"ssr"},"startTime":1767754680755,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4459,"timestamp":136574875,"id":448,"parentId":434,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1767754680753,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-json","duration":1135,"timestamp":136579699,"id":451,"parentId":433,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/en.json","layer":"ssr"},"startTime":1767754680758,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-json","duration":771,"timestamp":136580163,"id":452,"parentId":433,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/ko.json","layer":"ssr"},"startTime":1767754680758,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":5620,"timestamp":136577221,"id":450,"parentId":419,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/dialog.tsx","layer":"ssr"},"startTime":1767754680755,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":6292,"timestamp":136580214,"id":453,"parentId":420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/utils.ts","layer":"ssr"},"startTime":1767754680758,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":2390,"timestamp":136587267,"id":455,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ChatPanel.tsx","layer":"ssr"},"startTime":1767754680765,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":23836,"timestamp":136584301,"id":454,"parentId":416,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/image.js","layer":"ssr"},"startTime":1767754680763,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":8480,"timestamp":136608913,"id":460,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileViewer.tsx","layer":"ssr"},"startTime":1767754680787,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":9895,"timestamp":136608804,"id":459,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileExplorer.tsx","layer":"ssr"},"startTime":1767754680787,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":15639,"timestamp":136607626,"id":457,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/PreviewPanel.tsx","layer":"ssr"},"startTime":1767754680786,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":19151,"timestamp":136609169,"id":462,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/testing/TestRunner.tsx","layer":"ssr"},"startTime":1767754680787,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":25907,"timestamp":136609042,"id":461,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/database/DatabasePanel.tsx","layer":"ssr"},"startTime":1767754680787,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":26552,"timestamp":136608710,"id":458,"parentId":455,"tags":{"name":"__barrel_optimize__?names=MessageSquarePlus!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754680787,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":1965,"timestamp":136650072,"id":463,"parentId":420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.mjs","layer":"ssr"},"startTime":1767754680828,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":17228,"timestamp":136681290,"id":470,"parentId":446,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.server.js","layer":"ssr"},"startTime":1767754680860,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":22973,"timestamp":136678958,"id":464,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/checkpoint/CheckpointPanel.tsx","layer":"ssr"},"startTime":1767754680857,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":22540,"timestamp":136681379,"id":471,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/env/EnvPanel.tsx","layer":"ssr"},"startTime":1767754680860,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":117294,"timestamp":136588491,"id":456,"parentId":416,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-dir/link.js","layer":"ssr"},"startTime":1767754680767,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":35141,"timestamp":136680783,"id":465,"parentId":460,"tags":{"name":"__barrel_optimize__?names=Check,Copy,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754680859,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":35269,"timestamp":136681020,"id":467,"parentId":457,"tags":{"name":"__barrel_optimize__?names=ExternalLink,Loader2,Monitor,Package,Play,RefreshCw,RotateCcw,Smartphone,Square,Tablet,Terminal,Zap!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754680859,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":35422,"timestamp":136681111,"id":468,"parentId":462,"tags":{"name":"__barrel_optimize__?names=AlertCircle,CheckCircle,Clock,FlaskConical,Play,Plus,RefreshCw,Trash2,XCircle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754680859,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":35824,"timestamp":136680908,"id":466,"parentId":459,"tags":{"name":"__barrel_optimize__?names=ChevronDown,ChevronRight,File,Folder,FolderOpen,RefreshCw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754680859,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":36581,"timestamp":136681200,"id":469,"parentId":461,"tags":{"name":"__barrel_optimize__?names=AlertCircle,ChevronLeft,ChevronRight,Database,Play,RefreshCw,Table,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754680859,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1781,"timestamp":136740975,"id":473,"parentId":470,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/router-utils/is-postpone.js","layer":"ssr"},"startTime":1767754680919,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":13942,"timestamp":136741285,"id":475,"parentId":433,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/middleware.mjs","layer":"ssr"},"startTime":1767754680920,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":23062,"timestamp":136740759,"id":472,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1767754680919,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":23929,"timestamp":136741199,"id":474,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1767754680919,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7181,"timestamp":136765405,"id":476,"parentId":464,"tags":{"name":"__barrel_optimize__?names=AlertCircle,ChevronDown,ChevronRight,Clock,FileText,GitBranch,Plus,RefreshCw,RotateCcw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754680944,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7309,"timestamp":136765599,"id":477,"parentId":471,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Eye,EyeOff,FileText,Plus,RefreshCw,Save,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754680944,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":2784,"timestamp":136777083,"id":479,"parentId":424,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/index.mjs","layer":"ssr"},"startTime":1767754680955,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6549,"timestamp":136776938,"id":478,"parentId":474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1767754680955,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6594,"timestamp":136777247,"id":480,"parentId":436,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-alert.js","layer":"ssr"},"startTime":1767754680955,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3957,"timestamp":136784220,"id":481,"parentId":436,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/check.js","layer":"ssr"},"startTime":1767754680962,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4214,"timestamp":136784340,"id":482,"parentId":436,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-open.js","layer":"ssr"},"startTime":1767754680963,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4421,"timestamp":136784435,"id":483,"parentId":436,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/loader-circle.js","layer":"ssr"},"startTime":1767754680963,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5280,"timestamp":136789019,"id":484,"parentId":439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/database.js","layer":"ssr"},"startTime":1767754680967,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5480,"timestamp":136789140,"id":485,"parentId":439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eye.js","layer":"ssr"},"startTime":1767754680967,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5514,"timestamp":136789444,"id":488,"parentId":439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-branch.js","layer":"ssr"},"startTime":1767754680968,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5979,"timestamp":136789353,"id":487,"parentId":439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-tree.js","layer":"ssr"},"startTime":1767754680968,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6389,"timestamp":136789244,"id":486,"parentId":439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flask-conical.js","layer":"ssr"},"startTime":1767754680967,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5648,"timestamp":136797732,"id":489,"parentId":439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings-2.js","layer":"ssr"},"startTime":1767754680976,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5820,"timestamp":136797882,"id":490,"parentId":439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/x.js","layer":"ssr"},"startTime":1767754680976,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3516,"timestamp":136807278,"id":492,"parentId":444,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/globe.js","layer":"ssr"},"startTime":1767754680986,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4288,"timestamp":136807349,"id":493,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-left.js","layer":"ssr"},"startTime":1767754680986,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4807,"timestamp":136807144,"id":491,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings.js","layer":"ssr"},"startTime":1767754680985,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3636,"timestamp":136808820,"id":494,"parentId":444,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/smartphone.js","layer":"ssr"},"startTime":1767754680987,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3895,"timestamp":136808915,"id":495,"parentId":444,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trash-2.js","layer":"ssr"},"startTime":1767754680987,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4227,"timestamp":136808975,"id":496,"parentId":444,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/server.js","layer":"ssr"},"startTime":1767754680987,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5625,"timestamp":136809075,"id":497,"parentId":447,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sparkles.js","layer":"ssr"},"startTime":1767754680987,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9993,"timestamp":136809133,"id":498,"parentId":447,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/plus.js","layer":"ssr"},"startTime":1767754680987,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3017,"timestamp":136819941,"id":500,"parentId":458,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-plus.js","layer":"ssr"},"startTime":1767754680998,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":5295,"timestamp":136819692,"id":499,"parentId":440,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/card.tsx","layer":"ssr"},"startTime":1767754680998,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":9062,"timestamp":136825317,"id":501,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageInput.tsx","layer":"ssr"},"startTime":1767754681004,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":9529,"timestamp":136825556,"id":502,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageList.tsx","layer":"ssr"},"startTime":1767754681004,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10080,"timestamp":136825765,"id":503,"parentId":454,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-external.js","layer":"ssr"},"startTime":1767754681004,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8692,"timestamp":136836886,"id":506,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/use-merged-ref.js","layer":"ssr"},"startTime":1767754681015,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":9991,"timestamp":136836718,"id":505,"parentId":457,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ErrorOverlay.tsx","layer":"ssr"},"startTime":1767754681015,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10304,"timestamp":136836978,"id":507,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1767754681015,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":13618,"timestamp":136836496,"id":504,"parentId":457,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ConsoleViewer.tsx","layer":"ssr"},"startTime":1767754681015,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":15116,"timestamp":136837092,"id":508,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/links.js","layer":"ssr"},"startTime":1767754681015,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6054,"timestamp":136863124,"id":511,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/segment-cache.js","layer":"ssr"},"startTime":1767754681041,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6694,"timestamp":136862862,"id":509,"parentId":501,"tags":{"name":"__barrel_optimize__?names=Clock,Paperclip,Send!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754681041,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12025,"timestamp":136863046,"id":510,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-instance.js","layer":"ssr"},"startTime":1767754681041,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5296,"timestamp":136870147,"id":515,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copy.js","layer":"ssr"},"startTime":1767754681048,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5662,"timestamp":136870047,"id":514,"parentId":507,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1767754681048,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5837,"timestamp":136870216,"id":516,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/error-once.js","layer":"ssr"},"startTime":1767754681048,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6079,"timestamp":136870268,"id":517,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1767754681048,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11954,"timestamp":136869797,"id":512,"parentId":505,"tags":{"name":"__barrel_optimize__?names=Check,Copy,ExternalLink,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754681048,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12497,"timestamp":136869929,"id":513,"parentId":504,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Download,Terminal,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754681048,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5999,"timestamp":136876959,"id":518,"parentId":467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/external-link.js","layer":"ssr"},"startTime":1767754681055,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6115,"timestamp":136877092,"id":519,"parentId":467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor.js","layer":"ssr"},"startTime":1767754681055,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6264,"timestamp":136877160,"id":520,"parentId":467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/play.js","layer":"ssr"},"startTime":1767754681055,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6457,"timestamp":136877213,"id":521,"parentId":467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package.js","layer":"ssr"},"startTime":1767754681055,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6829,"timestamp":136877262,"id":522,"parentId":467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/refresh-cw.js","layer":"ssr"},"startTime":1767754681055,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3481,"timestamp":136887170,"id":524,"parentId":467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square.js","layer":"ssr"},"startTime":1767754681065,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4012,"timestamp":136887035,"id":523,"parentId":514,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1767754681065,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4168,"timestamp":136887236,"id":525,"parentId":467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rotate-ccw.js","layer":"ssr"},"startTime":1767754681065,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2638,"timestamp":136894664,"id":527,"parentId":467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/zap.js","layer":"ssr"},"startTime":1767754681073,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2985,"timestamp":136894538,"id":526,"parentId":467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/terminal.js","layer":"ssr"},"startTime":1767754681073,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2991,"timestamp":136894735,"id":528,"parentId":467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tablet.js","layer":"ssr"},"startTime":1767754681073,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3136,"timestamp":136894839,"id":530,"parentId":468,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock.js","layer":"ssr"},"startTime":1767754681073,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3492,"timestamp":136894790,"id":529,"parentId":468,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check-big.js","layer":"ssr"},"startTime":1767754681073,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3641,"timestamp":136894894,"id":531,"parentId":466,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-down.js","layer":"ssr"},"startTime":1767754681073,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5922,"timestamp":136894942,"id":532,"parentId":468,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-x.js","layer":"ssr"},"startTime":1767754681073,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6118,"timestamp":136894989,"id":533,"parentId":466,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-right.js","layer":"ssr"},"startTime":1767754681073,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4030,"timestamp":136901498,"id":534,"parentId":466,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder.js","layer":"ssr"},"startTime":1767754681080,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4262,"timestamp":136901602,"id":535,"parentId":466,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file.js","layer":"ssr"},"startTime":1767754681080,"traceId":"2c8d09f5a579ad25"}]
|
|
5
|
-
[{"name":"build-module-js","duration":2839,"timestamp":136906943,"id":537,"parentId":480,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/createLucideIcon.js","layer":"ssr"},"startTime":1767754681085,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3065,"timestamp":136907034,"id":538,"parentId":469,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-left.js","layer":"ssr"},"startTime":1767754681085,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3287,"timestamp":136907099,"id":539,"parentId":469,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/table.js","layer":"ssr"},"startTime":1767754681085,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3523,"timestamp":136907156,"id":540,"parentId":476,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-text.js","layer":"ssr"},"startTime":1767754681085,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3782,"timestamp":136907205,"id":541,"parentId":477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eye-off.js","layer":"ssr"},"startTime":1767754681085,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6092,"timestamp":136907251,"id":542,"parentId":477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/save.js","layer":"ssr"},"startTime":1767754681085,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":11438,"timestamp":136906781,"id":536,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useChatStore.ts","layer":"ssr"},"startTime":1767754681085,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":2765,"timestamp":136925272,"id":544,"parentId":419,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/index.ts","layer":"ssr"},"startTime":1767754681104,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":5958,"timestamp":136924979,"id":543,"parentId":457,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/usePreviewStore.ts","layer":"ssr"},"startTime":1767754681103,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":1777,"timestamp":136936310,"id":548,"parentId":479,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/vanilla.mjs","layer":"ssr"},"startTime":1767754681115,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":2253,"timestamp":136936486,"id":549,"parentId":479,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/react.mjs","layer":"ssr"},"startTime":1767754681115,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4981,"timestamp":136935930,"id":545,"parentId":507,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1767754681114,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11419,"timestamp":136936094,"id":546,"parentId":503,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/image-component.js","layer":"ssr"},"startTime":1767754681114,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":19221,"timestamp":136936189,"id":547,"parentId":503,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-img-props.js","layer":"ssr"},"startTime":1767754681114,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":17635,"timestamp":136959809,"id":550,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/tailwind-merge@2.6.0/node_modules/tailwind-merge/dist/bundle-mjs.mjs","layer":"ssr"},"startTime":1767754681138,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":18411,"timestamp":136960107,"id":551,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","layer":"ssr"},"startTime":1767754681138,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9473,"timestamp":136983551,"id":553,"parentId":509,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/send.js","layer":"ssr"},"startTime":1767754681162,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10129,"timestamp":136983371,"id":552,"parentId":545,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1767754681162,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22195,"timestamp":136983660,"id":554,"parentId":508,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1767754681162,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":34876,"timestamp":136994591,"id":555,"parentId":546,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"ssr"},"startTime":1767754681173,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13776,"timestamp":137016507,"id":556,"parentId":509,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/paperclip.js","layer":"ssr"},"startTime":1767754681195,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13916,"timestamp":137016710,"id":557,"parentId":513,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/download.js","layer":"ssr"},"startTime":1767754681195,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":14619,"timestamp":137016918,"id":559,"parentId":510,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1767754681195,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":16885,"timestamp":137017032,"id":560,"parentId":510,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1767754681195,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":18046,"timestamp":137016823,"id":558,"parentId":517,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1767754681195,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":5381,"timestamp":137049593,"id":561,"parentId":501,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/FilePreview.tsx","layer":"ssr"},"startTime":1767754681228,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":7269,"timestamp":137049851,"id":562,"parentId":501,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ModeToggle.tsx","layer":"ssr"},"startTime":1767754681228,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10643,"timestamp":137055589,"id":564,"parentId":555,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"ssr"},"startTime":1767754681234,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12754,"timestamp":137055483,"id":563,"parentId":555,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"ssr"},"startTime":1767754681234,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13068,"timestamp":137055647,"id":565,"parentId":558,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1767754681234,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":12422,"timestamp":137058461,"id":567,"parentId":502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageItem.tsx","layer":"ssr"},"startTime":1767754681237,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":15073,"timestamp":137058314,"id":566,"parentId":502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/StreamingMessage.tsx","layer":"ssr"},"startTime":1767754681237,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":15343,"timestamp":137058616,"id":569,"parentId":537,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/Icon.js","layer":"ssr"},"startTime":1767754681237,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":16519,"timestamp":137058566,"id":568,"parentId":503,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-loader.js","layer":"ssr"},"startTime":1767754681237,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":16833,"timestamp":137058665,"id":570,"parentId":537,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/shared/src/utils.js","layer":"ssr"},"startTime":1767754681237,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12655,"timestamp":137076297,"id":571,"parentId":561,"tags":{"name":"__barrel_optimize__?names=FileText,Loader2,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754681255,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4410,"timestamp":137085433,"id":573,"parentId":546,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config.js","layer":"ssr"},"startTime":1767754681264,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4966,"timestamp":137085277,"id":572,"parentId":562,"tags":{"name":"__barrel_optimize__?names=Hammer,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754681264,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6252,"timestamp":137090595,"id":574,"parentId":567,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,Edit3,FileText,FolderSearch,Globe,ListTodo,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754681269,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6893,"timestamp":137090708,"id":575,"parentId":566,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,Edit3,FileText,FolderSearch,Globe,ListTodo,Loader2,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754681269,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4342,"timestamp":137094614,"id":576,"parentId":547,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-blur-svg.js","layer":"ssr"},"startTime":1767754681273,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":75646,"timestamp":137104506,"id":581,"parentId":460,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/prism-react-renderer@2.4.1_react@19.2.3/node_modules/prism-react-renderer/dist/index.mjs","layer":"ssr"},"startTime":1767754681283,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":78860,"timestamp":137104133,"id":577,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1767754681282,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":79490,"timestamp":137104414,"id":580,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"ssr"},"startTime":1767754681283,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":80439,"timestamp":137104254,"id":578,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1767754681282,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":81371,"timestamp":137104338,"id":579,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1767754681283,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7864,"timestamp":137186366,"id":582,"parentId":560,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1767754681365,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8681,"timestamp":137186494,"id":583,"parentId":559,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"ssr"},"startTime":1767754681365,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13226,"timestamp":137186553,"id":584,"parentId":559,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1767754681365,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":19384,"timestamp":137186610,"id":585,"parentId":559,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1767754681365,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12225,"timestamp":137195645,"id":586,"parentId":559,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1767754681374,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8122,"timestamp":137229545,"id":588,"parentId":559,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/hmr-refresh-reducer.js","layer":"ssr"},"startTime":1767754681408,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8763,"timestamp":137230225,"id":590,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/root-error-boundary.js","layer":"ssr"},"startTime":1767754681408,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":18216,"timestamp":137229649,"id":589,"parentId":559,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"ssr"},"startTime":1767754681408,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22858,"timestamp":137229360,"id":587,"parentId":560,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1767754681408,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":11453,"timestamp":137254273,"id":592,"parentId":544,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/chat.ts","layer":"ssr"},"startTime":1767754681433,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":12198,"timestamp":137253848,"id":591,"parentId":544,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/project.ts","layer":"ssr"},"startTime":1767754681432,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":11721,"timestamp":137254452,"id":593,"parentId":544,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/preview.ts","layer":"ssr"},"startTime":1767754681433,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2787,"timestamp":137270334,"id":594,"parentId":569,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/defaultAttributes.js","layer":"ssr"},"startTime":1767754681449,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3018,"timestamp":137270463,"id":595,"parentId":572,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hammer.js","layer":"ssr"},"startTime":1767754681449,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3253,"timestamp":137270525,"id":596,"parentId":572,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-question.js","layer":"ssr"},"startTime":1767754681449,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5770,"timestamp":137271832,"id":598,"parentId":574,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check.js","layer":"ssr"},"startTime":1767754681450,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5931,"timestamp":137271941,"id":599,"parentId":574,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pen-line.js","layer":"ssr"},"startTime":1767754681450,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6096,"timestamp":137272068,"id":600,"parentId":574,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-search.js","layer":"ssr"},"startTime":1767754681450,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6275,"timestamp":137272170,"id":601,"parentId":574,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-todo.js","layer":"ssr"},"startTime":1767754681450,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7264,"timestamp":137271712,"id":597,"parentId":574,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bot.js","layer":"ssr"},"startTime":1767754681450,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4906,"timestamp":137274343,"id":602,"parentId":574,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/search.js","layer":"ssr"},"startTime":1767754681453,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":711,"timestamp":137285238,"id":603,"parentId":555,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/amp-context.js","layer":"ssr"},"startTime":1767754681463,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2049,"timestamp":137286416,"id":604,"parentId":555,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/head-manager-context.js","layer":"ssr"},"startTime":1767754681465,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1060,"timestamp":137291242,"id":611,"parentId":546,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/image-config-context.js","layer":"ssr"},"startTime":1767754681469,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1023,"timestamp":137291447,"id":612,"parentId":546,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/router-context.js","layer":"ssr"},"startTime":1767754681470,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":7749,"timestamp":137286622,"id":605,"parentId":567,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MarkdownRenderer.tsx","layer":"ssr"},"startTime":1767754681465,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":17594,"timestamp":137286993,"id":607,"parentId":583,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"ssr"},"startTime":1767754681465,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":18644,"timestamp":137287100,"id":608,"parentId":583,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1767754681465,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22678,"timestamp":137290890,"id":610,"parentId":583,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"ssr"},"startTime":1767754681469,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":31024,"timestamp":137286807,"id":606,"parentId":566,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/AskUserQuestionBlock.tsx","layer":"ssr"},"startTime":1767754681465,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":31664,"timestamp":137287180,"id":609,"parentId":583,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1767754681465,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":48346,"timestamp":137291624,"id":613,"parentId":584,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1767754681470,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":37665,"timestamp":137365984,"id":615,"parentId":608,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"ssr"},"startTime":1767754681544,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":40273,"timestamp":137366153,"id":616,"parentId":585,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"ssr"},"startTime":1767754681544,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":41266,"timestamp":137366278,"id":617,"parentId":585,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1767754681545,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":42609,"timestamp":137366384,"id":618,"parentId":585,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"ssr"},"startTime":1767754681545,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":43384,"timestamp":137366597,"id":620,"parentId":586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1767754681545,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":46978,"timestamp":137366493,"id":619,"parentId":585,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/aliased-prefetch-navigations.js","layer":"ssr"},"startTime":1767754681545,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":65345,"timestamp":137365761,"id":614,"parentId":606,"tags":{"name":"__barrel_optimize__?names=Check,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754681544,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10410,"timestamp":137437820,"id":621,"parentId":589,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/assign-location.js","layer":"ssr"},"startTime":1767754681616,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11119,"timestamp":137438298,"id":623,"parentId":610,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"ssr"},"startTime":1767754681617,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11943,"timestamp":137438194,"id":622,"parentId":589,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/server-reference-info.js","layer":"ssr"},"startTime":1767754681616,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12864,"timestamp":137438386,"id":624,"parentId":590,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/graceful-degrade-boundary.js","layer":"ssr"},"startTime":1767754681617,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4629,"timestamp":137459248,"id":625,"parentId":608,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"ssr"},"startTime":1767754681637,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":675,"timestamp":137467279,"id":626,"parentId":582,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1767754681646,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":533,"timestamp":137468444,"id":627,"parentId":582,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1767754681647,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":2817,"timestamp":137471793,"id":628,"parentId":606,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/radio-group.tsx","layer":"ssr"},"startTime":1767754681650,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":4477,"timestamp":137472297,"id":629,"parentId":606,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/checkbox.tsx","layer":"ssr"},"startTime":1767754681651,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":2526,"timestamp":137477215,"id":630,"parentId":606,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/label.tsx","layer":"ssr"},"startTime":1767754681655,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2875,"timestamp":137477348,"id":631,"parentId":625,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"ssr"},"startTime":1767754681656,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1206,"timestamp":137484730,"id":634,"parentId":605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/index.js","layer":"ssr"},"startTime":1767754681663,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5756,"timestamp":137480467,"id":632,"parentId":628,"tags":{"name":"__barrel_optimize__?names=Circle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754681659,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":473,"timestamp":137486439,"id":635,"parentId":605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/index.js","layer":"ssr"},"startTime":1767754681665,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2508,"timestamp":137484634,"id":633,"parentId":629,"tags":{"name":"__barrel_optimize__?names=Check!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767754681663,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1174,"timestamp":137489279,"id":636,"parentId":632,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle.js","layer":"ssr"},"startTime":1767754681668,"traceId":"2c8d09f5a579ad25"}]
|
|
6
|
-
[{"name":"build-module-js","duration":1791,"timestamp":137491593,"id":637,"parentId":634,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/lib/index.js","layer":"ssr"},"startTime":1767754681670,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":584,"timestamp":137494578,"id":638,"parentId":635,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/lib/index.js","layer":"ssr"},"startTime":1767754681673,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":6592,"timestamp":137502763,"id":639,"parentId":628,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-radio-group@1.3.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@1_cjtgf3xmcqtfujhoownb73bnbi/node_modules/@radix-ui/react-radio-group/dist/index.mjs","layer":"ssr"},"startTime":1767754681681,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":3442,"timestamp":137512364,"id":640,"parentId":630,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-label@2.1.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2.7__ggc7d2jno3gcorzflrswkya7gm/node_modules/@radix-ui/react-label/dist/index.mjs","layer":"ssr"},"startTime":1767754681691,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":10015,"timestamp":137512597,"id":641,"parentId":629,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-checkbox@1.3.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_bewiq6cjocmach7p37abfyy75a/node_modules/@radix-ui/react-checkbox/dist/index.mjs","layer":"ssr"},"startTime":1767754681691,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":700,"timestamp":137548566,"id":642,"parentId":637,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/index.js","layer":"ssr"},"startTime":1767754681727,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":865,"timestamp":137558167,"id":643,"parentId":637,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/index.js","layer":"ssr"},"startTime":1767754681736,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":826,"timestamp":137558376,"id":644,"parentId":637,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.js","layer":"ssr"},"startTime":1767754681737,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":528,"timestamp":137566795,"id":645,"parentId":637,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.js","layer":"ssr"},"startTime":1767754681745,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":427,"timestamp":137573177,"id":646,"parentId":637,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/index.js","layer":"ssr"},"startTime":1767754681751,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":443,"timestamp":137579970,"id":647,"parentId":637,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/index.js","layer":"ssr"},"startTime":1767754681758,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":351,"timestamp":137583258,"id":648,"parentId":637,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.js","layer":"ssr"},"startTime":1767754681761,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":371,"timestamp":137584932,"id":649,"parentId":638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/index.js","layer":"ssr"},"startTime":1767754681763,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":650,"timestamp":137588696,"id":650,"parentId":638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm@3.0.0/node_modules/micromark-extension-gfm/index.js","layer":"ssr"},"startTime":1767754681767,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":634,"timestamp":137592474,"id":651,"parentId":637,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/devlop@1.1.0/node_modules/devlop/lib/default.js","layer":"ssr"},"startTime":1767754681771,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3021,"timestamp":137635902,"id":652,"parentId":642,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/lib/index.js","layer":"ssr"},"startTime":1767754681814,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":817,"timestamp":137639863,"id":653,"parentId":643,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/lib/index.js","layer":"ssr"},"startTime":1767754681818,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":506,"timestamp":137641542,"id":654,"parentId":644,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/lib/index.js","layer":"ssr"},"startTime":1767754681820,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3480,"timestamp":137642673,"id":655,"parentId":645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.js","layer":"ssr"},"startTime":1767754681821,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3795,"timestamp":137642868,"id":656,"parentId":646,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/lib/index.js","layer":"ssr"},"startTime":1767754681821,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1035,"timestamp":137648138,"id":657,"parentId":647,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/lib/index.js","layer":"ssr"},"startTime":1767754681826,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2837,"timestamp":137653351,"id":658,"parentId":648,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.js","layer":"ssr"},"startTime":1767754681832,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3120,"timestamp":137653553,"id":659,"parentId":649,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/lib/index.js","layer":"ssr"},"startTime":1767754681832,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":1913,"timestamp":137682604,"id":660,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+primitive@1.1.3/node_modules/@radix-ui/primitive/dist/index.mjs","layer":"ssr"},"startTime":1767754681861,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":6798,"timestamp":137682877,"id":661,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-context@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-context/dist/index.mjs","layer":"ssr"},"startTime":1767754681861,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":653,"timestamp":137693530,"id":662,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-compose-refs@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","layer":"ssr"},"startTime":1767754681872,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":4576,"timestamp":137698354,"id":664,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-controllable-state@1.2.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs","layer":"ssr"},"startTime":1767754681877,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":14673,"timestamp":137697320,"id":663,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-roving-focus@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react_olorlwzqifzjwjsjwfg7df3ffe/node_modules/@radix-ui/react-roving-focus/dist/index.mjs","layer":"ssr"},"startTime":1767754681876,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1984,"timestamp":137742825,"id":665,"parentId":646,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/index.js","layer":"ssr"},"startTime":1767754681921,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1403,"timestamp":137755326,"id":666,"parentId":650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-combine-extensions@2.0.1/node_modules/micromark-util-combine-extensions/index.js","layer":"ssr"},"startTime":1767754681934,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":813,"timestamp":137783711,"id":667,"parentId":650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/index.js","layer":"ssr"},"startTime":1767754681962,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":599,"timestamp":137795130,"id":668,"parentId":650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/index.js","layer":"ssr"},"startTime":1767754681973,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":2221,"timestamp":137811477,"id":669,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-direction@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-direction/dist/index.mjs","layer":"ssr"},"startTime":1767754681990,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2210,"timestamp":137811712,"id":670,"parentId":650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/index.js","layer":"ssr"},"startTime":1767754681990,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":2745,"timestamp":137811886,"id":671,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._vrijsupjqixawruberrfb56pbm/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"ssr"},"startTime":1767754681990,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2739,"timestamp":137812084,"id":672,"parentId":650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/index.js","layer":"ssr"},"startTime":1767754681990,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":2916,"timestamp":137812256,"id":673,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-previous@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-previous/dist/index.mjs","layer":"ssr"},"startTime":1767754681990,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1208,"timestamp":137841988,"id":674,"parentId":655,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.js","layer":"ssr"},"startTime":1767754682020,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1152,"timestamp":137842206,"id":675,"parentId":658,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minproc.js","layer":"ssr"},"startTime":1767754682020,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1177,"timestamp":137842317,"id":676,"parentId":658,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.js","layer":"ssr"},"startTime":1767754682021,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1187,"timestamp":137842413,"id":677,"parentId":658,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minpath.js","layer":"ssr"},"startTime":1767754682021,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":1566,"timestamp":137855772,"id":679,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-size@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-size/dist/index.mjs","layer":"ssr"},"startTime":1767754682034,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1606,"timestamp":137855938,"id":680,"parentId":650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/index.js","layer":"ssr"},"startTime":1767754682034,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":8260,"timestamp":137855586,"id":678,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-presence@1.1.5_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_g7nvzcflnhogkdp32witcuayfy/node_modules/@radix-ui/react-presence/dist/index.mjs","layer":"ssr"},"startTime":1767754682034,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":528,"timestamp":137865308,"id":681,"parentId":650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/index.js","layer":"ssr"},"startTime":1767754682044,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":1061,"timestamp":137865969,"id":682,"parentId":640,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.4_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._4sfldbbhvd3xapj4euqmtg5wga/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"ssr"},"startTime":1767754682044,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":48,"timestamp":137901502,"id":683,"parentId":675,"tags":{"name":"node:process","layer":null},"startTime":1767754682080,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":13,"timestamp":137901578,"id":684,"parentId":676,"tags":{"name":"node:url","layer":null},"startTime":1767754682080,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":10,"timestamp":137901601,"id":685,"parentId":677,"tags":{"name":"node:path","layer":null},"startTime":1767754682080,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1276,"timestamp":137904769,"id":686,"parentId":652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/comma-separated-tokens@2.0.3/node_modules/comma-separated-tokens/index.js","layer":"ssr"},"startTime":1767754682083,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":589,"timestamp":137924083,"id":687,"parentId":652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/index.js","layer":"ssr"},"startTime":1767754682102,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":941,"timestamp":137928854,"id":688,"parentId":652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/index.js","layer":"ssr"},"startTime":1767754682107,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":490,"timestamp":137933466,"id":689,"parentId":652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/index.js","layer":"ssr"},"startTime":1767754682112,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":517,"timestamp":137940613,"id":690,"parentId":652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/index.js","layer":"ssr"},"startTime":1767754682119,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":523,"timestamp":137945556,"id":691,"parentId":652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/index.js","layer":"ssr"},"startTime":1767754682124,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":876,"timestamp":137954259,"id":692,"parentId":652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/space-separated-tokens@2.0.2/node_modules/space-separated-tokens/index.js","layer":"ssr"},"startTime":1767754682132,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":528,"timestamp":137963051,"id":693,"parentId":654,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/index.js","layer":"ssr"},"startTime":1767754682141,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1060,"timestamp":137972277,"id":694,"parentId":652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/index.js","layer":"ssr"},"startTime":1767754682151,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":610,"timestamp":137974104,"id":695,"parentId":655,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/bail@2.0.2/node_modules/bail/index.js","layer":"ssr"},"startTime":1767754682152,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":510,"timestamp":137978882,"id":696,"parentId":655,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/is-plain-obj@4.1.0/node_modules/is-plain-obj/index.js","layer":"ssr"},"startTime":1767754682157,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":416,"timestamp":137982764,"id":697,"parentId":655,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.js","layer":"ssr"},"startTime":1767754682161,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1430,"timestamp":137989590,"id":698,"parentId":655,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/extend@3.0.2/node_modules/extend/index.js","layer":"ssr"},"startTime":1767754682168,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1090,"timestamp":137996658,"id":699,"parentId":657,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/index.js","layer":"ssr"},"startTime":1767754682175,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1420,"timestamp":137996887,"id":700,"parentId":665,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/index.js","layer":"ssr"},"startTime":1767754682175,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2408,"timestamp":137997085,"id":701,"parentId":665,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/footer.js","layer":"ssr"},"startTime":1767754682175,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":960,"timestamp":138000508,"id":702,"parentId":659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/index.js","layer":"ssr"},"startTime":1767754682179,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1062,"timestamp":138007406,"id":703,"parentId":665,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/index.js","layer":"ssr"},"startTime":1767754682186,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":654,"timestamp":138018555,"id":704,"parentId":659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/index.js","layer":"ssr"},"startTime":1767754682197,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9283,"timestamp":138022464,"id":705,"parentId":667,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js","layer":"ssr"},"startTime":1767754682201,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9576,"timestamp":138022665,"id":706,"parentId":667,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/html.js","layer":"ssr"},"startTime":1767754682201,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":580,"timestamp":138038204,"id":707,"parentId":659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/index.js","layer":"ssr"},"startTime":1767754682216,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":652,"timestamp":138038885,"id":708,"parentId":659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/index.js","layer":"ssr"},"startTime":1767754682217,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":468,"timestamp":138049267,"id":709,"parentId":659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/index.js","layer":"ssr"},"startTime":1767754682227,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":512,"timestamp":138052533,"id":710,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.shared.js","layer":"ssr"},"startTime":1767754682231,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2388,"timestamp":138053788,"id":711,"parentId":668,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/syntax.js","layer":"ssr"},"startTime":1767754682232,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3075,"timestamp":138053997,"id":712,"parentId":668,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/html.js","layer":"ssr"},"startTime":1767754682232,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":962,"timestamp":138064869,"id":713,"parentId":670,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/html.js","layer":"ssr"},"startTime":1767754682243,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1868,"timestamp":138065117,"id":714,"parentId":670,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js","layer":"ssr"},"startTime":1767754682243,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1679,"timestamp":138069721,"id":715,"parentId":672,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/html.js","layer":"ssr"},"startTime":1767754682248,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4562,"timestamp":138069957,"id":716,"parentId":672,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/syntax.js","layer":"ssr"},"startTime":1767754682248,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1088,"timestamp":138092898,"id":717,"parentId":680,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/html.js","layer":"ssr"},"startTime":1767754682271,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1609,"timestamp":138093166,"id":718,"parentId":680,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js","layer":"ssr"},"startTime":1767754682271,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":816,"timestamp":138105310,"id":719,"parentId":681,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/lib/index.js","layer":"ssr"},"startTime":1767754682284,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":798,"timestamp":138127238,"id":720,"parentId":666,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-chunked@2.0.1/node_modules/micromark-util-chunked/index.js","layer":"ssr"},"startTime":1767754682305,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4183,"timestamp":138132619,"id":721,"parentId":687,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/lib/index.js","layer":"ssr"},"startTime":1767754682311,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4510,"timestamp":138132829,"id":722,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/aria.js","layer":"ssr"},"startTime":1767754682311,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5391,"timestamp":138133038,"id":723,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/html.js","layer":"ssr"},"startTime":1767754682311,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5469,"timestamp":138133225,"id":724,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xlink.js","layer":"ssr"},"startTime":1767754682311,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3238,"timestamp":138141843,"id":725,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/svg.js","layer":"ssr"},"startTime":1767754682320,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3262,"timestamp":138142064,"id":726,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xmlns.js","layer":"ssr"},"startTime":1767754682320,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3317,"timestamp":138142254,"id":727,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xml.js","layer":"ssr"},"startTime":1767754682320,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3336,"timestamp":138142429,"id":728,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/hast-to-react.js","layer":"ssr"},"startTime":1767754682321,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1186,"timestamp":138146975,"id":729,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/find.js","layer":"ssr"},"startTime":1767754682325,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1327,"timestamp":138162557,"id":730,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/normalize.js","layer":"ssr"},"startTime":1767754682341,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":916,"timestamp":138167482,"id":731,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/merge.js","layer":"ssr"},"startTime":1767754682346,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":874,"timestamp":138176846,"id":732,"parentId":689,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/lib/index.js","layer":"ssr"},"startTime":1767754682355,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1102,"timestamp":138181583,"id":733,"parentId":690,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/lib/index.js","layer":"ssr"},"startTime":1767754682360,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2162,"timestamp":138188133,"id":734,"parentId":691,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/lib/index.js","layer":"ssr"},"startTime":1767754682366,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6918,"timestamp":138188380,"id":735,"parentId":693,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/lib/index.js","layer":"ssr"},"startTime":1767754682367,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2753,"timestamp":138195773,"id":736,"parentId":700,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/state.js","layer":"ssr"},"startTime":1767754682374,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3231,"timestamp":138195994,"id":737,"parentId":694,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/utilities.js","layer":"ssr"},"startTime":1767754682374,"traceId":"2c8d09f5a579ad25"}]
|
|
7
|
-
[{"name":"build-module-js","duration":1943,"timestamp":138215796,"id":738,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js","layer":"ssr"},"startTime":1767754682394,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1918,"timestamp":138216078,"id":739,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/break.js","layer":"ssr"},"startTime":1767754682394,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5300,"timestamp":138216264,"id":740,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/code.js","layer":"ssr"},"startTime":1767754682394,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6077,"timestamp":138216431,"id":741,"parentId":697,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.js","layer":"ssr"},"startTime":1767754682395,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1554,"timestamp":138227127,"id":742,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/delete.js","layer":"ssr"},"startTime":1767754682405,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1559,"timestamp":138227358,"id":743,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js","layer":"ssr"},"startTime":1767754682406,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1734,"timestamp":138227772,"id":744,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js","layer":"ssr"},"startTime":1767754682406,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1284,"timestamp":138233179,"id":745,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/html.js","layer":"ssr"},"startTime":1767754682411,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1473,"timestamp":138233381,"id":746,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js","layer":"ssr"},"startTime":1767754682412,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1549,"timestamp":138233550,"id":747,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/heading.js","layer":"ssr"},"startTime":1767754682412,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2020,"timestamp":138251314,"id":748,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image.js","layer":"ssr"},"startTime":1767754682430,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2095,"timestamp":138251589,"id":749,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js","layer":"ssr"},"startTime":1767754682430,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5314,"timestamp":138251778,"id":750,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js","layer":"ssr"},"startTime":1767754682430,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5487,"timestamp":138251957,"id":751,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link.js","layer":"ssr"},"startTime":1767754682430,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1720,"timestamp":138262469,"id":752,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list.js","layer":"ssr"},"startTime":1767754682441,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1718,"timestamp":138262718,"id":753,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js","layer":"ssr"},"startTime":1767754682441,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5351,"timestamp":138262919,"id":754,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list-item.js","layer":"ssr"},"startTime":1767754682441,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1143,"timestamp":138268809,"id":755,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/root.js","layer":"ssr"},"startTime":1767754682447,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1152,"timestamp":138269048,"id":756,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/strong.js","layer":"ssr"},"startTime":1767754682447,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1459,"timestamp":138269226,"id":757,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table.js","layer":"ssr"},"startTime":1767754682447,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2007,"timestamp":138280388,"id":758,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-row.js","layer":"ssr"},"startTime":1767754682459,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2012,"timestamp":138280640,"id":759,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js","layer":"ssr"},"startTime":1767754682459,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2146,"timestamp":138280810,"id":760,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/text.js","layer":"ssr"},"startTime":1767754682459,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8112,"timestamp":138280980,"id":761,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js","layer":"ssr"},"startTime":1767754682459,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1924,"timestamp":138293838,"id":762,"parentId":699,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/index.js","layer":"ssr"},"startTime":1767754682472,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1640,"timestamp":138299206,"id":763,"parentId":702,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/lib/index.js","layer":"ssr"},"startTime":1767754682477,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1263,"timestamp":138316485,"id":764,"parentId":704,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/lib/index.js","layer":"ssr"},"startTime":1767754682495,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1725,"timestamp":138328859,"id":765,"parentId":707,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/lib/index.js","layer":"ssr"},"startTime":1767754682507,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3132,"timestamp":138333060,"id":766,"parentId":708,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/lib/index.js","layer":"ssr"},"startTime":1767754682511,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2002,"timestamp":138348712,"id":767,"parentId":709,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/lib/index.js","layer":"ssr"},"startTime":1767754682527,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1021,"timestamp":138360058,"id":768,"parentId":694,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-object@1.0.14/node_modules/style-to-object/cjs/index.js","layer":"ssr"},"startTime":1767754682538,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1217,"timestamp":138362931,"id":769,"parentId":716,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/edit-map.js","layer":"ssr"},"startTime":1767754682541,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":745,"timestamp":138366786,"id":770,"parentId":716,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/infer.js","layer":"ssr"},"startTime":1767754682545,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1421,"timestamp":138372450,"id":771,"parentId":701,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-sanitize-uri@2.0.1/node_modules/micromark-util-sanitize-uri/index.js","layer":"ssr"},"startTime":1767754682551,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":785,"timestamp":138384884,"id":772,"parentId":664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-layout-effect@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-layout-effect/dist/index.mjs","layer":"ssr"},"startTime":1767754682563,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":841,"timestamp":138389121,"id":773,"parentId":664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-effect-event@0.0.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-effect-event/dist/index.mjs","layer":"ssr"},"startTime":1767754682567,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1615,"timestamp":138395471,"id":774,"parentId":705,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-character@2.1.1/node_modules/micromark-util-character/index.js","layer":"ssr"},"startTime":1767754682574,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":804,"timestamp":138410390,"id":775,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-callback-ref@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs","layer":"ssr"},"startTime":1767754682589,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1035,"timestamp":138419778,"id":776,"parentId":711,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/index.js","layer":"ssr"},"startTime":1767754682598,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":1109,"timestamp":138422419,"id":777,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-id@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-id/dist/index.mjs","layer":"ssr"},"startTime":1767754682601,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":823,"timestamp":138427458,"id":778,"parentId":711,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-space@2.0.1/node_modules/micromark-factory-space/index.js","layer":"ssr"},"startTime":1767754682606,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":830,"timestamp":138460524,"id":779,"parentId":711,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-normalize-identifier@2.0.1/node_modules/micromark-util-normalize-identifier/index.js","layer":"ssr"},"startTime":1767754682639,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1402,"timestamp":138469402,"id":780,"parentId":722,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/create.js","layer":"ssr"},"startTime":1767754682648,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1617,"timestamp":138469558,"id":781,"parentId":722,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/types.js","layer":"ssr"},"startTime":1767754682648,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1676,"timestamp":138469664,"id":782,"parentId":725,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-sensitive-transform.js","layer":"ssr"},"startTime":1767754682648,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1754,"timestamp":138469758,"id":783,"parentId":723,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-insensitive-transform.js","layer":"ssr"},"startTime":1767754682648,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2019,"timestamp":138469858,"id":784,"parentId":729,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/defined-info.js","layer":"ssr"},"startTime":1767754682648,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1043,"timestamp":138473651,"id":785,"parentId":729,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/info.js","layer":"ssr"},"startTime":1767754682652,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1149,"timestamp":138473778,"id":786,"parentId":731,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/schema.js","layer":"ssr"},"startTime":1767754682652,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":14569,"timestamp":138477320,"id":787,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-collection@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19_3vqfgunzp4tkkuqnqgefg7qsai/node_modules/@radix-ui/react-collection/dist/index.mjs","layer":"ssr"},"startTime":1767754682656,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":916,"timestamp":138495559,"id":788,"parentId":746,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/revert.js","layer":"ssr"},"startTime":1767754682674,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":430,"timestamp":138497549,"id":789,"parentId":762,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/color.node.js","layer":"ssr"},"startTime":1767754682676,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":663,"timestamp":138502695,"id":790,"parentId":714,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-resolve-all@2.0.1/node_modules/micromark-util-resolve-all/index.js","layer":"ssr"},"startTime":1767754682681,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":1652,"timestamp":138502829,"id":791,"parentId":671,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.3_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"ssr"},"startTime":1767754682681,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":705,"timestamp":138506999,"id":792,"parentId":714,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-classify-character@2.0.1/node_modules/micromark-util-classify-character/index.js","layer":"ssr"},"startTime":1767754682685,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":2146,"timestamp":138507789,"id":793,"parentId":682,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.4_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"ssr"},"startTime":1767754682686,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":524,"timestamp":138534720,"id":794,"parentId":735,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/index.js","layer":"ssr"},"startTime":1767754682713,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":459,"timestamp":138543427,"id":795,"parentId":735,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/index.js","layer":"ssr"},"startTime":1767754682722,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1197,"timestamp":138559856,"id":796,"parentId":735,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/index.js","layer":"ssr"},"startTime":1767754682738,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1574,"timestamp":138567350,"id":797,"parentId":735,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-numeric-character-reference@2.0.2/node_modules/micromark-util-decode-numeric-character-reference/index.js","layer":"ssr"},"startTime":1767754682746,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1082,"timestamp":138573349,"id":798,"parentId":735,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-string@2.0.1/node_modules/micromark-util-decode-string/index.js","layer":"ssr"},"startTime":1767754682752,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":661,"timestamp":138580113,"id":799,"parentId":735,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/decode-named-character-reference@1.2.0/node_modules/decode-named-character-reference/index.js","layer":"ssr"},"startTime":1767754682758,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":994,"timestamp":138583196,"id":800,"parentId":760,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trim-lines@3.0.1/node_modules/trim-lines/index.js","layer":"ssr"},"startTime":1767754682761,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":494,"timestamp":138589047,"id":801,"parentId":762,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/index.js","layer":"ssr"},"startTime":1767754682767,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":495,"timestamp":138604935,"id":802,"parentId":767,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.js","layer":"ssr"},"startTime":1767754682783,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1947,"timestamp":138611921,"id":803,"parentId":766,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/ccount@2.0.1/node_modules/ccount/index.js","layer":"ssr"},"startTime":1767754682790,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1005,"timestamp":138622100,"id":804,"parentId":701,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/index.js","layer":"ssr"},"startTime":1767754682800,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":561,"timestamp":138625968,"id":805,"parentId":766,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/index.js","layer":"ssr"},"startTime":1767754682804,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3065,"timestamp":138627544,"id":806,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/attention.js","layer":"ssr"},"startTime":1767754682806,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3985,"timestamp":138627745,"id":807,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/autolink.js","layer":"ssr"},"startTime":1767754682806,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4227,"timestamp":138627916,"id":808,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/blank-line.js","layer":"ssr"},"startTime":1767754682806,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1540,"timestamp":138638173,"id":809,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/block-quote.js","layer":"ssr"},"startTime":1767754682816,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1658,"timestamp":138641667,"id":810,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-indented.js","layer":"ssr"},"startTime":1767754682820,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3351,"timestamp":138641801,"id":811,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-fenced.js","layer":"ssr"},"startTime":1767754682820,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4118,"timestamp":138641909,"id":812,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/content.js","layer":"ssr"},"startTime":1767754682820,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5222,"timestamp":138642030,"id":813,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-text.js","layer":"ssr"},"startTime":1767754682820,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5793,"timestamp":138642132,"id":814,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-reference.js","layer":"ssr"},"startTime":1767754682820,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6078,"timestamp":138642227,"id":815,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-escape.js","layer":"ssr"},"startTime":1767754682820,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5273,"timestamp":138655414,"id":816,"parentId":767,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/markdown-table@3.0.4/node_modules/markdown-table/index.js","layer":"ssr"},"startTime":1767754682834,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7168,"timestamp":138656096,"id":817,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/definition.js","layer":"ssr"},"startTime":1767754682834,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8216,"timestamp":138656276,"id":818,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/hard-break-escape.js","layer":"ssr"},"startTime":1767754682835,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8996,"timestamp":138656439,"id":819,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/heading-atx.js","layer":"ssr"},"startTime":1767754682835,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4031,"timestamp":138668948,"id":820,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-flow.js","layer":"ssr"},"startTime":1767754682847,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10749,"timestamp":138677387,"id":821,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-end.js","layer":"ssr"},"startTime":1767754682856,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10989,"timestamp":138677630,"id":822,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-image.js","layer":"ssr"},"startTime":1767754682856,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12838,"timestamp":138677823,"id":823,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-text.js","layer":"ssr"},"startTime":1767754682856,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13335,"timestamp":138677991,"id":824,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-link.js","layer":"ssr"},"startTime":1767754682856,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13465,"timestamp":138678175,"id":825,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/line-ending.js","layer":"ssr"},"startTime":1767754682856,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":14767,"timestamp":138678346,"id":826,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/list.js","layer":"ssr"},"startTime":1767754682857,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":841,"timestamp":138698917,"id":827,"parentId":771,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-encode@2.0.1/node_modules/micromark-util-encode/index.js","layer":"ssr"},"startTime":1767754682877,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1413,"timestamp":138699112,"id":828,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/setext-underline.js","layer":"ssr"},"startTime":1767754682877,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1823,"timestamp":138699220,"id":829,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/thematic-break.js","layer":"ssr"},"startTime":1767754682877,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3856,"timestamp":138721403,"id":830,"parentId":768,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/inline-style-parser@0.2.7/node_modules/inline-style-parser/cjs/index.js","layer":"ssr"},"startTime":1767754682900,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1216,"timestamp":138782741,"id":831,"parentId":794,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/lib/index.js","layer":"ssr"},"startTime":1767754682961,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1125,"timestamp":138801982,"id":832,"parentId":795,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/lib/index.js","layer":"ssr"},"startTime":1767754682980,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13103,"timestamp":138803846,"id":833,"parentId":796,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/compile.js","layer":"ssr"},"startTime":1767754682982,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13398,"timestamp":138804055,"id":834,"parentId":796,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/parse.js","layer":"ssr"},"startTime":1767754682982,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13468,"timestamp":138804217,"id":835,"parentId":796,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/postprocess.js","layer":"ssr"},"startTime":1767754682982,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":14172,"timestamp":138804366,"id":836,"parentId":796,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/preprocess.js","layer":"ssr"},"startTime":1767754682983,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4998,"timestamp":138824043,"id":837,"parentId":801,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/lib/index.js","layer":"ssr"},"startTime":1767754683002,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1260,"timestamp":138833733,"id":838,"parentId":802,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/index.js","layer":"ssr"},"startTime":1767754683012,"traceId":"2c8d09f5a579ad25"}]
|
|
8
|
-
[{"name":"build-module-js","duration":1354,"timestamp":138835846,"id":839,"parentId":802,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/index.js","layer":"ssr"},"startTime":1767754683014,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1178,"timestamp":138900243,"id":840,"parentId":804,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/deserialize.js","layer":"ssr"},"startTime":1767754683078,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2297,"timestamp":138903237,"id":841,"parentId":804,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/serialize.js","layer":"ssr"},"startTime":1767754683081,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3366,"timestamp":138903418,"id":842,"parentId":805,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/lib/index.js","layer":"ssr"},"startTime":1767754683082,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5044,"timestamp":138917813,"id":843,"parentId":799,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/character-entities@2.0.2/node_modules/character-entities/index.js","layer":"ssr"},"startTime":1767754683096,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2726,"timestamp":138944212,"id":844,"parentId":812,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/index.js","layer":"ssr"},"startTime":1767754683122,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3411,"timestamp":138944467,"id":845,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/constructs.js","layer":"ssr"},"startTime":1767754683123,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3930,"timestamp":138952318,"id":846,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/create-tokenizer.js","layer":"ssr"},"startTime":1767754683131,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4283,"timestamp":138952527,"id":847,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/content.js","layer":"ssr"},"startTime":1767754683131,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5830,"timestamp":138952715,"id":848,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/document.js","layer":"ssr"},"startTime":1767754683131,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2777,"timestamp":138968094,"id":849,"parentId":817,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-destination@2.0.1/node_modules/micromark-factory-destination/index.js","layer":"ssr"},"startTime":1767754683146,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3020,"timestamp":138968360,"id":850,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/configure.js","layer":"ssr"},"startTime":1767754683147,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3289,"timestamp":138968560,"id":851,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/flow.js","layer":"ssr"},"startTime":1767754683147,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4336,"timestamp":138968749,"id":852,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/text.js","layer":"ssr"},"startTime":1767754683147,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1672,"timestamp":138978101,"id":853,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/join.js","layer":"ssr"},"startTime":1767754683156,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2058,"timestamp":138978306,"id":854,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/unsafe.js","layer":"ssr"},"startTime":1767754683157,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2161,"timestamp":138978489,"id":855,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js","layer":"ssr"},"startTime":1767754683157,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1840,"timestamp":138984878,"id":856,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/break.js","layer":"ssr"},"startTime":1767754683163,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2323,"timestamp":138985098,"id":857,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/code.js","layer":"ssr"},"startTime":1767754683163,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2632,"timestamp":138985290,"id":858,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/definition.js","layer":"ssr"},"startTime":1767754683164,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2987,"timestamp":138985467,"id":859,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js","layer":"ssr"},"startTime":1767754683164,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2210,"timestamp":138990951,"id":860,"parentId":817,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-label@2.0.1/node_modules/micromark-factory-label/index.js","layer":"ssr"},"startTime":1767754683169,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2085,"timestamp":138995675,"id":861,"parentId":817,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-title@2.0.1/node_modules/micromark-factory-title/index.js","layer":"ssr"},"startTime":1767754683174,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2552,"timestamp":138995888,"id":862,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/heading.js","layer":"ssr"},"startTime":1767754683174,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2563,"timestamp":138996094,"id":863,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/html.js","layer":"ssr"},"startTime":1767754683174,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3052,"timestamp":138996280,"id":864,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image.js","layer":"ssr"},"startTime":1767754683175,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1199,"timestamp":139002192,"id":865,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js","layer":"ssr"},"startTime":1767754683180,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1439,"timestamp":139002350,"id":866,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js","layer":"ssr"},"startTime":1767754683181,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1813,"timestamp":139002475,"id":867,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link.js","layer":"ssr"},"startTime":1767754683181,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":815,"timestamp":139005094,"id":868,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/association.js","layer":"ssr"},"startTime":1767754683183,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1048,"timestamp":139005231,"id":869,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/compile-pattern.js","layer":"ssr"},"startTime":1767754683183,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1781,"timestamp":139005335,"id":870,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-phrasing.js","layer":"ssr"},"startTime":1767754683184,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":713,"timestamp":139011139,"id":871,"parentId":820,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-html-tag-name@2.0.1/node_modules/micromark-util-html-tag-name/index.js","layer":"ssr"},"startTime":1767754683189,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1034,"timestamp":139013407,"id":872,"parentId":817,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-whitespace@2.0.1/node_modules/micromark-factory-whitespace/index.js","layer":"ssr"},"startTime":1767754683192,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1252,"timestamp":139013538,"id":873,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-flow.js","layer":"ssr"},"startTime":1767754683192,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1485,"timestamp":139013647,"id":874,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/indent-lines.js","layer":"ssr"},"startTime":1767754683192,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2593,"timestamp":139013746,"id":875,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/safe.js","layer":"ssr"},"startTime":1767754683192,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1609,"timestamp":139018142,"id":876,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/track.js","layer":"ssr"},"startTime":1767754683196,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1890,"timestamp":139018337,"id":877,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js","layer":"ssr"},"startTime":1767754683197,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2475,"timestamp":139018506,"id":878,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list.js","layer":"ssr"},"startTime":1767754683197,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1643,"timestamp":139024459,"id":879,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list-item.js","layer":"ssr"},"startTime":1767754683203,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1623,"timestamp":139024658,"id":880,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js","layer":"ssr"},"startTime":1767754683203,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1656,"timestamp":139024826,"id":881,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/root.js","layer":"ssr"},"startTime":1767754683203,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":771,"timestamp":139047884,"id":882,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/text.js","layer":"ssr"},"startTime":1767754683226,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1017,"timestamp":139048088,"id":883,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/strong.js","layer":"ssr"},"startTime":1767754683226,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":732,"timestamp":139050515,"id":884,"parentId":840,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/types.js","layer":"ssr"},"startTime":1767754683229,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":846,"timestamp":139050642,"id":885,"parentId":839,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js","layer":"ssr"},"startTime":1767754683229,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":472,"timestamp":139059104,"id":886,"parentId":853,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js","layer":"ssr"},"startTime":1767754683237,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1632,"timestamp":139067268,"id":887,"parentId":853,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js","layer":"ssr"},"startTime":1767754683245,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1590,"timestamp":139067513,"id":888,"parentId":857,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-fence.js","layer":"ssr"},"startTime":1767754683246,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1635,"timestamp":139067637,"id":889,"parentId":858,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-quote.js","layer":"ssr"},"startTime":1767754683246,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1691,"timestamp":139067740,"id":890,"parentId":859,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js","layer":"ssr"},"startTime":1767754683246,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1730,"timestamp":139067836,"id":891,"parentId":859,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js","layer":"ssr"},"startTime":1767754683246,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1870,"timestamp":139067929,"id":892,"parentId":856,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js","layer":"ssr"},"startTime":1767754683246,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":701,"timestamp":139070697,"id":893,"parentId":859,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-info.js","layer":"ssr"},"startTime":1767754683249,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1034,"timestamp":139073050,"id":894,"parentId":844,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/lib/splice-buffer.js","layer":"ssr"},"startTime":1767754683251,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":631,"timestamp":139081446,"id":895,"parentId":867,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js","layer":"ssr"},"startTime":1767754683260,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":704,"timestamp":139090950,"id":896,"parentId":878,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js","layer":"ssr"},"startTime":1767754683269,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":795,"timestamp":139091120,"id":897,"parentId":878,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js","layer":"ssr"},"startTime":1767754683269,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1792,"timestamp":139094537,"id":898,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zwitch@2.0.4/node_modules/zwitch/index.js","layer":"ssr"},"startTime":1767754683273,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1859,"timestamp":139094742,"id":899,"parentId":878,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js","layer":"ssr"},"startTime":1767754683273,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1893,"timestamp":139094930,"id":900,"parentId":878,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule.js","layer":"ssr"},"startTime":1767754683273,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1944,"timestamp":139095118,"id":901,"parentId":879,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js","layer":"ssr"},"startTime":1767754683273,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":752,"timestamp":139103926,"id":902,"parentId":842,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/escape-string-regexp@5.0.0/node_modules/escape-string-regexp/index.js","layer":"ssr"},"startTime":1767754683282,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":457,"timestamp":139108725,"id":903,"parentId":883,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-strong.js","layer":"ssr"},"startTime":1767754683287,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":378,"timestamp":139110481,"id":904,"parentId":885,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js","layer":"ssr"},"startTime":1767754683289,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":585,"timestamp":139125246,"id":905,"parentId":857,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/longest-streak@3.1.0/node_modules/longest-streak/index.js","layer":"ssr"},"startTime":1767754683303,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":382,"timestamp":139127698,"id":906,"parentId":881,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/index.js","layer":"ssr"},"startTime":1767754683306,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":689,"timestamp":139129592,"id":907,"parentId":906,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/lib/index.js","layer":"ssr"},"startTime":1767754683308,"traceId":"2c8d09f5a579ad25"},{"name":"make","duration":6083794,"timestamp":133056412,"id":22,"parentId":20,"tags":{},"startTime":1767754677235,"traceId":"2c8d09f5a579ad25"},{"name":"get-entries","duration":778,"timestamp":139141987,"id":909,"parentId":908,"tags":{},"startTime":1767754683320,"traceId":"2c8d09f5a579ad25"},{"name":"node-file-trace-plugin","duration":96272,"timestamp":139147629,"id":910,"parentId":908,"tags":{"traceEntryCount":"10"},"startTime":1767754683326,"traceId":"2c8d09f5a579ad25"},{"name":"collect-traced-files","duration":633,"timestamp":139243915,"id":911,"parentId":908,"tags":{},"startTime":1767754683422,"traceId":"2c8d09f5a579ad25"},{"name":"finish-modules","duration":102890,"timestamp":139141665,"id":908,"parentId":21,"tags":{},"startTime":1767754683320,"traceId":"2c8d09f5a579ad25"},{"name":"chunk-graph","duration":40975,"timestamp":139310714,"id":913,"parentId":912,"tags":{},"startTime":1767754683489,"traceId":"2c8d09f5a579ad25"},{"name":"optimize-modules","duration":39,"timestamp":139351875,"id":915,"parentId":912,"tags":{},"startTime":1767754683530,"traceId":"2c8d09f5a579ad25"},{"name":"optimize-chunks","duration":22669,"timestamp":139352041,"id":916,"parentId":912,"tags":{},"startTime":1767754683530,"traceId":"2c8d09f5a579ad25"},{"name":"optimize-tree","duration":128,"timestamp":139374802,"id":917,"parentId":912,"tags":{},"startTime":1767754683553,"traceId":"2c8d09f5a579ad25"},{"name":"optimize-chunk-modules","duration":26403,"timestamp":139375073,"id":918,"parentId":912,"tags":{},"startTime":1767754683553,"traceId":"2c8d09f5a579ad25"},{"name":"optimize","duration":49788,"timestamp":139351790,"id":914,"parentId":912,"tags":{},"startTime":1767754683530,"traceId":"2c8d09f5a579ad25"},{"name":"module-hash","duration":37516,"timestamp":139432430,"id":919,"parentId":912,"tags":{},"startTime":1767754683611,"traceId":"2c8d09f5a579ad25"},{"name":"code-generation","duration":558588,"timestamp":139470056,"id":920,"parentId":912,"tags":{},"startTime":1767754683648,"traceId":"2c8d09f5a579ad25"},{"name":"hash","duration":9136,"timestamp":140034714,"id":921,"parentId":912,"tags":{},"startTime":1767754684213,"traceId":"2c8d09f5a579ad25"},{"name":"code-generation-jobs","duration":624,"timestamp":140043845,"id":922,"parentId":912,"tags":{},"startTime":1767754684222,"traceId":"2c8d09f5a579ad25"},{"name":"module-assets","duration":479,"timestamp":140044418,"id":923,"parentId":912,"tags":{},"startTime":1767754684223,"traceId":"2c8d09f5a579ad25"},{"name":"create-chunk-assets","duration":19196,"timestamp":140044913,"id":924,"parentId":912,"tags":{},"startTime":1767754684223,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":111141,"timestamp":140095624,"id":927,"parentId":925,"tags":{"name":"../pages/_app.js","cache":"MISS"},"startTime":1767754684274,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":120988,"timestamp":140085855,"id":926,"parentId":925,"tags":{"name":"../app/_not-found/page.js","cache":"MISS"},"startTime":1767754684264,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":66597,"timestamp":140140294,"id":931,"parentId":925,"tags":{"name":"../app/settings/page.js","cache":"MISS"},"startTime":1767754684319,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":65679,"timestamp":140141249,"id":932,"parentId":925,"tags":{"name":"../pages/_document.js","cache":"MISS"},"startTime":1767754684319,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":65642,"timestamp":140141319,"id":933,"parentId":925,"tags":{"name":"../webpack-runtime.js","cache":"MISS"},"startTime":1767754684320,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":105124,"timestamp":140101968,"id":929,"parentId":925,"tags":{"name":"../app/page.js","cache":"MISS"},"startTime":1767754684280,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":194815,"timestamp":140096070,"id":928,"parentId":925,"tags":{"name":"../pages/_error.js","cache":"MISS"},"startTime":1767754684274,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":182180,"timestamp":140160277,"id":936,"parentId":925,"tags":{"name":"799.js","cache":"MISS"},"startTime":1767754684339,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":181952,"timestamp":140162342,"id":937,"parentId":925,"tags":{"name":"392.js","cache":"MISS"},"startTime":1767754684341,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":203387,"timestamp":140154600,"id":935,"parentId":925,"tags":{"name":"811.js","cache":"MISS"},"startTime":1767754684333,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":394048,"timestamp":140141638,"id":934,"parentId":925,"tags":{"name":"673.js","cache":"MISS"},"startTime":1767754684320,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":478201,"timestamp":140103984,"id":930,"parentId":925,"tags":{"name":"../app/project/[id]/page.js","cache":"MISS"},"startTime":1767754684282,"traceId":"2c8d09f5a579ad25"},{"name":"minify-webpack-plugin-optimize","duration":515258,"timestamp":140066949,"id":925,"parentId":20,"tags":{"compilationName":"server","mangle":"[object Object]"},"startTime":1767754684245,"traceId":"2c8d09f5a579ad25"},{"name":"css-minimizer-plugin","duration":166,"timestamp":140582378,"id":938,"parentId":20,"tags":{},"startTime":1767754684761,"traceId":"2c8d09f5a579ad25"},{"name":"create-trace-assets","duration":1489,"timestamp":140582751,"id":939,"parentId":21,"tags":{},"startTime":1767754684761,"traceId":"2c8d09f5a579ad25"}]
|
|
9
|
-
[{"name":"build-module-js","duration":4166,"timestamp":134173325,"id":118,"parentId":109,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/utils.js","layer":"pages-dir-node"},"startTime":1767754678352,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12262,"timestamp":134172707,"id":115,"parentId":73,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/cache-control.js","layer":"rsc"},"startTime":1767754678351,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13025,"timestamp":134173092,"id":117,"parentId":95,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/utils.js","layer":"rsc"},"startTime":1767754678351,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":23486,"timestamp":134173400,"id":119,"parentId":59,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-data-path.js","layer":"pages-dir-node"},"startTime":1767754678352,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":24219,"timestamp":134173494,"id":120,"parentId":74,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"rsc"},"startTime":1767754678352,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":27655,"timestamp":134173615,"id":121,"parentId":59,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"pages-dir-node"},"startTime":1767754678352,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":40993,"timestamp":134173698,"id":122,"parentId":59,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"pages-dir-node"},"startTime":1767754678352,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":41363,"timestamp":134173781,"id":123,"parentId":59,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"pages-dir-node"},"startTime":1767754678352,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-external","duration":67,"timestamp":134244271,"id":124,"parentId":83,"tags":{"name":"./work-async-storage.external","layer":null},"startTime":1767754678423,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3766,"timestamp":134244685,"id":126,"parentId":101,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/pipe-readable.js","layer":"pages-dir-node"},"startTime":1767754678423,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4353,"timestamp":134244970,"id":128,"parentId":109,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/batcher.js","layer":"pages-dir-node"},"startTime":1767754678423,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5304,"timestamp":134245274,"id":130,"parentId":109,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/scheduler.js","layer":"pages-dir-node"},"startTime":1767754678424,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9323,"timestamp":134245564,"id":132,"parentId":101,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js","layer":"pages-dir-node"},"startTime":1767754678424,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9730,"timestamp":134246165,"id":137,"parentId":100,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/etag.js","layer":"pages-dir-node"},"startTime":1767754678424,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":14531,"timestamp":134244370,"id":125,"parentId":72,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/pipe-readable.js","layer":"rsc"},"startTime":1767754678423,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":15005,"timestamp":134244743,"id":127,"parentId":95,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/batcher.js","layer":"rsc"},"startTime":1767754678423,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":15680,"timestamp":134245051,"id":129,"parentId":95,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/scheduler.js","layer":"rsc"},"startTime":1767754678423,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":28838,"timestamp":134245331,"id":131,"parentId":72,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js","layer":"rsc"},"startTime":1767754678424,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":29305,"timestamp":134245914,"id":136,"parentId":73,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/etag.js","layer":"rsc"},"startTime":1767754678424,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":36099,"timestamp":134245744,"id":134,"parentId":101,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"pages-dir-node"},"startTime":1767754678424,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":36704,"timestamp":134245619,"id":133,"parentId":72,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"rsc"},"startTime":1767754678424,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":36350,"timestamp":134246346,"id":139,"parentId":59,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"pages-dir-node"},"startTime":1767754678425,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":39051,"timestamp":134245828,"id":135,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"pages-dir-node"},"startTime":1767754678424,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":39043,"timestamp":134246222,"id":138,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1767754678424,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":868,"timestamp":134315487,"id":140,"parentId":132,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/encoded-tags.js","layer":"pages-dir-node"},"startTime":1767754678494,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-external","duration":47,"timestamp":134326022,"id":141,"parentId":84,"tags":{"name":"./work-unit-async-storage.external","layer":null},"startTime":1767754678504,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-external","duration":14,"timestamp":134326093,"id":142,"parentId":84,"tags":{"name":"../app-render/action-async-storage.external","layer":null},"startTime":1767754678504,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":17907,"timestamp":134326583,"id":146,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/search-params.js","layer":"rsc"},"startTime":1767754678505,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":26670,"timestamp":134326818,"id":147,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/params.js","layer":"rsc"},"startTime":1767754678505,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":31221,"timestamp":134327205,"id":149,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/collect-segment-data.js","layer":"rsc"},"startTime":1767754678505,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":51415,"timestamp":134326328,"id":144,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1767754678505,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":51649,"timestamp":134326463,"id":145,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js","layer":"rsc"},"startTime":1767754678505,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":52040,"timestamp":134327070,"id":148,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1767754678505,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":53347,"timestamp":134326121,"id":143,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1767754678504,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":24278,"timestamp":134384778,"id":150,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1767754678563,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":16866,"timestamp":134417101,"id":151,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"rsc"},"startTime":1767754678595,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4371,"timestamp":134445689,"id":154,"parentId":109,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/types.js","layer":"pages-dir-node"},"startTime":1767754678624,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7683,"timestamp":134444640,"id":152,"parentId":85,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/index.js","layer":"rsc"},"startTime":1767754678623,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7379,"timestamp":134445478,"id":153,"parentId":95,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/types.js","layer":"rsc"},"startTime":1767754678624,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9746,"timestamp":134445739,"id":155,"parentId":83,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"rsc"},"startTime":1767754678624,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9580,"timestamp":134446341,"id":156,"parentId":83,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"rsc"},"startTime":1767754678625,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9742,"timestamp":134446608,"id":157,"parentId":83,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":"rsc"},"startTime":1767754678625,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10717,"timestamp":134446708,"id":158,"parentId":86,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"rsc"},"startTime":1767754678625,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":14685,"timestamp":134446889,"id":160,"parentId":119,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"pages-dir-node"},"startTime":1767754678625,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22610,"timestamp":134446800,"id":159,"parentId":86,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"rsc"},"startTime":1767754678625,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8164,"timestamp":134476156,"id":161,"parentId":155,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"rsc"},"startTime":1767754678654,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5621,"timestamp":134484761,"id":165,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/metadata.js","layer":"rsc"},"startTime":1767754678663,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7503,"timestamp":134484889,"id":166,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1767754678663,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9983,"timestamp":134484546,"id":163,"parentId":92,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-fallback.js","layer":"rsc"},"startTime":1767754678663,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10495,"timestamp":134484400,"id":162,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js","layer":"rsc"},"startTime":1767754678663,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":16198,"timestamp":134484632,"id":164,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js","layer":"rsc"},"startTime":1767754678663,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9902,"timestamp":134504252,"id":167,"parentId":159,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"rsc"},"startTime":1767754678682,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":996,"timestamp":134520566,"id":168,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1767754678699,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2132,"timestamp":134524302,"id":169,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1767754678703,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7964,"timestamp":134527768,"id":170,"parentId":112,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"pages-dir-node"},"startTime":1767754678706,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1730,"timestamp":134545246,"id":172,"parentId":126,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/detached-promise.js","layer":"pages-dir-node"},"startTime":1767754678723,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2531,"timestamp":134545514,"id":174,"parentId":126,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/client-component-renderer-logger.js","layer":"pages-dir-node"},"startTime":1767754678724,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9538,"timestamp":134544922,"id":171,"parentId":91,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-loader/module-proxy.js","layer":"rsc"},"startTime":1767754678723,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9654,"timestamp":134545306,"id":173,"parentId":125,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/detached-promise.js","layer":"rsc"},"startTime":1767754678724,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10409,"timestamp":134545579,"id":175,"parentId":125,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/client-component-renderer-logger.js","layer":"rsc"},"startTime":1767754678724,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12458,"timestamp":134545795,"id":176,"parentId":112,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"pages-dir-node"},"startTime":1767754678724,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13451,"timestamp":134545894,"id":177,"parentId":120,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"rsc"},"startTime":1767754678724,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":14209,"timestamp":134546032,"id":178,"parentId":121,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"pages-dir-node"},"startTime":1767754678724,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":15232,"timestamp":134546102,"id":179,"parentId":122,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"pages-dir-node"},"startTime":1767754678724,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":15716,"timestamp":134546161,"id":180,"parentId":123,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"pages-dir-node"},"startTime":1767754678724,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":16231,"timestamp":134546224,"id":181,"parentId":156,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"rsc"},"startTime":1767754678724,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":19453,"timestamp":134546330,"id":182,"parentId":33,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"rsc"},"startTime":1767754678725,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2485,"timestamp":134566407,"id":183,"parentId":132,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/uint8array-helpers.js","layer":"pages-dir-node"},"startTime":1767754678745,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4641,"timestamp":134566537,"id":184,"parentId":131,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/uint8array-helpers.js","layer":"rsc"},"startTime":1767754678745,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4646,"timestamp":134573191,"id":185,"parentId":85,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/api-utils/index.js","layer":"rsc"},"startTime":1767754678751,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11131,"timestamp":134573469,"id":186,"parentId":135,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"pages-dir-node"},"startTime":1767754678752,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3755,"timestamp":134600092,"id":187,"parentId":135,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"pages-dir-node"},"startTime":1767754678778,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4183,"timestamp":134600292,"id":188,"parentId":132,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/errors/constants.js","layer":"pages-dir-node"},"startTime":1767754678779,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4703,"timestamp":134600382,"id":189,"parentId":131,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/errors/constants.js","layer":"rsc"},"startTime":1767754678779,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3003,"timestamp":134615712,"id":190,"parentId":146,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/dynamic-rendering-utils.js","layer":"rsc"},"startTime":1767754678794,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4272,"timestamp":134615932,"id":191,"parentId":146,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/create-deduped-by-callsite-server-error-logger.js","layer":"rsc"},"startTime":1767754678794,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4015,"timestamp":134616419,"id":196,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-webpack-server.js","layer":"rsc"},"startTime":1767754678795,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4059,"timestamp":134616543,"id":197,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-webpack-static.js","layer":"rsc"},"startTime":1767754678795,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6414,"timestamp":134616238,"id":193,"parentId":135,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"pages-dir-node"},"startTime":1767754678794,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7187,"timestamp":134616304,"id":194,"parentId":132,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/output-export-prefetch-encoding.js","layer":"pages-dir-node"},"startTime":1767754678795,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8998,"timestamp":134616349,"id":195,"parentId":131,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/output-export-prefetch-encoding.js","layer":"rsc"},"startTime":1767754678795,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":23885,"timestamp":134616105,"id":192,"parentId":146,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1767754678794,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-external","duration":64,"timestamp":134652522,"id":198,"parentId":147,"tags":{"name":"../app-render/dynamic-access-async-storage.external","layer":null},"startTime":1767754678831,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4899,"timestamp":134653032,"id":200,"parentId":149,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/create-error-handler.js","layer":"rsc"},"startTime":1767754678831,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6516,"timestamp":134653288,"id":201,"parentId":150,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1767754678832,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6907,"timestamp":134653553,"id":202,"parentId":150,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1767754678832,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8941,"timestamp":134653797,"id":203,"parentId":146,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/reflect-utils.js","layer":"rsc"},"startTime":1767754678832,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10259,"timestamp":134653951,"id":204,"parentId":149,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js","layer":"rsc"},"startTime":1767754678832,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":33255,"timestamp":134652627,"id":199,"parentId":146,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/utils.js","layer":"rsc"},"startTime":1767754678831,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1816,"timestamp":134698024,"id":205,"parentId":200,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"rsc"},"startTime":1767754678876,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5596,"timestamp":134705382,"id":207,"parentId":100,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/fresh/index.js","layer":"pages-dir-node"},"startTime":1767754678884,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6781,"timestamp":134705845,"id":211,"parentId":126,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/next-request.js","layer":"pages-dir-node"},"startTime":1767754678884,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13088,"timestamp":134705120,"id":206,"parentId":73,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/fresh/index.js","layer":"rsc"},"startTime":1767754678883,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13165,"timestamp":134705435,"id":208,"parentId":152,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/api-utils/get-cookie-parser.js","layer":"rsc"},"startTime":1767754678884,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":14581,"timestamp":134705883,"id":212,"parentId":125,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/next-request.js","layer":"rsc"},"startTime":1767754678884,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11735,"timestamp":134709235,"id":213,"parentId":146,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1767754678887,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":17518,"timestamp":134705632,"id":209,"parentId":204,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"rsc"},"startTime":1767754678884,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":18441,"timestamp":134705743,"id":210,"parentId":158,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js","layer":"rsc"},"startTime":1767754678884,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9603,"timestamp":134724910,"id":214,"parentId":149,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js","layer":"rsc"},"startTime":1767754678903,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8546,"timestamp":134728325,"id":215,"parentId":159,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"rsc"},"startTime":1767754678907,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11468,"timestamp":134737472,"id":216,"parentId":205,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"rsc"},"startTime":1767754678916,"traceId":"2c8d09f5a579ad25"}]
|
|
10
|
-
[{"name":"seal","duration":1314382,"timestamp":139280363,"id":912,"parentId":20,"tags":{},"startTime":1767754683459,"traceId":"2c8d09f5a579ad25"},{"name":"webpack-compilation","duration":7569381,"timestamp":133041447,"id":20,"parentId":17,"tags":{"name":"server"},"startTime":1767754677220,"traceId":"2c8d09f5a579ad25"},{"name":"emit","duration":7625,"timestamp":140611288,"id":940,"parentId":17,"tags":{},"startTime":1767754684790,"traceId":"2c8d09f5a579ad25"},{"name":"webpack-close","duration":559507,"timestamp":140620406,"id":941,"parentId":17,"tags":{"name":"server"},"startTime":1767754684799,"traceId":"2c8d09f5a579ad25"},{"name":"webpack-generate-error-stats","duration":3788,"timestamp":141179997,"id":942,"parentId":941,"tags":{},"startTime":1767754685358,"traceId":"2c8d09f5a579ad25"},{"name":"run-webpack-compiler","duration":8455429,"timestamp":132728784,"id":17,"parentId":16,"tags":{},"startTime":1767754676907,"traceId":"2c8d09f5a579ad25"},{"name":"format-webpack-messages","duration":106,"timestamp":141184223,"id":943,"parentId":16,"tags":{},"startTime":1767754685362,"traceId":"2c8d09f5a579ad25"},{"name":"worker-main-server","duration":8456276,"timestamp":132728296,"id":16,"parentId":1,"tags":{},"startTime":1767754676907,"traceId":"2c8d09f5a579ad25"},{"name":"create-entrypoints","duration":19506,"timestamp":142071045,"id":946,"parentId":944,"tags":{},"startTime":1767754686249,"traceId":"2c8d09f5a579ad25"},{"name":"generate-webpack-config","duration":126803,"timestamp":142090714,"id":947,"parentId":945,"tags":{},"startTime":1767754686269,"traceId":"2c8d09f5a579ad25"},{"name":"make","duration":1148,"timestamp":142319526,"id":949,"parentId":948,"tags":{},"startTime":1767754686498,"traceId":"2c8d09f5a579ad25"},{"name":"chunk-graph","duration":691,"timestamp":142324851,"id":951,"parentId":950,"tags":{},"startTime":1767754686503,"traceId":"2c8d09f5a579ad25"},{"name":"optimize-modules","duration":41,"timestamp":142325701,"id":953,"parentId":950,"tags":{},"startTime":1767754686504,"traceId":"2c8d09f5a579ad25"},{"name":"optimize-chunks","duration":964,"timestamp":142325853,"id":954,"parentId":950,"tags":{},"startTime":1767754686504,"traceId":"2c8d09f5a579ad25"},{"name":"optimize-tree","duration":159,"timestamp":142326902,"id":955,"parentId":950,"tags":{},"startTime":1767754686505,"traceId":"2c8d09f5a579ad25"},{"name":"optimize-chunk-modules","duration":550,"timestamp":142327293,"id":956,"parentId":950,"tags":{},"startTime":1767754686506,"traceId":"2c8d09f5a579ad25"},{"name":"optimize","duration":2319,"timestamp":142325631,"id":952,"parentId":950,"tags":{},"startTime":1767754686504,"traceId":"2c8d09f5a579ad25"},{"name":"module-hash","duration":106,"timestamp":142329253,"id":957,"parentId":950,"tags":{},"startTime":1767754686507,"traceId":"2c8d09f5a579ad25"},{"name":"code-generation","duration":263,"timestamp":142329413,"id":958,"parentId":950,"tags":{},"startTime":1767754686508,"traceId":"2c8d09f5a579ad25"},{"name":"hash","duration":499,"timestamp":142329965,"id":959,"parentId":950,"tags":{},"startTime":1767754686508,"traceId":"2c8d09f5a579ad25"},{"name":"code-generation-jobs","duration":157,"timestamp":142330459,"id":960,"parentId":950,"tags":{},"startTime":1767754686509,"traceId":"2c8d09f5a579ad25"},{"name":"module-assets","duration":98,"timestamp":142330576,"id":961,"parentId":950,"tags":{},"startTime":1767754686509,"traceId":"2c8d09f5a579ad25"},{"name":"create-chunk-assets","duration":201,"timestamp":142330691,"id":962,"parentId":950,"tags":{},"startTime":1767754686509,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":1634,"timestamp":142341111,"id":964,"parentId":963,"tags":{"name":"interception-route-rewrite-manifest.js","cache":"MISS"},"startTime":1767754686519,"traceId":"2c8d09f5a579ad25"},{"name":"minify-webpack-plugin-optimize","duration":3225,"timestamp":142339535,"id":963,"parentId":948,"tags":{"compilationName":"edge-server","mangle":"[object Object]"},"startTime":1767754686518,"traceId":"2c8d09f5a579ad25"},{"name":"css-minimizer-plugin","duration":175,"timestamp":142342885,"id":965,"parentId":948,"tags":{},"startTime":1767754686521,"traceId":"2c8d09f5a579ad25"},{"name":"seal","duration":23884,"timestamp":142324072,"id":950,"parentId":948,"tags":{},"startTime":1767754686502,"traceId":"2c8d09f5a579ad25"},{"name":"webpack-compilation","duration":38727,"timestamp":142309822,"id":948,"parentId":945,"tags":{"name":"edge-server"},"startTime":1767754686488,"traceId":"2c8d09f5a579ad25"},{"name":"emit","duration":3248,"timestamp":142349101,"id":966,"parentId":945,"tags":{},"startTime":1767754686527,"traceId":"2c8d09f5a579ad25"},{"name":"webpack-close","duration":10800,"timestamp":142353570,"id":967,"parentId":945,"tags":{"name":"edge-server"},"startTime":1767754686532,"traceId":"2c8d09f5a579ad25"},{"name":"webpack-generate-error-stats","duration":3049,"timestamp":142364429,"id":968,"parentId":967,"tags":{},"startTime":1767754686543,"traceId":"2c8d09f5a579ad25"},{"name":"run-webpack-compiler","duration":296579,"timestamp":142071037,"id":945,"parentId":944,"tags":{},"startTime":1767754686249,"traceId":"2c8d09f5a579ad25"},{"name":"format-webpack-messages","duration":83,"timestamp":142367624,"id":969,"parentId":944,"tags":{},"startTime":1767754686546,"traceId":"2c8d09f5a579ad25"},{"name":"worker-main-edge-server","duration":297322,"timestamp":142070523,"id":944,"parentId":1,"tags":{},"startTime":1767754686249,"traceId":"2c8d09f5a579ad25"},{"name":"create-entrypoints","duration":18728,"timestamp":143223907,"id":972,"parentId":970,"tags":{},"startTime":1767754687402,"traceId":"2c8d09f5a579ad25"},{"name":"generate-webpack-config","duration":122234,"timestamp":143242843,"id":973,"parentId":971,"tags":{},"startTime":1767754687421,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":12710,"timestamp":143563477,"id":987,"parentId":978,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767754687742,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":1467,"timestamp":143576374,"id":988,"parentId":983,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767754687755,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":561,"timestamp":143577880,"id":989,"parentId":984,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767754687756,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":439,"timestamp":143578471,"id":990,"parentId":985,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767754687757,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":510,"timestamp":143578939,"id":991,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767754687757,"traceId":"2c8d09f5a579ad25"},{"name":"next-client-pages-loader","duration":275,"timestamp":143580139,"id":993,"parentId":992,"tags":{"absolutePagePath":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-not-found.js"},"startTime":1767754687758,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":6069,"timestamp":143579485,"id":992,"parentId":979,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&page=%2F_not-found%2Fpage!","layer":"app-pages-browser"},"startTime":1767754687758,"traceId":"2c8d09f5a579ad25"},{"name":"next-client-pages-loader","duration":48,"timestamp":143586474,"id":995,"parentId":994,"tags":{"absolutePagePath":"next/dist/pages/_app"},"startTime":1767754687765,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":1728,"timestamp":143585588,"id":994,"parentId":980,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!","layer":"pages-dir-browser"},"startTime":1767754687764,"traceId":"2c8d09f5a579ad25"},{"name":"next-client-pages-loader","duration":66,"timestamp":143587493,"id":997,"parentId":996,"tags":{"absolutePagePath":"next/dist/pages/_error"},"startTime":1767754687766,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":856,"timestamp":143587401,"id":996,"parentId":982,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!","layer":"pages-dir-browser"},"startTime":1767754687766,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13401,"timestamp":143608775,"id":1000,"parentId":977,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-next.js","layer":"app-pages-browser"},"startTime":1767754687787,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":23475,"timestamp":143604612,"id":998,"parentId":976,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/next.js","layer":"pages-dir-browser"},"startTime":1767754687783,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":38943,"timestamp":143608448,"id":999,"parentId":981,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/router.js","layer":"pages-dir-browser"},"startTime":1767754687787,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6073,"timestamp":143676765,"id":1001,"parentId":992,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-not-found.js","layer":"app-pages-browser"},"startTime":1767754687855,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9388,"timestamp":143676987,"id":1002,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1767754687855,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":14356,"timestamp":143677154,"id":1003,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1767754687855,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":24637,"timestamp":143677296,"id":1004,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1767754687856,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9916,"timestamp":143703972,"id":1006,"parentId":999,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/with-router.js","layer":"pages-dir-browser"},"startTime":1767754687882,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12478,"timestamp":143703741,"id":1005,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/webpack.js","layer":"pages-dir-browser"},"startTime":1767754687882,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":34944,"timestamp":143704105,"id":1007,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/index.js","layer":"pages-dir-browser"},"startTime":1767754687882,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8694,"timestamp":143743075,"id":1008,"parentId":987,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js","layer":"app-pages-browser"},"startTime":1767754687921,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10239,"timestamp":143743324,"id":1010,"parentId":987,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1767754687922,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":29274,"timestamp":143743244,"id":1009,"parentId":987,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1767754687921,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":30671,"timestamp":143743400,"id":1011,"parentId":987,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js","layer":"app-pages-browser"},"startTime":1767754687922,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3835,"timestamp":143807548,"id":1013,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/require-instrumentation-client.js","layer":"app-pages-browser"},"startTime":1767754687986,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8318,"timestamp":143807352,"id":1012,"parentId":987,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js","layer":"app-pages-browser"},"startTime":1767754687986,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5673,"timestamp":143825656,"id":1014,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/require-instrumentation-client.js","layer":"pages-dir-browser"},"startTime":1767754688004,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10702,"timestamp":143825762,"id":1015,"parentId":999,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"pages-dir-browser"},"startTime":1767754688004,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":18896,"timestamp":143825952,"id":1017,"parentId":987,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js","layer":"app-pages-browser"},"startTime":1767754688004,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":28064,"timestamp":143825815,"id":1016,"parentId":987,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js","layer":"app-pages-browser"},"startTime":1767754688004,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9051,"timestamp":143891614,"id":1018,"parentId":999,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767754688070,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10769,"timestamp":143892213,"id":1021,"parentId":994,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_app.js","layer":"pages-dir-browser"},"startTime":1767754688070,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":17324,"timestamp":143891927,"id":1020,"parentId":987,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js","layer":"app-pages-browser"},"startTime":1767754688070,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":567,"timestamp":143911364,"id":1026,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/deployment-id.js","layer":"pages-dir-browser"},"startTime":1767754688090,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3995,"timestamp":143911227,"id":1025,"parentId":1002,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1767754688089,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":86636,"timestamp":143891843,"id":1019,"parentId":999,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/router.js","layer":"pages-dir-browser"},"startTime":1767754688070,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":73558,"timestamp":143910861,"id":1022,"parentId":996,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_error.js","layer":"pages-dir-browser"},"startTime":1767754688089,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":76229,"timestamp":143910971,"id":1023,"parentId":987,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js","layer":"app-pages-browser"},"startTime":1767754688089,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":84215,"timestamp":143911157,"id":1024,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1767754688089,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3502,"timestamp":144043320,"id":1028,"parentId":1001,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-fallback.js","layer":"app-pages-browser"},"startTime":1767754688222,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6377,"timestamp":144043421,"id":1029,"parentId":1003,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/set-attributes-from-props.js","layer":"app-pages-browser"},"startTime":1767754688222,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6983,"timestamp":144043508,"id":1030,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-globals.js","layer":"app-pages-browser"},"startTime":1767754688222,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8037,"timestamp":144043587,"id":1031,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-find-source-map-url.js","layer":"app-pages-browser"},"startTime":1767754688222,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9947,"timestamp":144043139,"id":1027,"parentId":1002,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":"app-pages-browser"},"startTime":1767754688221,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2947,"timestamp":144053614,"id":1033,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-build-id.js","layer":"app-pages-browser"},"startTime":1767754688232,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4135,"timestamp":144053715,"id":1034,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767754688232,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6291,"timestamp":144053791,"id":1035,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767754688232,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":24879,"timestamp":144053437,"id":1032,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1767754688232,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22197,"timestamp":144056901,"id":1037,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767754688235,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22685,"timestamp":144057032,"id":1038,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767754688235,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":27897,"timestamp":144056789,"id":1036,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-instance.js","layer":"app-pages-browser"},"startTime":1767754688235,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":30486,"timestamp":144061785,"id":1039,"parentId":988,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"app-pages-browser"},"startTime":1767754688240,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":34877,"timestamp":144066260,"id":1042,"parentId":990,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"app-pages-browser"},"startTime":1767754688244,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":36100,"timestamp":144066519,"id":1043,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1767754688245,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":41289,"timestamp":144062964,"id":1040,"parentId":989,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"app-pages-browser"},"startTime":1767754688241,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":39516,"timestamp":144066624,"id":1044,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/on-recoverable-error.js","layer":"pages-dir-browser"},"startTime":1767754688245,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":41397,"timestamp":144066696,"id":1045,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/error-boundary-callbacks.js","layer":"app-pages-browser"},"startTime":1767754688245,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":43922,"timestamp":144065968,"id":1041,"parentId":991,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"app-pages-browser"},"startTime":1767754688244,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7264,"timestamp":144146906,"id":1046,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/head-manager.js","layer":"pages-dir-browser"},"startTime":1767754688325,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9085,"timestamp":144147211,"id":1048,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-announcer.js","layer":"pages-dir-browser"},"startTime":1767754688325,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10127,"timestamp":144147309,"id":1049,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-base-path.js","layer":"pages-dir-browser"},"startTime":1767754688326,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10797,"timestamp":144147500,"id":1051,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/has-base-path.js","layer":"pages-dir-browser"},"startTime":1767754688326,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12991,"timestamp":144147397,"id":1050,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js","layer":"app-pages-browser"},"startTime":1767754688326,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13606,"timestamp":144147660,"id":1053,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/mitt.js","layer":"pages-dir-browser"},"startTime":1767754688326,"traceId":"2c8d09f5a579ad25"}]
|
|
11
|
-
[{"name":"build-module-js","duration":12595,"timestamp":144150691,"id":1054,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/runtime-config.external.js","layer":"pages-dir-browser"},"startTime":1767754688329,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":20884,"timestamp":144150802,"id":1055,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"pages-dir-browser"},"startTime":1767754688329,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":30364,"timestamp":144147113,"id":1047,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/page-loader.js","layer":"pages-dir-browser"},"startTime":1767754688325,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":34371,"timestamp":144147578,"id":1052,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/script.js","layer":"pages-dir-browser"},"startTime":1767754688326,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1862,"timestamp":144202672,"id":1068,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"pages-dir-browser"},"startTime":1767754688381,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8554,"timestamp":144201678,"id":1056,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767754688380,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9251,"timestamp":144201811,"id":1057,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767754688380,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9869,"timestamp":144201908,"id":1058,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"pages-dir-browser"},"startTime":1767754688380,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11868,"timestamp":144201980,"id":1059,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/adapters.js","layer":"pages-dir-browser"},"startTime":1767754688380,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12379,"timestamp":144202068,"id":1060,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"app-pages-browser"},"startTime":1767754688380,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":23632,"timestamp":144202184,"id":1062,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js","layer":"app-pages-browser"},"startTime":1767754688380,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":24556,"timestamp":144202242,"id":1063,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"pages-dir-browser"},"startTime":1767754688380,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":25222,"timestamp":144202381,"id":1065,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1767754688381,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":26769,"timestamp":144202287,"id":1064,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"pages-dir-browser"},"startTime":1767754688381,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":27788,"timestamp":144202623,"id":1067,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/tracing/tracer.js","layer":"pages-dir-browser"},"startTime":1767754688381,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":29745,"timestamp":144202549,"id":1066,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1767754688381,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":30208,"timestamp":144202709,"id":1069,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767754688381,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":30800,"timestamp":144202816,"id":1070,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1767754688381,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":30288,"timestamp":144207602,"id":1072,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/use-action-queue.js","layer":"app-pages-browser"},"startTime":1767754688386,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":31602,"timestamp":144207738,"id":1073,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/bfcache.js","layer":"app-pages-browser"},"startTime":1767754688386,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":33312,"timestamp":144207839,"id":1074,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"app-pages-browser"},"startTime":1767754688386,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":41700,"timestamp":144202914,"id":1071,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1767754688381,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":43134,"timestamp":144202137,"id":1061,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js","layer":"pages-dir-browser"},"startTime":1767754688380,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":25696,"timestamp":144221868,"id":1076,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1767754688400,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":26923,"timestamp":144221632,"id":1075,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1767754688400,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":39811,"timestamp":144221977,"id":1077,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"app-pages-browser"},"startTime":1767754688400,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11891,"timestamp":144252199,"id":1079,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/params.browser.js","layer":"app-pages-browser"},"startTime":1767754688430,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12746,"timestamp":144252067,"id":1078,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"app-pages-browser"},"startTime":1767754688430,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12212,"timestamp":144266410,"id":1082,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/handle-isr-error.js","layer":"app-pages-browser"},"startTime":1767754688445,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":14148,"timestamp":144266193,"id":1080,"parentId":1010,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/search-params.browser.js","layer":"app-pages-browser"},"startTime":1767754688444,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":14625,"timestamp":144266498,"id":1083,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"app-pages-browser"},"startTime":1767754688445,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":15440,"timestamp":144266328,"id":1081,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"app-pages-browser"},"startTime":1767754688445,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":717,"timestamp":144282640,"id":1084,"parentId":1013,"tags":{"layer":null},"startTime":1767754688461,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1964,"timestamp":144283727,"id":1087,"parentId":1006,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/jsx-runtime.js","layer":"pages-dir-browser"},"startTime":1767754688462,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2255,"timestamp":144283782,"id":1088,"parentId":999,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/index.js","layer":"pages-dir-browser"},"startTime":1767754688462,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2821,"timestamp":144283836,"id":1089,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/client.js","layer":"pages-dir-browser"},"startTime":1767754688462,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2797,"timestamp":144284199,"id":1093,"parentId":1001,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1767754688462,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2260,"timestamp":144285081,"id":1094,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/client.browser.js","layer":"app-pages-browser"},"startTime":1767754688463,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6852,"timestamp":144283383,"id":1085,"parentId":1030,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1767754688462,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6287,"timestamp":144285142,"id":1095,"parentId":1043,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1767754688463,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9901,"timestamp":144283978,"id":1091,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation-untracked.js","layer":"app-pages-browser"},"startTime":1767754688462,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10912,"timestamp":144284106,"id":1092,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"app-pages-browser"},"startTime":1767754688462,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12084,"timestamp":144283887,"id":1090,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/portal/index.js","layer":"pages-dir-browser"},"startTime":1767754688462,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5465,"timestamp":144300445,"id":1096,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1767754688479,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1811,"timestamp":144304432,"id":1100,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1767754688483,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3863,"timestamp":144305040,"id":1105,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1767754688483,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9471,"timestamp":144304499,"id":1101,"parentId":1020,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-constants.js","layer":"app-pages-browser"},"startTime":1767754688483,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":31249,"timestamp":144283634,"id":1086,"parentId":1015,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"pages-dir-browser"},"startTime":1767754688462,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":14376,"timestamp":144304281,"id":1099,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1767754688483,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":21819,"timestamp":144304820,"id":1103,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"pages-dir-browser"},"startTime":1767754688483,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22507,"timestamp":144304913,"id":1104,"parentId":1045,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"app-pages-browser"},"startTime":1767754688483,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":40019,"timestamp":144304723,"id":1102,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-loader.js","layer":"pages-dir-browser"},"startTime":1767754688483,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":29432,"timestamp":144319988,"id":1106,"parentId":1046,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/set-attributes-from-props.js","layer":"pages-dir-browser"},"startTime":1767754688498,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6354,"timestamp":144350803,"id":1107,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":"pages-dir-browser"},"startTime":1767754688529,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2155,"timestamp":144358600,"id":1113,"parentId":999,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"pages-dir-browser"},"startTime":1767754688537,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1723,"timestamp":144359900,"id":1116,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"pages-dir-browser"},"startTime":1767754688538,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5915,"timestamp":144359264,"id":1114,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1767754688537,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6486,"timestamp":144359786,"id":1115,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1767754688538,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10411,"timestamp":144357530,"id":1108,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","layer":"pages-dir-browser"},"startTime":1767754688536,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11274,"timestamp":144357667,"id":1109,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":"pages-dir-browser"},"startTime":1767754688536,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11378,"timestamp":144358429,"id":1111,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"pages-dir-browser"},"startTime":1767754688537,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11185,"timestamp":144359931,"id":1117,"parentId":1058,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"pages-dir-browser"},"startTime":1767754688538,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11597,"timestamp":144359982,"id":1118,"parentId":1061,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"pages-dir-browser"},"startTime":1767754688538,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":482,"timestamp":144372905,"id":1127,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-api-route.js","layer":"pages-dir-browser"},"startTime":1767754688551,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":21718,"timestamp":144358525,"id":1112,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"pages-dir-browser"},"startTime":1767754688537,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":17654,"timestamp":144372137,"id":1119,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/detect-domain-locale.js","layer":"pages-dir-browser"},"startTime":1767754688550,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":18289,"timestamp":144372407,"id":1120,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-locale.js","layer":"pages-dir-browser"},"startTime":1767754688551,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":19107,"timestamp":144372502,"id":1121,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-locale.js","layer":"pages-dir-browser"},"startTime":1767754688551,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":19592,"timestamp":144372645,"id":1123,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"pages-dir-browser"},"startTime":1767754688551,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":20507,"timestamp":144372706,"id":1124,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-base-path.js","layer":"pages-dir-browser"},"startTime":1767754688551,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22278,"timestamp":144372579,"id":1122,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"pages-dir-browser"},"startTime":1767754688551,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":23127,"timestamp":144372772,"id":1125,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1767754688551,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":33901,"timestamp":144372946,"id":1128,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":"pages-dir-browser"},"startTime":1767754688551,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":36121,"timestamp":144372848,"id":1126,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/resolve-href.js","layer":"pages-dir-browser"},"startTime":1767754688551,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9515,"timestamp":144401176,"id":1129,"parentId":1095,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1767754688579,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":78674,"timestamp":144412266,"id":1130,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":"pages-dir-browser"},"startTime":1767754688590,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7199,"timestamp":144492502,"id":1141,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/constants.js","layer":"pages-dir-browser"},"startTime":1767754688671,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":19990,"timestamp":144491891,"id":1135,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/compare-states.js","layer":"pages-dir-browser"},"startTime":1767754688670,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":20619,"timestamp":144492022,"id":1136,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"pages-dir-browser"},"startTime":1767754688670,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":21601,"timestamp":144492127,"id":1137,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"pages-dir-browser"},"startTime":1767754688670,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":21920,"timestamp":144492321,"id":1139,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"pages-dir-browser"},"startTime":1767754688671,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22249,"timestamp":144492410,"id":1140,"parentId":1102,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":"pages-dir-browser"},"startTime":1767754688671,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":24560,"timestamp":144492559,"id":1142,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/bloom-filter.js","layer":"pages-dir-browser"},"startTime":1767754688671,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":25565,"timestamp":144492218,"id":1138,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"app-pages-browser"},"startTime":1767754688670,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":25576,"timestamp":144492712,"id":1144,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"app-pages-browser"},"startTime":1767754688671,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":32782,"timestamp":144492634,"id":1143,"parentId":1022,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"pages-dir-browser"},"startTime":1767754688671,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":34033,"timestamp":144492808,"id":1145,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"pages-dir-browser"},"startTime":1767754688671,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":31003,"timestamp":144508516,"id":1152,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"app-pages-browser"},"startTime":1767754688687,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":34206,"timestamp":144508411,"id":1151,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"app-pages-browser"},"startTime":1767754688687,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":36198,"timestamp":144508292,"id":1150,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1767754688687,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6647,"timestamp":144549963,"id":1154,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/nav-failure-handler.js","layer":"app-pages-browser"},"startTime":1767754688728,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8419,"timestamp":144550156,"id":1155,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1767754688728,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6696,"timestamp":144561850,"id":1157,"parentId":1058,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"pages-dir-browser"},"startTime":1767754688740,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7819,"timestamp":144562042,"id":1159,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/root-error-boundary.js","layer":"app-pages-browser"},"startTime":1767754688740,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12327,"timestamp":144561935,"id":1158,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/links.js","layer":"app-pages-browser"},"startTime":1767754688740,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13463,"timestamp":144562127,"id":1160,"parentId":1036,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"app-pages-browser"},"startTime":1767754688740,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13780,"timestamp":144562205,"id":1161,"parentId":1036,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"app-pages-browser"},"startTime":1767754688740,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":15727,"timestamp":144561722,"id":1156,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"app-pages-browser"},"startTime":1767754688740,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":18227,"timestamp":144562288,"id":1162,"parentId":1036,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/segment-cache.js","layer":"app-pages-browser"},"startTime":1767754688741,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":33685,"timestamp":144562433,"id":1164,"parentId":1028,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/styles/access-error-styles.js","layer":"app-pages-browser"},"startTime":1767754688741,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":31007,"timestamp":144565526,"id":1165,"parentId":1043,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/report-global-error.js","layer":"app-pages-browser"},"startTime":1767754688744,"traceId":"2c8d09f5a579ad25"}]
|
|
12
|
-
[{"name":"build-module-js","duration":31240,"timestamp":144565648,"id":1166,"parentId":1044,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/report-global-error.js","layer":"pages-dir-browser"},"startTime":1767754688744,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":31491,"timestamp":144565765,"id":1167,"parentId":1051,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"pages-dir-browser"},"startTime":1767754688744,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":31706,"timestamp":144565849,"id":1168,"parentId":1076,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"app-pages-browser"},"startTime":1767754688744,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":32748,"timestamp":144565950,"id":1169,"parentId":1050,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"app-pages-browser"},"startTime":1767754688744,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":33152,"timestamp":144566179,"id":1171,"parentId":1044,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"pages-dir-browser"},"startTime":1767754688744,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":37710,"timestamp":144562362,"id":1163,"parentId":1036,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"app-pages-browser"},"startTime":1767754688741,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":34441,"timestamp":144566082,"id":1170,"parentId":1043,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"app-pages-browser"},"startTime":1767754688744,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22382,"timestamp":145106530,"id":1174,"parentId":1050,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1767754689285,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":27700,"timestamp":145106635,"id":1175,"parentId":1050,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"app-pages-browser"},"startTime":1767754689285,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":43246,"timestamp":145106315,"id":1173,"parentId":1050,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"app-pages-browser"},"startTime":1767754689285,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":43379,"timestamp":145106739,"id":1176,"parentId":1047,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","layer":"pages-dir-browser"},"startTime":1767754689285,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":39930,"timestamp":145116615,"id":1177,"parentId":1168,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"app-pages-browser"},"startTime":1767754689295,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":46409,"timestamp":145116862,"id":1178,"parentId":1042,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/Header.tsx","layer":"app-pages-browser"},"startTime":1767754689295,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":43450,"timestamp":145120729,"id":1180,"parentId":1040,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectList.tsx","layer":"app-pages-browser"},"startTime":1767754689299,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":48711,"timestamp":145120378,"id":1179,"parentId":1042,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/workspace/WorkspaceLayout.tsx","layer":"app-pages-browser"},"startTime":1767754689299,"traceId":"2c8d09f5a579ad25"},{"name":"postcss-process","duration":787934,"timestamp":144833696,"id":1172,"parentId":1153,"tags":{},"startTime":1767754689012,"traceId":"2c8d09f5a579ad25"},{"name":"postcss-loader","duration":1112932,"timestamp":144508821,"id":1153,"parentId":1148,"tags":{},"startTime":1767754688687,"traceId":"2c8d09f5a579ad25"},{"name":"css-loader","duration":49748,"timestamp":145622068,"id":1181,"parentId":1148,"tags":{"astUsed":"true"},"startTime":1767754689800,"traceId":"2c8d09f5a579ad25"},{"name":"font-loader","duration":1211233,"timestamp":144492945,"id":1147,"parentId":1146,"tags":{},"startTime":1767754688671,"traceId":"2c8d09f5a579ad25"},{"name":"postcss","duration":1072,"timestamp":145704453,"id":1182,"parentId":1146,"tags":{},"startTime":1767754689883,"traceId":"2c8d09f5a579ad25"},{"name":"next-font-loader","duration":1212681,"timestamp":144492908,"id":1146,"parentId":1134,"tags":{},"startTime":1767754688671,"traceId":"2c8d09f5a579ad25"},{"name":"css-loader","duration":10417,"timestamp":145705556,"id":1183,"parentId":1134,"tags":{"astUsed":"true"},"startTime":1767754689884,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":1225027,"timestamp":144491722,"id":1134,"parentId":1098,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css.webpack[javascript/auto]!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}","layer":null},"startTime":1767754688670,"traceId":"2c8d09f5a579ad25"},{"name":"font-loader","duration":1264194,"timestamp":144454579,"id":1133,"parentId":1132,"tags":{},"startTime":1767754688633,"traceId":"2c8d09f5a579ad25"},{"name":"postcss","duration":454,"timestamp":145718816,"id":1184,"parentId":1132,"tags":{},"startTime":1767754689897,"traceId":"2c8d09f5a579ad25"},{"name":"next-font-loader","duration":1304095,"timestamp":144415273,"id":1132,"parentId":1131,"tags":{},"startTime":1767754688594,"traceId":"2c8d09f5a579ad25"},{"name":"css-loader","duration":1456,"timestamp":145719348,"id":1185,"parentId":1131,"tags":{"astUsed":"true"},"startTime":1767754689898,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":1308765,"timestamp":144412393,"id":1131,"parentId":1097,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css.webpack[javascript/auto]!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}","layer":null},"startTime":1767754688591,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":13630,"timestamp":145721943,"id":1186,"parentId":1040,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectModal.tsx","layer":"app-pages-browser"},"startTime":1767754689900,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":15822,"timestamp":145722210,"id":1188,"parentId":1042,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/button.tsx","layer":"app-pages-browser"},"startTime":1767754689900,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":25399,"timestamp":145726596,"id":1190,"parentId":1056,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config.js","layer":"pages-dir-browser"},"startTime":1767754689905,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":25677,"timestamp":145726685,"id":1191,"parentId":1059,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/as-path-to-search-params.js","layer":"pages-dir-browser"},"startTime":1767754689905,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":26349,"timestamp":145726772,"id":1192,"parentId":1041,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/input.tsx","layer":"app-pages-browser"},"startTime":1767754689905,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":28006,"timestamp":145726960,"id":1193,"parentId":1042,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useProjectStore.ts","layer":"app-pages-browser"},"startTime":1767754689905,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":29698,"timestamp":145726484,"id":1189,"parentId":1052,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request-idle-callback.js","layer":"pages-dir-browser"},"startTime":1767754689905,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":37393,"timestamp":145722146,"id":1187,"parentId":1047,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/constants.js","layer":"pages-dir-browser"},"startTime":1767754689900,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1264169,"timestamp":144508064,"id":1149,"parentId":1042,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1767754688686,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5711,"timestamp":145776859,"id":1194,"parentId":1063,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"pages-dir-browser"},"startTime":1767754689955,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11314,"timestamp":145777045,"id":1195,"parentId":1083,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"app-pages-browser"},"startTime":1767754689955,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":25400,"timestamp":145777150,"id":1196,"parentId":1071,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1767754689955,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":27008,"timestamp":145777243,"id":1197,"parentId":1077,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-params.js","layer":"app-pages-browser"},"startTime":1767754689955,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":38492,"timestamp":145777340,"id":1198,"parentId":1041,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1767754689956,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":40217,"timestamp":145782721,"id":1199,"parentId":1079,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/params.browser.prod.js","layer":"app-pages-browser"},"startTime":1767754689961,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":41240,"timestamp":145782842,"id":1200,"parentId":1077,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1767754689961,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":41722,"timestamp":145782976,"id":1201,"parentId":1078,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1767754689961,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":42482,"timestamp":145783100,"id":1202,"parentId":1077,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/set-cache-busting-search-param.js","layer":"app-pages-browser"},"startTime":1767754689961,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":43270,"timestamp":145783199,"id":1203,"parentId":1080,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/search-params.browser.prod.js","layer":"app-pages-browser"},"startTime":1767754689961,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7234,"timestamp":145828416,"id":1204,"parentId":1194,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"pages-dir-browser"},"startTime":1767754690007,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":797,"timestamp":145840600,"id":1206,"parentId":1093,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.production.js","layer":"app-pages-browser"},"startTime":1767754690019,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":16263,"timestamp":145840654,"id":1207,"parentId":1100,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/cjs/react.production.js","layer":"app-pages-browser"},"startTime":1767754690019,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":47235,"timestamp":145840693,"id":1208,"parentId":1094,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.production.js","layer":"app-pages-browser"},"startTime":1767754690019,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":49535,"timestamp":145840727,"id":1209,"parentId":1105,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/cjs/react-dom.production.js","layer":"app-pages-browser"},"startTime":1767754690019,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":53887,"timestamp":145840414,"id":1205,"parentId":1081,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"app-pages-browser"},"startTime":1767754690019,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":2392235,"timestamp":143504405,"id":979,"parentId":975,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&page=%2F_not-found%2Fpage!"},"startTime":1767754687683,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":186982,"timestamp":145896306,"id":1210,"parentId":1096,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/cjs/react-dom-client.production.js","layer":"app-pages-browser"},"startTime":1767754690075,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4592,"timestamp":146089131,"id":1211,"parentId":1204,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"pages-dir-browser"},"startTime":1767754690267,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4756,"timestamp":146089296,"id":1212,"parentId":1204,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"pages-dir-browser"},"startTime":1767754690268,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":402,"timestamp":146097179,"id":1218,"parentId":1052,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/index.js","layer":"pages-dir-browser"},"startTime":1767754690275,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3036,"timestamp":146096748,"id":1213,"parentId":1102,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/trusted-types.js","layer":"pages-dir-browser"},"startTime":1767754690275,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3309,"timestamp":146096852,"id":1214,"parentId":1107,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":"pages-dir-browser"},"startTime":1767754690275,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":152154,"timestamp":146100266,"id":1219,"parentId":1089,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/cjs/react-dom-client.production.js","layer":"pages-dir-browser"},"startTime":1767754690278,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":156792,"timestamp":146096912,"id":1215,"parentId":1040,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/index.ts","layer":"app-pages-browser"},"startTime":1767754690275,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":157099,"timestamp":146097132,"id":1217,"parentId":1059,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"pages-dir-browser"},"startTime":1767754690275,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":160554,"timestamp":146097072,"id":1216,"parentId":1111,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js","layer":"pages-dir-browser"},"startTime":1767754690275,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":524,"timestamp":146274929,"id":1228,"parentId":1087,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/cjs/react-jsx-runtime.production.js","layer":"pages-dir-browser"},"startTime":1767754690453,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3653,"timestamp":146274961,"id":1229,"parentId":1088,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/cjs/react.production.js","layer":"pages-dir-browser"},"startTime":1767754690453,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7123,"timestamp":146274569,"id":1221,"parentId":1125,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1767754690453,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7939,"timestamp":146274434,"id":1220,"parentId":1120,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"pages-dir-browser"},"startTime":1767754690453,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9845,"timestamp":146274640,"id":1222,"parentId":1124,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"pages-dir-browser"},"startTime":1767754690453,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10160,"timestamp":146274692,"id":1223,"parentId":1125,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"app-pages-browser"},"startTime":1767754690453,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10484,"timestamp":146274752,"id":1224,"parentId":1112,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"pages-dir-browser"},"startTime":1767754690453,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11548,"timestamp":146274799,"id":1225,"parentId":1112,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js","layer":"pages-dir-browser"},"startTime":1767754690453,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11870,"timestamp":146274882,"id":1227,"parentId":1130,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":"pages-dir-browser"},"startTime":1767754690453,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12243,"timestamp":146274983,"id":1230,"parentId":1130,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":"pages-dir-browser"},"startTime":1767754690453,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7192,"timestamp":146283063,"id":1231,"parentId":1143,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"pages-dir-browser"},"startTime":1767754690461,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":15761,"timestamp":146274841,"id":1226,"parentId":1128,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":"pages-dir-browser"},"startTime":1767754690453,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5162,"timestamp":146289209,"id":1232,"parentId":1143,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767754690467,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5671,"timestamp":146291025,"id":1233,"parentId":1221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"app-pages-browser"},"startTime":1767754690469,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9395,"timestamp":146300930,"id":1235,"parentId":1143,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"pages-dir-browser"},"startTime":1767754690479,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9696,"timestamp":146301062,"id":1236,"parentId":1155,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1767754690479,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9969,"timestamp":146301148,"id":1237,"parentId":1157,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"pages-dir-browser"},"startTime":1767754690479,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10569,"timestamp":146301257,"id":1239,"parentId":1159,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/graceful-degrade-boundary.js","layer":"app-pages-browser"},"startTime":1767754690479,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11220,"timestamp":146301310,"id":1240,"parentId":1160,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"app-pages-browser"},"startTime":1767754690480,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":14486,"timestamp":146301202,"id":1238,"parentId":1160,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"app-pages-browser"},"startTime":1767754690479,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":15868,"timestamp":146301422,"id":1242,"parentId":1160,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"app-pages-browser"},"startTime":1767754690480,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":16447,"timestamp":146301367,"id":1241,"parentId":1160,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"app-pages-browser"},"startTime":1767754690480,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12809,"timestamp":146308340,"id":1244,"parentId":1137,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"pages-dir-browser"},"startTime":1767754690487,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13507,"timestamp":146308486,"id":1245,"parentId":1138,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"app-pages-browser"},"startTime":1767754690487,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":21842,"timestamp":146308569,"id":1246,"parentId":1163,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1767754690487,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6941,"timestamp":146324886,"id":1247,"parentId":1160,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/hmr-refresh-reducer.js","layer":"app-pages-browser"},"startTime":1767754690503,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2532,"timestamp":146334462,"id":1249,"parentId":1175,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"app-pages-browser"},"startTime":1767754690513,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6246,"timestamp":146334343,"id":1248,"parentId":1160,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"app-pages-browser"},"startTime":1767754690513,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":3776,"timestamp":146352985,"id":1250,"parentId":1178,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/LanguageSwitcher.tsx","layer":"app-pages-browser"},"startTime":1767754690531,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":2328,"timestamp":146358254,"id":1251,"parentId":1180,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectCard.tsx","layer":"app-pages-browser"},"startTime":1767754690536,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":4604,"timestamp":146358457,"id":1252,"parentId":1180,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectCard.tsx","layer":"app-pages-browser"},"startTime":1767754690537,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":4563,"timestamp":146359458,"id":1253,"parentId":1186,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/dialog.tsx","layer":"app-pages-browser"},"startTime":1767754690538,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-css","duration":1858868,"timestamp":144506614,"id":1148,"parentId":1110,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css.webpack[javascript/auto]!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":null},"startTime":1767754688685,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1145,"timestamp":146370183,"id":1256,"parentId":1134,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/api.js","layer":null},"startTime":1767754690548,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4184,"timestamp":146369871,"id":1254,"parentId":1187,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":"pages-dir-browser"},"startTime":1767754690548,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4897,"timestamp":146370057,"id":1255,"parentId":1196,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1767754690548,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":2084067,"timestamp":144303983,"id":1098,"parentId":988,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}","layer":"app-pages-browser"},"startTime":1767754688482,"traceId":"2c8d09f5a579ad25"}]
|
|
13
|
-
[{"name":"build-module","duration":2088622,"timestamp":144300527,"id":1097,"parentId":988,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}","layer":"app-pages-browser"},"startTime":1767754688479,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-css","duration":2037900,"timestamp":144357750,"id":1110,"parentId":988,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":"app-pages-browser"},"startTime":1767754688536,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":21588,"timestamp":146375928,"id":1258,"parentId":1196,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unrecognized-action-error.js","layer":"app-pages-browser"},"startTime":1767754690554,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22318,"timestamp":146375800,"id":1257,"parentId":1196,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767754690554,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":111240,"timestamp":146291157,"id":1234,"parentId":1178,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/image.js","layer":"app-pages-browser"},"startTime":1767754690469,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":168,"timestamp":146403969,"id":1259,"parentId":1098,"tags":{},"startTime":1767754690582,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":31,"timestamp":146404156,"id":1260,"parentId":1097,"tags":{},"startTime":1767754690582,"traceId":"2c8d09f5a579ad25"},{"name":"build-module","duration":56,"timestamp":146404198,"id":1261,"parentId":1110,"tags":{},"startTime":1767754690582,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7759,"timestamp":146404272,"id":1262,"parentId":1196,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"app-pages-browser"},"startTime":1767754690583,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8010,"timestamp":146404437,"id":1263,"parentId":1202,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/cache-busting-search-param.js","layer":"app-pages-browser"},"startTime":1767754690583,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8529,"timestamp":146404541,"id":1264,"parentId":1199,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/reflect-utils.js","layer":"app-pages-browser"},"startTime":1767754690583,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9402,"timestamp":146404654,"id":1265,"parentId":1197,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js","layer":"app-pages-browser"},"startTime":1767754690583,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":10294,"timestamp":146404750,"id":1266,"parentId":1179,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ChatPanel.tsx","layer":"app-pages-browser"},"startTime":1767754690583,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":18436,"timestamp":146405379,"id":1269,"parentId":1179,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileViewer.tsx","layer":"app-pages-browser"},"startTime":1767754690584,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":21365,"timestamp":146405176,"id":1268,"parentId":1179,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileExplorer.tsx","layer":"app-pages-browser"},"startTime":1767754690583,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":26167,"timestamp":146404948,"id":1267,"parentId":1179,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/PreviewPanel.tsx","layer":"app-pages-browser"},"startTime":1767754690583,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":28468,"timestamp":146416349,"id":1271,"parentId":1179,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/testing/TestRunner.tsx","layer":"app-pages-browser"},"startTime":1767754690595,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":30718,"timestamp":146416125,"id":1270,"parentId":1179,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/database/DatabasePanel.tsx","layer":"app-pages-browser"},"startTime":1767754690594,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3396,"timestamp":146471484,"id":1272,"parentId":1218,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/cjs/react-dom.production.js","layer":"pages-dir-browser"},"startTime":1767754690650,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5052,"timestamp":146471801,"id":1274,"parentId":1216,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/route-pattern-normalizer.js","layer":"pages-dir-browser"},"startTime":1767754690650,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-json","duration":5098,"timestamp":146472322,"id":1278,"parentId":1215,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/en.json","layer":"app-pages-browser"},"startTime":1767754690651,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-json","duration":212,"timestamp":146479252,"id":1279,"parentId":1215,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/ko.json","layer":"app-pages-browser"},"startTime":1767754690657,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":178081,"timestamp":146301476,"id":1243,"parentId":1178,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-dir/link.js","layer":"app-pages-browser"},"startTime":1767754690480,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":16134,"timestamp":146472146,"id":1277,"parentId":1179,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/env/EnvPanel.tsx","layer":"app-pages-browser"},"startTime":1767754690650,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":17897,"timestamp":146471575,"id":1273,"parentId":1188,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1767754690650,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":20198,"timestamp":146471938,"id":1276,"parentId":1179,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/checkpoint/CheckpointPanel.tsx","layer":"app-pages-browser"},"startTime":1767754690650,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":22626,"timestamp":146471866,"id":1275,"parentId":1217,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"pages-dir-browser"},"startTime":1767754690650,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":7671,"timestamp":146510805,"id":1300,"parentId":1193,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/index.mjs","layer":"app-pages-browser"},"startTime":1767754690689,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":12860,"timestamp":146510900,"id":1301,"parentId":1215,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/middleware.mjs","layer":"app-pages-browser"},"startTime":1767754690689,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":21975,"timestamp":146504394,"id":1282,"parentId":1243,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"app-pages-browser"},"startTime":1767754690683,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":24982,"timestamp":146504176,"id":1280,"parentId":1243,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1767754690682,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":26534,"timestamp":146504316,"id":1281,"parentId":1243,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"app-pages-browser"},"startTime":1767754690683,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":28123,"timestamp":146504467,"id":1283,"parentId":1266,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageList.tsx","layer":"app-pages-browser"},"startTime":1767754690683,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":30832,"timestamp":146504573,"id":1284,"parentId":1266,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageInput.tsx","layer":"app-pages-browser"},"startTime":1767754690683,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":27353,"timestamp":146509674,"id":1285,"parentId":1251,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/card.tsx","layer":"app-pages-browser"},"startTime":1767754690688,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":29604,"timestamp":146509952,"id":1287,"parentId":1267,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ErrorOverlay.tsx","layer":"app-pages-browser"},"startTime":1767754690688,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":39256,"timestamp":146509833,"id":1286,"parentId":1267,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ConsoleViewer.tsx","layer":"app-pages-browser"},"startTime":1767754690688,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":127219,"timestamp":146510177,"id":1289,"parentId":1041,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Check,FolderOpen,Loader2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690688,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":137553,"timestamp":146510098,"id":1288,"parentId":1042,"tags":{"name":"__barrel_optimize__?names=AlertCircle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690688,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":137621,"timestamp":146510251,"id":1290,"parentId":1178,"tags":{"name":"__barrel_optimize__?names=ArrowLeft,Settings!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690688,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":137838,"timestamp":146510310,"id":1291,"parentId":1179,"tags":{"name":"__barrel_optimize__?names=Database,Eye,FlaskConical,FolderTree,GitBranch,Settings2,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690689,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":137959,"timestamp":146510366,"id":1292,"parentId":1251,"tags":{"name":"__barrel_optimize__?names=Plus,Sparkles!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690689,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":148115,"timestamp":146510490,"id":1294,"parentId":1266,"tags":{"name":"__barrel_optimize__?names=MessageSquarePlus!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690689,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":148303,"timestamp":146510652,"id":1297,"parentId":1267,"tags":{"name":"__barrel_optimize__?names=ExternalLink,Loader2,Monitor,Package,Play,RefreshCw,RotateCcw,Smartphone,Square,Tablet,Terminal,Zap!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690689,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":148776,"timestamp":146510425,"id":1293,"parentId":1252,"tags":{"name":"__barrel_optimize__?names=Globe,Server,Smartphone,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690689,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":148962,"timestamp":146510543,"id":1295,"parentId":1269,"tags":{"name":"__barrel_optimize__?names=Check,Copy,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690689,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":149675,"timestamp":146510700,"id":1298,"parentId":1271,"tags":{"name":"__barrel_optimize__?names=AlertCircle,CheckCircle,Clock,FlaskConical,Play,Plus,RefreshCw,Trash2,XCircle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690689,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":150098,"timestamp":146510601,"id":1296,"parentId":1268,"tags":{"name":"__barrel_optimize__?names=ChevronDown,ChevronRight,File,Folder,FolderOpen,RefreshCw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690689,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":96512,"timestamp":146564477,"id":1303,"parentId":1276,"tags":{"name":"__barrel_optimize__?names=AlertCircle,ChevronDown,ChevronRight,Clock,FileText,GitBranch,Plus,RefreshCw,RotateCcw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690743,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":150532,"timestamp":146510749,"id":1299,"parentId":1270,"tags":{"name":"__barrel_optimize__?names=AlertCircle,ChevronLeft,ChevronRight,Database,Play,RefreshCw,Table,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690689,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":97255,"timestamp":146564272,"id":1302,"parentId":1277,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Eye,EyeOff,FileText,Plus,RefreshCw,Save,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690743,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13093,"timestamp":146649431,"id":1307,"parentId":1281,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1767754690828,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":16786,"timestamp":146649155,"id":1304,"parentId":1284,"tags":{"name":"__barrel_optimize__?names=Clock,Paperclip,Send!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690827,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":17391,"timestamp":146649295,"id":1305,"parentId":1287,"tags":{"name":"__barrel_optimize__?names=Check,Copy,ExternalLink,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690828,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":17623,"timestamp":146649369,"id":1306,"parentId":1286,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Download,Terminal,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690828,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":4112,"timestamp":146706772,"id":1313,"parentId":1188,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754690885,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8574,"timestamp":146705570,"id":1308,"parentId":1240,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"app-pages-browser"},"startTime":1767754690884,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8868,"timestamp":146706326,"id":1309,"parentId":1240,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"app-pages-browser"},"startTime":1767754690885,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10172,"timestamp":146706445,"id":1310,"parentId":1240,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"app-pages-browser"},"startTime":1767754690885,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11245,"timestamp":146706561,"id":1311,"parentId":1238,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"app-pages-browser"},"startTime":1767754690885,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":12058,"timestamp":146706670,"id":1312,"parentId":1238,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"app-pages-browser"},"startTime":1767754690885,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6021,"timestamp":146722904,"id":1325,"parentId":1210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1767754690901,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":687,"timestamp":146729776,"id":1327,"parentId":1219,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/scheduler@0.27.0/node_modules/scheduler/index.js","layer":"pages-dir-browser"},"startTime":1767754690908,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":16289,"timestamp":146729939,"id":1329,"parentId":1216,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/path-to-regexp/index.js","layer":"pages-dir-browser"},"startTime":1767754690908,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":29062,"timestamp":146721349,"id":1315,"parentId":1283,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageItem.tsx","layer":"app-pages-browser"},"startTime":1767754690900,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":31052,"timestamp":146721549,"id":1316,"parentId":1283,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/StreamingMessage.tsx","layer":"app-pages-browser"},"startTime":1767754690900,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":31545,"timestamp":146721981,"id":1318,"parentId":1284,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/FilePreview.tsx","layer":"app-pages-browser"},"startTime":1767754690900,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":33050,"timestamp":146722203,"id":1319,"parentId":1238,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"app-pages-browser"},"startTime":1767754690900,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":36035,"timestamp":146722417,"id":1321,"parentId":1242,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"app-pages-browser"},"startTime":1767754690901,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":37582,"timestamp":146722514,"id":1322,"parentId":1249,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"app-pages-browser"},"startTime":1767754690901,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":37806,"timestamp":146722608,"id":1323,"parentId":1186,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/index.ts","layer":"app-pages-browser"},"startTime":1767754690901,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":38434,"timestamp":146722803,"id":1324,"parentId":1248,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/server-reference-info.js","layer":"app-pages-browser"},"startTime":1767754690901,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":40113,"timestamp":146721762,"id":1317,"parentId":1284,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ModeToggle.tsx","layer":"app-pages-browser"},"startTime":1767754690900,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":41366,"timestamp":146722309,"id":1320,"parentId":1238,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/aliased-prefetch-navigations.js","layer":"app-pages-browser"},"startTime":1767754690901,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":40971,"timestamp":146723151,"id":1326,"parentId":1248,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/assign-location.js","layer":"app-pages-browser"},"startTime":1767754690901,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":49475,"timestamp":146721199,"id":1314,"parentId":1238,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"app-pages-browser"},"startTime":1767754690899,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":41466,"timestamp":146729837,"id":1328,"parentId":1255,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1767754690908,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":42183,"timestamp":146729991,"id":1330,"parentId":1255,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/forbidden.js","layer":"app-pages-browser"},"startTime":1767754690908,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7898,"timestamp":146781139,"id":1335,"parentId":1246,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"app-pages-browser"},"startTime":1767754690959,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8036,"timestamp":146781332,"id":1336,"parentId":1246,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"app-pages-browser"},"startTime":1767754690960,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10101,"timestamp":146780638,"id":1331,"parentId":1255,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unauthorized.js","layer":"app-pages-browser"},"startTime":1767754690959,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":10490,"timestamp":146780803,"id":1332,"parentId":1255,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.js","layer":"app-pages-browser"},"startTime":1767754690959,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11096,"timestamp":146780930,"id":1333,"parentId":1234,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-external.js","layer":"app-pages-browser"},"startTime":1767754690959,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11557,"timestamp":146781044,"id":1334,"parentId":1263,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1767754690959,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":3473,"timestamp":146794525,"id":1341,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/vanilla.mjs","layer":"app-pages-browser"},"startTime":1767754690973,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":4017,"timestamp":146794719,"id":1342,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/react.mjs","layer":"app-pages-browser"},"startTime":1767754690973,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6670,"timestamp":146793900,"id":1337,"parentId":1243,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/use-merged-ref.js","layer":"app-pages-browser"},"startTime":1767754690972,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6899,"timestamp":146794054,"id":1338,"parentId":1243,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/error-once.js","layer":"app-pages-browser"},"startTime":1767754690972,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":20944,"timestamp":146794153,"id":1339,"parentId":1267,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/usePreviewStore.ts","layer":"app-pages-browser"},"startTime":1767754690972,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":20194,"timestamp":146795238,"id":1345,"parentId":1289,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-open.js","layer":"app-pages-browser"},"startTime":1767754690973,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":20748,"timestamp":146795036,"id":1343,"parentId":1289,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-alert.js","layer":"app-pages-browser"},"startTime":1767754690973,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":31378,"timestamp":146795142,"id":1344,"parentId":1289,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/check.js","layer":"app-pages-browser"},"startTime":1767754690973,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":31494,"timestamp":146795329,"id":1346,"parentId":1289,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/loader-circle.js","layer":"app-pages-browser"},"startTime":1767754690974,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":25524,"timestamp":146801609,"id":1347,"parentId":1291,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/database.js","layer":"app-pages-browser"},"startTime":1767754690980,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":25949,"timestamp":146801732,"id":1348,"parentId":1290,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-left.js","layer":"app-pages-browser"},"startTime":1767754690980,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":26085,"timestamp":146801909,"id":1350,"parentId":1291,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eye.js","layer":"app-pages-browser"},"startTime":1767754690980,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":26447,"timestamp":146801825,"id":1349,"parentId":1291,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flask-conical.js","layer":"app-pages-browser"},"startTime":1767754690980,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":26501,"timestamp":146801991,"id":1351,"parentId":1290,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings.js","layer":"app-pages-browser"},"startTime":1767754690980,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":39466,"timestamp":146794336,"id":1340,"parentId":1266,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useChatStore.ts","layer":"app-pages-browser"},"startTime":1767754690973,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":46398,"timestamp":146802113,"id":1352,"parentId":1315,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,Edit3,FileText,FolderSearch,Globe,ListTodo,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690980,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":46590,"timestamp":146802198,"id":1353,"parentId":1316,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,Edit3,FileText,FolderSearch,Globe,ListTodo,Loader2,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690980,"traceId":"2c8d09f5a579ad25"}]
|
|
14
|
-
[{"name":"build-module-js","duration":46683,"timestamp":146802284,"id":1354,"parentId":1318,"tags":{"name":"__barrel_optimize__?names=FileText,Loader2,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754690981,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7918,"timestamp":146842210,"id":1356,"parentId":1291,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-tree.js","layer":"app-pages-browser"},"startTime":1767754691020,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8056,"timestamp":146842323,"id":1357,"parentId":1291,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-branch.js","layer":"app-pages-browser"},"startTime":1767754691021,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8184,"timestamp":146842429,"id":1358,"parentId":1291,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings-2.js","layer":"app-pages-browser"},"startTime":1767754691021,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8796,"timestamp":146842035,"id":1355,"parentId":1317,"tags":{"name":"__barrel_optimize__?names=Hammer,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754691020,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3437,"timestamp":146855595,"id":1359,"parentId":1291,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/x.js","layer":"app-pages-browser"},"startTime":1767754691034,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6295,"timestamp":146859154,"id":1360,"parentId":1292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/plus.js","layer":"app-pages-browser"},"startTime":1767754691037,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6408,"timestamp":146859377,"id":1362,"parentId":1294,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-plus.js","layer":"app-pages-browser"},"startTime":1767754691038,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6710,"timestamp":146859466,"id":1363,"parentId":1297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/external-link.js","layer":"app-pages-browser"},"startTime":1767754691038,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6978,"timestamp":146859549,"id":1364,"parentId":1297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor.js","layer":"app-pages-browser"},"startTime":1767754691038,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7202,"timestamp":146859636,"id":1365,"parentId":1297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package.js","layer":"app-pages-browser"},"startTime":1767754691038,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":10845,"timestamp":146859885,"id":1367,"parentId":1316,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/AskUserQuestionBlock.tsx","layer":"app-pages-browser"},"startTime":1767754691038,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":17428,"timestamp":146859272,"id":1361,"parentId":1292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sparkles.js","layer":"app-pages-browser"},"startTime":1767754691038,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":19629,"timestamp":146859714,"id":1366,"parentId":1315,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MarkdownRenderer.tsx","layer":"app-pages-browser"},"startTime":1767754691038,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":19507,"timestamp":146867196,"id":1368,"parentId":1297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/play.js","layer":"app-pages-browser"},"startTime":1767754691045,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":19752,"timestamp":146867321,"id":1369,"parentId":1297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rotate-ccw.js","layer":"app-pages-browser"},"startTime":1767754691046,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":19920,"timestamp":146867414,"id":1370,"parentId":1297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/refresh-cw.js","layer":"app-pages-browser"},"startTime":1767754691046,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6556,"timestamp":146881365,"id":1372,"parentId":1297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/smartphone.js","layer":"app-pages-browser"},"startTime":1767754691060,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6987,"timestamp":146881208,"id":1371,"parentId":1297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square.js","layer":"app-pages-browser"},"startTime":1767754691059,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6851,"timestamp":146881568,"id":1374,"parentId":1297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/terminal.js","layer":"app-pages-browser"},"startTime":1767754691060,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7175,"timestamp":146881470,"id":1373,"parentId":1297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tablet.js","layer":"app-pages-browser"},"startTime":1767754691060,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7187,"timestamp":146881663,"id":1375,"parentId":1297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/zap.js","layer":"app-pages-browser"},"startTime":1767754691060,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7324,"timestamp":146881759,"id":1376,"parentId":1293,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/globe.js","layer":"app-pages-browser"},"startTime":1767754691060,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6976,"timestamp":146882555,"id":1377,"parentId":1293,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/server.js","layer":"app-pages-browser"},"startTime":1767754691061,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7244,"timestamp":146891061,"id":1378,"parentId":1367,"tags":{"name":"__barrel_optimize__?names=Check,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754691069,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3305,"timestamp":146895424,"id":1380,"parentId":1295,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copy.js","layer":"app-pages-browser"},"startTime":1767754691074,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3687,"timestamp":146895294,"id":1379,"parentId":1293,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trash-2.js","layer":"app-pages-browser"},"startTime":1767754691074,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3834,"timestamp":146895497,"id":1381,"parentId":1298,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check-big.js","layer":"app-pages-browser"},"startTime":1767754691074,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2206,"timestamp":146900294,"id":1382,"parentId":1298,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock.js","layer":"app-pages-browser"},"startTime":1767754691079,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2728,"timestamp":146900395,"id":1383,"parentId":1298,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-x.js","layer":"app-pages-browser"},"startTime":1767754691079,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2964,"timestamp":146900458,"id":1384,"parentId":1296,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-down.js","layer":"app-pages-browser"},"startTime":1767754691079,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3239,"timestamp":146900512,"id":1385,"parentId":1296,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file.js","layer":"app-pages-browser"},"startTime":1767754691079,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3490,"timestamp":146900570,"id":1386,"parentId":1296,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-right.js","layer":"app-pages-browser"},"startTime":1767754691079,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3714,"timestamp":146900619,"id":1387,"parentId":1296,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder.js","layer":"app-pages-browser"},"startTime":1767754691079,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5876,"timestamp":146900668,"id":1388,"parentId":1303,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-text.js","layer":"app-pages-browser"},"startTime":1767754691079,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4992,"timestamp":146906860,"id":1389,"parentId":1299,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-left.js","layer":"app-pages-browser"},"startTime":1767754691085,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5237,"timestamp":146906989,"id":1390,"parentId":1299,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/table.js","layer":"app-pages-browser"},"startTime":1767754691085,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5442,"timestamp":146907111,"id":1391,"parentId":1302,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eye-off.js","layer":"app-pages-browser"},"startTime":1767754691085,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":97542,"timestamp":146914385,"id":1393,"parentId":1269,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/prism-react-renderer@2.4.1_react@19.2.3/node_modules/prism-react-renderer/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691093,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":98501,"timestamp":146914240,"id":1392,"parentId":1302,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/save.js","layer":"app-pages-browser"},"startTime":1767754691092,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":2492,"timestamp":147020588,"id":1395,"parentId":1273,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","layer":"app-pages-browser"},"startTime":1767754691199,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":11902,"timestamp":147020765,"id":1396,"parentId":1273,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/tailwind-merge@2.6.0/node_modules/tailwind-merge/dist/bundle-mjs.mjs","layer":"app-pages-browser"},"startTime":1767754691199,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13332,"timestamp":147020397,"id":1394,"parentId":1304,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/paperclip.js","layer":"app-pages-browser"},"startTime":1767754691199,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":3920,"timestamp":147033896,"id":1397,"parentId":1367,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/radio-group.tsx","layer":"app-pages-browser"},"startTime":1767754691212,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":4327,"timestamp":147034135,"id":1398,"parentId":1367,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/checkbox.tsx","layer":"app-pages-browser"},"startTime":1767754691212,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-tsx","duration":4036,"timestamp":147039791,"id":1399,"parentId":1367,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/label.tsx","layer":"app-pages-browser"},"startTime":1767754691218,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5772,"timestamp":147049928,"id":1402,"parentId":1306,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/download.js","layer":"app-pages-browser"},"startTime":1767754691228,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5897,"timestamp":147050048,"id":1403,"parentId":1304,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/send.js","layer":"app-pages-browser"},"startTime":1767754691228,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6436,"timestamp":147049696,"id":1400,"parentId":1397,"tags":{"name":"__barrel_optimize__?names=Circle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754691228,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6442,"timestamp":147049824,"id":1401,"parentId":1398,"tags":{"name":"__barrel_optimize__?names=Check!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767754691228,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11590,"timestamp":147057252,"id":1410,"parentId":1325,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/scheduler/cjs/scheduler.production.js","layer":"app-pages-browser"},"startTime":1767754691235,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13416,"timestamp":147056940,"id":1405,"parentId":1332,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.browser.js","layer":"app-pages-browser"},"startTime":1767754691235,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13771,"timestamp":147057147,"id":1408,"parentId":1345,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/createLucideIcon.js","layer":"app-pages-browser"},"startTime":1767754691235,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":14142,"timestamp":147057201,"id":1409,"parentId":1352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bot.js","layer":"app-pages-browser"},"startTime":1767754691235,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":15307,"timestamp":147056851,"id":1404,"parentId":1322,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"app-pages-browser"},"startTime":1767754691235,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":19512,"timestamp":147056999,"id":1406,"parentId":1333,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/image-component.js","layer":"app-pages-browser"},"startTime":1767754691235,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":25638,"timestamp":147057090,"id":1407,"parentId":1333,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-img-props.js","layer":"app-pages-browser"},"startTime":1767754691235,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3377,"timestamp":147110050,"id":1421,"parentId":1327,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/scheduler@0.27.0/node_modules/scheduler/cjs/scheduler.production.js","layer":"pages-dir-browser"},"startTime":1767754691288,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7192,"timestamp":147108216,"id":1411,"parentId":1406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"app-pages-browser"},"startTime":1767754691286,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7405,"timestamp":147108374,"id":1412,"parentId":1406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config.js","layer":"app-pages-browser"},"startTime":1767754691287,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7618,"timestamp":147108440,"id":1413,"parentId":1406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767754691287,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7794,"timestamp":147108497,"id":1414,"parentId":1406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767754691287,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7949,"timestamp":147108613,"id":1416,"parentId":1352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pen-line.js","layer":"app-pages-browser"},"startTime":1767754691287,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":8965,"timestamp":147108556,"id":1415,"parentId":1352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check.js","layer":"app-pages-browser"},"startTime":1767754691287,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":9073,"timestamp":147108668,"id":1417,"parentId":1352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-search.js","layer":"app-pages-browser"},"startTime":1767754691287,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13328,"timestamp":147109711,"id":1418,"parentId":1352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-todo.js","layer":"app-pages-browser"},"startTime":1767754691288,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13602,"timestamp":147109829,"id":1419,"parentId":1352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/search.js","layer":"app-pages-browser"},"startTime":1767754691288,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":13854,"timestamp":147109933,"id":1420,"parentId":1355,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hammer.js","layer":"app-pages-browser"},"startTime":1767754691288,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":4434,"timestamp":147128449,"id":1422,"parentId":1323,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/project.ts","layer":"app-pages-browser"},"startTime":1767754691307,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5627,"timestamp":147130571,"id":1423,"parentId":1411,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"app-pages-browser"},"startTime":1767754691309,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5861,"timestamp":147130708,"id":1424,"parentId":1411,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767754691309,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6064,"timestamp":147130799,"id":1425,"parentId":1411,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"app-pages-browser"},"startTime":1767754691309,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":5981,"timestamp":147131065,"id":1427,"parentId":1323,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/preview.ts","layer":"app-pages-browser"},"startTime":1767754691309,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-ts","duration":6456,"timestamp":147130879,"id":1426,"parentId":1323,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/chat.ts","layer":"app-pages-browser"},"startTime":1767754691309,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6466,"timestamp":147131252,"id":1428,"parentId":1355,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-question.js","layer":"app-pages-browser"},"startTime":1767754691309,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5258,"timestamp":147135044,"id":1429,"parentId":1333,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-loader.js","layer":"app-pages-browser"},"startTime":1767754691313,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1186,"timestamp":147142321,"id":1430,"parentId":1366,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/index.js","layer":"app-pages-browser"},"startTime":1767754691321,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1632,"timestamp":147142501,"id":1431,"parentId":1400,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle.js","layer":"app-pages-browser"},"startTime":1767754691321,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":523,"timestamp":147144439,"id":1432,"parentId":1366,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/index.js","layer":"app-pages-browser"},"startTime":1767754691323,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4107,"timestamp":147146184,"id":1433,"parentId":1408,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/Icon.js","layer":"app-pages-browser"},"startTime":1767754691324,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4348,"timestamp":147147770,"id":1434,"parentId":1407,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-blur-svg.js","layer":"app-pages-browser"},"startTime":1767754691326,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2798,"timestamp":147150743,"id":1435,"parentId":1408,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/shared/src/utils.js","layer":"app-pages-browser"},"startTime":1767754691329,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2468,"timestamp":147163475,"id":1436,"parentId":1433,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/defaultAttributes.js","layer":"app-pages-browser"},"startTime":1767754691342,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3074,"timestamp":147166125,"id":1437,"parentId":1430,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691344,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":923,"timestamp":147173489,"id":1438,"parentId":1432,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691352,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":16147,"timestamp":147177342,"id":1439,"parentId":1397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-radio-group@1.3.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@1_cjtgf3xmcqtfujhoownb73bnbi/node_modules/@radix-ui/react-radio-group/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691356,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":846,"timestamp":147198908,"id":1442,"parentId":1219,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/process.js","layer":"pages-dir-browser"},"startTime":1767754691377,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1525,"timestamp":147198695,"id":1441,"parentId":1207,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/process.js","layer":"app-pages-browser"},"startTime":1767754691377,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":9994,"timestamp":147195362,"id":1440,"parentId":1398,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-checkbox@1.3.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_bewiq6cjocmach7p37abfyy75a/node_modules/@radix-ui/react-checkbox/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691374,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":11687,"timestamp":147198962,"id":1443,"parentId":1399,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-label@2.1.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2.7__ggc7d2jno3gcorzflrswkya7gm/node_modules/@radix-ui/react-label/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691377,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":825,"timestamp":147248683,"id":1444,"parentId":1437,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/index.js","layer":"app-pages-browser"},"startTime":1767754691427,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":650,"timestamp":147256951,"id":1445,"parentId":1437,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/index.js","layer":"app-pages-browser"},"startTime":1767754691435,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":600,"timestamp":147259260,"id":1446,"parentId":1437,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.js","layer":"app-pages-browser"},"startTime":1767754691437,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":408,"timestamp":147262171,"id":1447,"parentId":1437,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/index.js","layer":"app-pages-browser"},"startTime":1767754691440,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":424,"timestamp":147265233,"id":1448,"parentId":1437,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.js","layer":"app-pages-browser"},"startTime":1767754691443,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":519,"timestamp":147269421,"id":1449,"parentId":1437,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/index.js","layer":"app-pages-browser"},"startTime":1767754691448,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":856,"timestamp":147274552,"id":1450,"parentId":1437,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.js","layer":"app-pages-browser"},"startTime":1767754691453,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":846,"timestamp":147274770,"id":1451,"parentId":1438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/index.js","layer":"app-pages-browser"},"startTime":1767754691453,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":947,"timestamp":147276979,"id":1452,"parentId":1438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm@3.0.0/node_modules/micromark-extension-gfm/index.js","layer":"app-pages-browser"},"startTime":1767754691455,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1753,"timestamp":147283304,"id":1454,"parentId":1442,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/process/browser.js","layer":"pages-dir-browser"},"startTime":1767754691462,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2602,"timestamp":147283091,"id":1453,"parentId":1437,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/devlop@1.1.0/node_modules/devlop/lib/default.js","layer":"app-pages-browser"},"startTime":1767754691461,"traceId":"2c8d09f5a579ad25"}]
|
|
15
|
-
[{"name":"build-module-js","duration":3609,"timestamp":147283358,"id":1455,"parentId":1441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/process/browser.js","layer":"app-pages-browser"},"startTime":1767754691462,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":3783181,"timestamp":143504550,"id":980,"parentId":975,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1767754687683,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":3783126,"timestamp":143504619,"id":982,"parentId":975,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1767754687683,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":3783153,"timestamp":143504640,"id":983,"parentId":975,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767754687683,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":3783140,"timestamp":143504661,"id":984,"parentId":975,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767754687683,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":3782908,"timestamp":143504899,"id":986,"parentId":975,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767754687683,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":3783245,"timestamp":143504592,"id":981,"parentId":975,"tags":{"request":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/router.js"},"startTime":1767754687683,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":3784237,"timestamp":143503603,"id":976,"parentId":975,"tags":{"request":"./../../node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/next.js"},"startTime":1767754687682,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":3783481,"timestamp":143504364,"id":978,"parentId":975,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767754687683,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":3783561,"timestamp":143504311,"id":977,"parentId":975,"tags":{"request":"./../../node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-next.js"},"startTime":1767754687683,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":11049,"timestamp":147287503,"id":1456,"parentId":1444,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691466,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":1509,"timestamp":147313617,"id":1457,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+primitive@1.1.3/node_modules/@radix-ui/primitive/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691492,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":724,"timestamp":147318368,"id":1458,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-compose-refs@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691497,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":2511,"timestamp":147329573,"id":1459,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-context@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-context/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691508,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":1332,"timestamp":147341160,"id":1460,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._vrijsupjqixawruberrfb56pbm/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691519,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":8858,"timestamp":147349951,"id":1461,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-roving-focus@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react_olorlwzqifzjwjsjwfg7df3ffe/node_modules/@radix-ui/react-roving-focus/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691528,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":899,"timestamp":147361033,"id":1462,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-direction@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-direction/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691539,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":887,"timestamp":147370296,"id":1463,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-size@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-size/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691549,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":2174,"timestamp":147375555,"id":1464,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-controllable-state@1.2.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691554,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":4805,"timestamp":147381924,"id":1465,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-presence@1.1.5_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_g7nvzcflnhogkdp32witcuayfy/node_modules/@radix-ui/react-presence/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691560,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":743,"timestamp":147391311,"id":1466,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-previous@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-previous/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691570,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":723,"timestamp":147392881,"id":1467,"parentId":1445,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691571,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":760,"timestamp":147398195,"id":1468,"parentId":1446,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691576,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":820,"timestamp":147401433,"id":1469,"parentId":1443,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.4_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._4sfldbbhvd3xapj4euqmtg5wga/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691580,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":657,"timestamp":147405737,"id":1470,"parentId":1447,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691584,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4467,"timestamp":147407276,"id":1471,"parentId":1448,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691586,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5024,"timestamp":147407483,"id":1472,"parentId":1449,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691586,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3201,"timestamp":147421262,"id":1473,"parentId":1450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691599,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3442,"timestamp":147421425,"id":1474,"parentId":1451,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691600,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1396,"timestamp":147429158,"id":1475,"parentId":1447,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/index.js","layer":"app-pages-browser"},"startTime":1767754691607,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":924,"timestamp":147436713,"id":1476,"parentId":1452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-combine-extensions@2.0.1/node_modules/micromark-util-combine-extensions/index.js","layer":"app-pages-browser"},"startTime":1767754691615,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":385,"timestamp":147442547,"id":1477,"parentId":1452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/index.js","layer":"app-pages-browser"},"startTime":1767754691621,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":445,"timestamp":147446970,"id":1478,"parentId":1452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/index.js","layer":"app-pages-browser"},"startTime":1767754691625,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":550,"timestamp":147450830,"id":1479,"parentId":1452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/index.js","layer":"app-pages-browser"},"startTime":1767754691629,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":419,"timestamp":147456041,"id":1480,"parentId":1452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/index.js","layer":"app-pages-browser"},"startTime":1767754691634,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":338,"timestamp":147459480,"id":1481,"parentId":1452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/index.js","layer":"app-pages-browser"},"startTime":1767754691638,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":543,"timestamp":147463317,"id":1482,"parentId":1452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/index.js","layer":"app-pages-browser"},"startTime":1767754691642,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1084,"timestamp":147465716,"id":1483,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/comma-separated-tokens@2.0.3/node_modules/comma-separated-tokens/index.js","layer":"app-pages-browser"},"startTime":1767754691644,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":355,"timestamp":147469523,"id":1484,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/index.js","layer":"app-pages-browser"},"startTime":1767754691648,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":383,"timestamp":147473668,"id":1485,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/index.js","layer":"app-pages-browser"},"startTime":1767754691652,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":999,"timestamp":147476322,"id":1486,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/index.js","layer":"app-pages-browser"},"startTime":1767754691655,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":718,"timestamp":147479569,"id":1487,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/space-separated-tokens@2.0.2/node_modules/space-separated-tokens/index.js","layer":"app-pages-browser"},"startTime":1767754691658,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":492,"timestamp":147483172,"id":1488,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/index.js","layer":"app-pages-browser"},"startTime":1767754691661,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":535,"timestamp":147486671,"id":1489,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/index.js","layer":"app-pages-browser"},"startTime":1767754691665,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1043,"timestamp":147488923,"id":1490,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/index.js","layer":"app-pages-browser"},"startTime":1767754691667,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1416,"timestamp":147515743,"id":1491,"parentId":1471,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.js","layer":"app-pages-browser"},"startTime":1767754691694,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":3340,"timestamp":147516029,"id":1492,"parentId":1460,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.3_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691694,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":816,"timestamp":147528176,"id":1494,"parentId":1461,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-id@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-id/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691706,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":21065,"timestamp":147521826,"id":1493,"parentId":1461,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-collection@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19_3vqfgunzp4tkkuqnqgefg7qsai/node_modules/@radix-ui/react-collection/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691700,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2951,"timestamp":147548879,"id":1495,"parentId":1473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minpath.browser.js","layer":"app-pages-browser"},"startTime":1767754691727,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":3230,"timestamp":147549067,"id":1496,"parentId":1461,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-callback-ref@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691727,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":648,"timestamp":147552957,"id":1497,"parentId":1473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minproc.browser.js","layer":"app-pages-browser"},"startTime":1767754691731,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":977,"timestamp":147553687,"id":1498,"parentId":1473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.browser.js","layer":"app-pages-browser"},"startTime":1767754691732,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":808,"timestamp":147561959,"id":1499,"parentId":1463,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-layout-effect@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-layout-effect/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691740,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1574,"timestamp":147566795,"id":1500,"parentId":1475,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691745,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5996,"timestamp":147566995,"id":1501,"parentId":1475,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/footer.js","layer":"app-pages-browser"},"startTime":1767754691745,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6581,"timestamp":147567196,"id":1502,"parentId":1475,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/index.js","layer":"app-pages-browser"},"startTime":1767754691745,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":894,"timestamp":147582371,"id":1503,"parentId":1464,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-effect-event@0.0.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-effect-event/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691761,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":523,"timestamp":147592135,"id":1504,"parentId":1468,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/index.js","layer":"app-pages-browser"},"startTime":1767754691770,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5008,"timestamp":147596535,"id":1505,"parentId":1477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767754691775,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5300,"timestamp":147596743,"id":1506,"parentId":1477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/html.js","layer":"app-pages-browser"},"startTime":1767754691775,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1153,"timestamp":147613706,"id":1507,"parentId":1478,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/html.js","layer":"app-pages-browser"},"startTime":1767754691792,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3223,"timestamp":147613862,"id":1508,"parentId":1478,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767754691792,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":401,"timestamp":147622192,"id":1509,"parentId":1471,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/bail@2.0.2/node_modules/bail/index.js","layer":"app-pages-browser"},"startTime":1767754691800,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":530,"timestamp":147626160,"id":1510,"parentId":1471,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/is-plain-obj@4.1.0/node_modules/is-plain-obj/index.js","layer":"app-pages-browser"},"startTime":1767754691804,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":350,"timestamp":147628197,"id":1511,"parentId":1471,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.js","layer":"app-pages-browser"},"startTime":1767754691806,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":519,"timestamp":147630414,"id":1512,"parentId":1472,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/index.js","layer":"app-pages-browser"},"startTime":1767754691809,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":636,"timestamp":147630540,"id":1513,"parentId":1479,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/html.js","layer":"app-pages-browser"},"startTime":1767754691809,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1381,"timestamp":147631763,"id":1514,"parentId":1479,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767754691810,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1515,"timestamp":147639611,"id":1515,"parentId":1471,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/extend@3.0.2/node_modules/extend/index.js","layer":"app-pages-browser"},"startTime":1767754691818,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":534,"timestamp":147642648,"id":1516,"parentId":1474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/index.js","layer":"app-pages-browser"},"startTime":1767754691821,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":587,"timestamp":147646690,"id":1517,"parentId":1474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/index.js","layer":"app-pages-browser"},"startTime":1767754691825,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":543,"timestamp":147650239,"id":1518,"parentId":1474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/index.js","layer":"app-pages-browser"},"startTime":1767754691828,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":560,"timestamp":147652468,"id":1519,"parentId":1474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/index.js","layer":"app-pages-browser"},"startTime":1767754691831,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":598,"timestamp":147655543,"id":1520,"parentId":1474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/index.js","layer":"app-pages-browser"},"startTime":1767754691834,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4010,"timestamp":147656838,"id":1521,"parentId":1480,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767754691835,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5880,"timestamp":147657067,"id":1522,"parentId":1480,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/html.js","layer":"app-pages-browser"},"startTime":1767754691835,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1335,"timestamp":147664277,"id":1523,"parentId":1481,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691843,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-mjs","duration":4051,"timestamp":147667761,"id":1524,"parentId":1469,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.4_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767754691846,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":990,"timestamp":147677079,"id":1525,"parentId":1482,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/html.js","layer":"app-pages-browser"},"startTime":1767754691855,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1574,"timestamp":147677310,"id":1526,"parentId":1482,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767754691856,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":887,"timestamp":147683400,"id":1527,"parentId":1476,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-chunked@2.0.1/node_modules/micromark-util-chunked/index.js","layer":"app-pages-browser"},"startTime":1767754691862,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3139,"timestamp":147683538,"id":1528,"parentId":1484,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691862,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1044,"timestamp":147689834,"id":1529,"parentId":1486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/aria.js","layer":"app-pages-browser"},"startTime":1767754691868,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2141,"timestamp":147691826,"id":1530,"parentId":1486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/html.js","layer":"app-pages-browser"},"startTime":1767754691870,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2389,"timestamp":147691959,"id":1531,"parentId":1486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xlink.js","layer":"app-pages-browser"},"startTime":1767754691870,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2528,"timestamp":147692095,"id":1532,"parentId":1486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xmlns.js","layer":"app-pages-browser"},"startTime":1767754691870,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5256,"timestamp":147692194,"id":1533,"parentId":1486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/svg.js","layer":"app-pages-browser"},"startTime":1767754691870,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5583,"timestamp":147692291,"id":1534,"parentId":1485,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691871,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1486,"timestamp":147704208,"id":1535,"parentId":1486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xml.js","layer":"app-pages-browser"},"startTime":1767754691882,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1474,"timestamp":147704507,"id":1536,"parentId":1486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/hast-to-react.js","layer":"app-pages-browser"},"startTime":1767754691883,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":993,"timestamp":147709400,"id":1537,"parentId":1486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/find.js","layer":"app-pages-browser"},"startTime":1767754691888,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1023,"timestamp":147709525,"id":1538,"parentId":1486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/normalize.js","layer":"app-pages-browser"},"startTime":1767754691888,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1518,"timestamp":147711363,"id":1539,"parentId":1486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/merge.js","layer":"app-pages-browser"},"startTime":1767754691890,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3796,"timestamp":147711580,"id":1540,"parentId":1488,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691890,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1442,"timestamp":147716605,"id":1541,"parentId":1490,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/utilities.js","layer":"app-pages-browser"},"startTime":1767754691895,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1614,"timestamp":147719468,"id":1542,"parentId":1489,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691898,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":824,"timestamp":147721926,"id":1543,"parentId":1498,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.shared.js","layer":"app-pages-browser"},"startTime":1767754691900,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1002,"timestamp":147724598,"id":1544,"parentId":1490,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-object@1.0.14/node_modules/style-to-object/cjs/index.js","layer":"app-pages-browser"},"startTime":1767754691903,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2499,"timestamp":147728620,"id":1545,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/state.js","layer":"app-pages-browser"},"startTime":1767754691907,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2892,"timestamp":147732607,"id":1546,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js","layer":"app-pages-browser"},"startTime":1767754691911,"traceId":"2c8d09f5a579ad25"}]
|
|
16
|
-
[{"name":"build-module-js","duration":2983,"timestamp":147732814,"id":1547,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/break.js","layer":"app-pages-browser"},"startTime":1767754691911,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3059,"timestamp":147733026,"id":1548,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/delete.js","layer":"app-pages-browser"},"startTime":1767754691911,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3125,"timestamp":147733222,"id":1549,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js","layer":"app-pages-browser"},"startTime":1767754691911,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3596,"timestamp":147733424,"id":1550,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js","layer":"app-pages-browser"},"startTime":1767754691912,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3896,"timestamp":147733636,"id":1551,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/code.js","layer":"app-pages-browser"},"startTime":1767754691912,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1563,"timestamp":147741116,"id":1552,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/heading.js","layer":"app-pages-browser"},"startTime":1767754691919,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1503,"timestamp":147741464,"id":1553,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/html.js","layer":"app-pages-browser"},"startTime":1767754691920,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1788,"timestamp":147741670,"id":1554,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js","layer":"app-pages-browser"},"startTime":1767754691920,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1160,"timestamp":147746883,"id":1555,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image.js","layer":"app-pages-browser"},"startTime":1767754691925,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1313,"timestamp":147747106,"id":1556,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js","layer":"app-pages-browser"},"startTime":1767754691925,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2269,"timestamp":147750030,"id":1557,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js","layer":"app-pages-browser"},"startTime":1767754691928,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2970,"timestamp":147750268,"id":1558,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list-item.js","layer":"app-pages-browser"},"startTime":1767754691928,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3136,"timestamp":147750469,"id":1559,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link.js","layer":"app-pages-browser"},"startTime":1767754691929,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3425,"timestamp":147750664,"id":1560,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list.js","layer":"app-pages-browser"},"startTime":1767754691929,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3509,"timestamp":147750850,"id":1561,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js","layer":"app-pages-browser"},"startTime":1767754691929,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1265,"timestamp":147755327,"id":1562,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/root.js","layer":"app-pages-browser"},"startTime":1767754691934,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1340,"timestamp":147755537,"id":1563,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/strong.js","layer":"app-pages-browser"},"startTime":1767754691934,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1696,"timestamp":147755745,"id":1564,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table.js","layer":"app-pages-browser"},"startTime":1767754691934,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1289,"timestamp":147759835,"id":1565,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-row.js","layer":"app-pages-browser"},"startTime":1767754691938,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1346,"timestamp":147760067,"id":1566,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js","layer":"app-pages-browser"},"startTime":1767754691938,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1006,"timestamp":147762429,"id":1567,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/text.js","layer":"app-pages-browser"},"startTime":1767754691941,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1061,"timestamp":147762645,"id":1568,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js","layer":"app-pages-browser"},"startTime":1767754691941,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":771,"timestamp":147764150,"id":1569,"parentId":1493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_init.js","layer":"app-pages-browser"},"startTime":1767754691942,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":729,"timestamp":147767815,"id":1570,"parentId":1493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_set.js","layer":"app-pages-browser"},"startTime":1767754691946,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":793,"timestamp":147769953,"id":1571,"parentId":1493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_get.js","layer":"app-pages-browser"},"startTime":1767754691948,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3193,"timestamp":147774565,"id":1572,"parentId":1508,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/edit-map.js","layer":"app-pages-browser"},"startTime":1767754691953,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3373,"timestamp":147774764,"id":1573,"parentId":1508,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/infer.js","layer":"app-pages-browser"},"startTime":1767754691953,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4722,"timestamp":147778940,"id":1574,"parentId":1504,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691957,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1327,"timestamp":147790482,"id":1575,"parentId":1501,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-sanitize-uri@2.0.1/node_modules/micromark-util-sanitize-uri/index.js","layer":"app-pages-browser"},"startTime":1767754691969,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":727,"timestamp":147794636,"id":1576,"parentId":1501,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/index.js","layer":"app-pages-browser"},"startTime":1767754691973,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1247,"timestamp":147801022,"id":1577,"parentId":1511,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691979,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1133,"timestamp":147804098,"id":1578,"parentId":1512,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691982,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1704,"timestamp":147807624,"id":1579,"parentId":1505,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-character@2.1.1/node_modules/micromark-util-character/index.js","layer":"app-pages-browser"},"startTime":1767754691986,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":855,"timestamp":147813495,"id":1580,"parentId":1508,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-space@2.0.1/node_modules/micromark-factory-space/index.js","layer":"app-pages-browser"},"startTime":1767754691992,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2426,"timestamp":147818095,"id":1581,"parentId":1516,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691996,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3634,"timestamp":147818221,"id":1582,"parentId":1517,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/lib/index.js","layer":"app-pages-browser"},"startTime":1767754691996,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5315,"timestamp":147822840,"id":1583,"parentId":1518,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/lib/index.js","layer":"app-pages-browser"},"startTime":1767754692001,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2085,"timestamp":147829774,"id":1584,"parentId":1519,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/lib/index.js","layer":"app-pages-browser"},"startTime":1767754692008,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":715,"timestamp":147834861,"id":1585,"parentId":1514,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-classify-character@2.0.1/node_modules/micromark-util-classify-character/index.js","layer":"app-pages-browser"},"startTime":1767754692013,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1017,"timestamp":147840509,"id":1586,"parentId":1514,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-resolve-all@2.0.1/node_modules/micromark-util-resolve-all/index.js","layer":"app-pages-browser"},"startTime":1767754692019,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1280,"timestamp":147840718,"id":1587,"parentId":1529,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/create.js","layer":"app-pages-browser"},"startTime":1767754692019,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2223,"timestamp":147843557,"id":1588,"parentId":1520,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/lib/index.js","layer":"app-pages-browser"},"startTime":1767754692022,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1149,"timestamp":147848134,"id":1589,"parentId":1529,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/types.js","layer":"app-pages-browser"},"startTime":1767754692026,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1051,"timestamp":147854172,"id":1590,"parentId":1530,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-insensitive-transform.js","layer":"app-pages-browser"},"startTime":1767754692032,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1055,"timestamp":147854399,"id":1591,"parentId":1533,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-sensitive-transform.js","layer":"app-pages-browser"},"startTime":1767754692033,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1866,"timestamp":147856812,"id":1592,"parentId":1537,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/defined-info.js","layer":"app-pages-browser"},"startTime":1767754692035,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2016,"timestamp":147857049,"id":1593,"parentId":1537,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/info.js","layer":"app-pages-browser"},"startTime":1767754692035,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2125,"timestamp":147857244,"id":1594,"parentId":1539,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/schema.js","layer":"app-pages-browser"},"startTime":1767754692035,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1008,"timestamp":147865147,"id":1595,"parentId":1521,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/index.js","layer":"app-pages-browser"},"startTime":1767754692043,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":691,"timestamp":147874142,"id":1596,"parentId":1521,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-normalize-identifier@2.0.1/node_modules/micromark-util-normalize-identifier/index.js","layer":"app-pages-browser"},"startTime":1767754692052,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3928,"timestamp":147876630,"id":1597,"parentId":1554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/revert.js","layer":"app-pages-browser"},"startTime":1767754692055,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1504,"timestamp":147889850,"id":1598,"parentId":1569,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_check_private_redeclaration.js","layer":"app-pages-browser"},"startTime":1767754692068,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1563,"timestamp":147890158,"id":1599,"parentId":1570,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_apply_descriptor_set.js","layer":"app-pages-browser"},"startTime":1767754692068,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1683,"timestamp":147890355,"id":1600,"parentId":1570,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_extract_field_descriptor.js","layer":"app-pages-browser"},"startTime":1767754692069,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":663,"timestamp":147893917,"id":1601,"parentId":1571,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_apply_descriptor_get.js","layer":"app-pages-browser"},"startTime":1767754692072,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":581,"timestamp":147898463,"id":1602,"parentId":1542,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/index.js","layer":"app-pages-browser"},"startTime":1767754692077,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":800,"timestamp":147900776,"id":1603,"parentId":1567,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trim-lines@3.0.1/node_modules/trim-lines/index.js","layer":"app-pages-browser"},"startTime":1767754692079,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":902,"timestamp":147903630,"id":1604,"parentId":1578,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/color.js","layer":"app-pages-browser"},"startTime":1767754692082,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1910,"timestamp":147903766,"id":1605,"parentId":1576,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/serialize.js","layer":"app-pages-browser"},"startTime":1767754692082,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2712,"timestamp":147903871,"id":1606,"parentId":1576,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/deserialize.js","layer":"app-pages-browser"},"startTime":1767754692082,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4608,"timestamp":147903968,"id":1607,"parentId":1544,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/inline-style-parser@0.2.7/node_modules/inline-style-parser/cjs/index.js","layer":"app-pages-browser"},"startTime":1767754692082,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":565,"timestamp":147911081,"id":1608,"parentId":1574,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/index.js","layer":"app-pages-browser"},"startTime":1767754692089,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":544,"timestamp":147913278,"id":1609,"parentId":1574,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/index.js","layer":"app-pages-browser"},"startTime":1767754692092,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":555,"timestamp":147915596,"id":1610,"parentId":1574,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-numeric-character-reference@2.0.2/node_modules/micromark-util-decode-numeric-character-reference/index.js","layer":"app-pages-browser"},"startTime":1767754692094,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":630,"timestamp":147920094,"id":1611,"parentId":1574,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-string@2.0.1/node_modules/micromark-util-decode-string/index.js","layer":"app-pages-browser"},"startTime":1767754692098,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":480,"timestamp":147922906,"id":1612,"parentId":1574,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/decode-named-character-reference@1.2.0/node_modules/decode-named-character-reference/index.dom.js","layer":"app-pages-browser"},"startTime":1767754692101,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":563,"timestamp":147928290,"id":1613,"parentId":1575,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-encode@2.0.1/node_modules/micromark-util-encode/index.js","layer":"app-pages-browser"},"startTime":1767754692107,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":526,"timestamp":147930755,"id":1614,"parentId":1578,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/index.js","layer":"app-pages-browser"},"startTime":1767754692109,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":692,"timestamp":147935459,"id":1615,"parentId":1581,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/ccount@2.0.1/node_modules/ccount/index.js","layer":"app-pages-browser"},"startTime":1767754692114,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":531,"timestamp":147938075,"id":1616,"parentId":1581,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/index.js","layer":"app-pages-browser"},"startTime":1767754692116,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2261,"timestamp":147939181,"id":1617,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/attention.js","layer":"app-pages-browser"},"startTime":1767754692117,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5318,"timestamp":147945465,"id":1618,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/autolink.js","layer":"app-pages-browser"},"startTime":1767754692124,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5568,"timestamp":147945651,"id":1619,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/blank-line.js","layer":"app-pages-browser"},"startTime":1767754692124,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6040,"timestamp":147945807,"id":1620,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/block-quote.js","layer":"app-pages-browser"},"startTime":1767754692124,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":6267,"timestamp":147945966,"id":1621,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-escape.js","layer":"app-pages-browser"},"startTime":1767754692124,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1232,"timestamp":147956897,"id":1622,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-reference.js","layer":"app-pages-browser"},"startTime":1767754692135,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4462,"timestamp":147957061,"id":1623,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-fenced.js","layer":"app-pages-browser"},"startTime":1767754692135,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5305,"timestamp":147957170,"id":1624,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-indented.js","layer":"app-pages-browser"},"startTime":1767754692135,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2241,"timestamp":147963291,"id":1625,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-text.js","layer":"app-pages-browser"},"startTime":1767754692142,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2792,"timestamp":147963480,"id":1626,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/content.js","layer":"app-pages-browser"},"startTime":1767754692142,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3238,"timestamp":147963640,"id":1627,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/definition.js","layer":"app-pages-browser"},"startTime":1767754692142,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4162,"timestamp":147972752,"id":1628,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-flow.js","layer":"app-pages-browser"},"startTime":1767754692151,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5074,"timestamp":147972953,"id":1629,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/heading-atx.js","layer":"app-pages-browser"},"startTime":1767754692151,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":7181,"timestamp":147973146,"id":1630,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-text.js","layer":"app-pages-browser"},"startTime":1767754692151,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2259,"timestamp":147984985,"id":1631,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/hard-break-escape.js","layer":"app-pages-browser"},"startTime":1767754692163,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4764,"timestamp":147985224,"id":1632,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-end.js","layer":"app-pages-browser"},"startTime":1767754692163,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5070,"timestamp":147985392,"id":1633,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-link.js","layer":"app-pages-browser"},"startTime":1767754692164,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5406,"timestamp":147985554,"id":1634,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-image.js","layer":"app-pages-browser"},"startTime":1767754692164,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2057,"timestamp":147993374,"id":1635,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/line-ending.js","layer":"app-pages-browser"},"startTime":1767754692172,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3575,"timestamp":147993589,"id":1636,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/list.js","layer":"app-pages-browser"},"startTime":1767754692172,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":4117,"timestamp":147994074,"id":1637,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/setext-underline.js","layer":"app-pages-browser"},"startTime":1767754692172,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":936,"timestamp":148001560,"id":1638,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/thematic-break.js","layer":"app-pages-browser"},"startTime":1767754692180,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1983,"timestamp":148003583,"id":1639,"parentId":1584,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/markdown-table@3.0.4/node_modules/markdown-table/index.js","layer":"app-pages-browser"},"startTime":1767754692182,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":598,"timestamp":148009740,"id":1640,"parentId":1584,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.js","layer":"app-pages-browser"},"startTime":1767754692188,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1262,"timestamp":148017350,"id":1641,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/types.js","layer":"app-pages-browser"},"startTime":1767754692196,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1613,"timestamp":148017553,"id":1642,"parentId":1602,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/lib/index.js","layer":"app-pages-browser"},"startTime":1767754692196,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1543,"timestamp":148020649,"id":1643,"parentId":1608,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/lib/index.js","layer":"app-pages-browser"},"startTime":1767754692199,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5929,"timestamp":148020860,"id":1644,"parentId":1609,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/compile.js","layer":"app-pages-browser"},"startTime":1767754692199,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1228,"timestamp":148031026,"id":1645,"parentId":1609,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/parse.js","layer":"app-pages-browser"},"startTime":1767754692209,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1655,"timestamp":148037235,"id":1646,"parentId":1609,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/preprocess.js","layer":"app-pages-browser"},"startTime":1767754692215,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1744,"timestamp":148037455,"id":1647,"parentId":1609,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/postprocess.js","layer":"app-pages-browser"},"startTime":1767754692216,"traceId":"2c8d09f5a579ad25"}]
|
|
17
|
-
[{"name":"build-module-js","duration":1641,"timestamp":148045185,"id":1648,"parentId":1614,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/lib/index.js","layer":"app-pages-browser"},"startTime":1767754692223,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1626,"timestamp":148048554,"id":1649,"parentId":1616,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/lib/index.js","layer":"app-pages-browser"},"startTime":1767754692227,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1755,"timestamp":148062055,"id":1650,"parentId":1640,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/index.js","layer":"app-pages-browser"},"startTime":1767754692240,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2857,"timestamp":148068611,"id":1651,"parentId":1645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/constructs.js","layer":"app-pages-browser"},"startTime":1767754692247,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3227,"timestamp":148068835,"id":1652,"parentId":1640,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/index.js","layer":"app-pages-browser"},"startTime":1767754692247,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5043,"timestamp":148074596,"id":1653,"parentId":1645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/create-tokenizer.js","layer":"app-pages-browser"},"startTime":1767754692253,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1759,"timestamp":148086891,"id":1654,"parentId":1627,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-destination@2.0.1/node_modules/micromark-factory-destination/index.js","layer":"app-pages-browser"},"startTime":1767754692265,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1235,"timestamp":148094498,"id":1655,"parentId":1627,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-label@2.0.1/node_modules/micromark-factory-label/index.js","layer":"app-pages-browser"},"startTime":1767754692273,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1027,"timestamp":148105838,"id":1656,"parentId":1627,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-whitespace@2.0.1/node_modules/micromark-factory-whitespace/index.js","layer":"app-pages-browser"},"startTime":1767754692284,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1234,"timestamp":148108959,"id":1657,"parentId":1627,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-title@2.0.1/node_modules/micromark-factory-title/index.js","layer":"app-pages-browser"},"startTime":1767754692287,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2044,"timestamp":148112300,"id":1658,"parentId":1626,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/index.js","layer":"app-pages-browser"},"startTime":1767754692291,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":800,"timestamp":148116604,"id":1659,"parentId":1628,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-html-tag-name@2.0.1/node_modules/micromark-util-html-tag-name/index.js","layer":"app-pages-browser"},"startTime":1767754692295,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":990,"timestamp":148118690,"id":1660,"parentId":1645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/content.js","layer":"app-pages-browser"},"startTime":1767754692297,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2836,"timestamp":148121563,"id":1661,"parentId":1645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/document.js","layer":"app-pages-browser"},"startTime":1767754692300,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3132,"timestamp":148121782,"id":1662,"parentId":1645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/flow.js","layer":"app-pages-browser"},"startTime":1767754692300,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2403,"timestamp":148128808,"id":1663,"parentId":1645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/text.js","layer":"app-pages-browser"},"startTime":1767754692307,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2612,"timestamp":148129025,"id":1664,"parentId":1650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/configure.js","layer":"app-pages-browser"},"startTime":1767754692307,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1660,"timestamp":148135476,"id":1665,"parentId":1650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/unsafe.js","layer":"app-pages-browser"},"startTime":1767754692314,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1756,"timestamp":148135662,"id":1666,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js","layer":"app-pages-browser"},"startTime":1767754692314,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1970,"timestamp":148135817,"id":1667,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/break.js","layer":"app-pages-browser"},"startTime":1767754692314,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":5289,"timestamp":148135962,"id":1668,"parentId":1650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/join.js","layer":"app-pages-browser"},"startTime":1767754692314,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1678,"timestamp":148142744,"id":1669,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/code.js","layer":"app-pages-browser"},"startTime":1767754692321,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2099,"timestamp":148142926,"id":1670,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/definition.js","layer":"app-pages-browser"},"startTime":1767754692321,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1600,"timestamp":148146375,"id":1671,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js","layer":"app-pages-browser"},"startTime":1767754692325,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2033,"timestamp":148146571,"id":1672,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/heading.js","layer":"app-pages-browser"},"startTime":1767754692325,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1027,"timestamp":148154743,"id":1673,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/html.js","layer":"app-pages-browser"},"startTime":1767754692333,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1409,"timestamp":148154902,"id":1674,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image.js","layer":"app-pages-browser"},"startTime":1767754692333,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1040,"timestamp":148157209,"id":1675,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js","layer":"app-pages-browser"},"startTime":1767754692335,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1331,"timestamp":148157340,"id":1676,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js","layer":"app-pages-browser"},"startTime":1767754692336,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1767,"timestamp":148157449,"id":1677,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link.js","layer":"app-pages-browser"},"startTime":1767754692336,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1983,"timestamp":148157544,"id":1678,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js","layer":"app-pages-browser"},"startTime":1767754692336,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1890,"timestamp":148162349,"id":1679,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list.js","layer":"app-pages-browser"},"startTime":1767754692341,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2183,"timestamp":148162543,"id":1680,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list-item.js","layer":"app-pages-browser"},"startTime":1767754692341,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2259,"timestamp":148162714,"id":1681,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js","layer":"app-pages-browser"},"startTime":1767754692341,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2397,"timestamp":148162897,"id":1682,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/root.js","layer":"app-pages-browser"},"startTime":1767754692341,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2024,"timestamp":148167232,"id":1683,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/strong.js","layer":"app-pages-browser"},"startTime":1767754692345,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2038,"timestamp":148167416,"id":1684,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/text.js","layer":"app-pages-browser"},"startTime":1767754692346,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1318,"timestamp":148172608,"id":1685,"parentId":1652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js","layer":"app-pages-browser"},"startTime":1767754692351,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1438,"timestamp":148172798,"id":1686,"parentId":1650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/association.js","layer":"app-pages-browser"},"startTime":1767754692351,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1628,"timestamp":148172967,"id":1687,"parentId":1650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/compile-pattern.js","layer":"app-pages-browser"},"startTime":1767754692351,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2265,"timestamp":148177688,"id":1688,"parentId":1650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-phrasing.js","layer":"app-pages-browser"},"startTime":1767754692356,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2634,"timestamp":148177884,"id":1689,"parentId":1650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-flow.js","layer":"app-pages-browser"},"startTime":1767754692356,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2721,"timestamp":148178172,"id":1690,"parentId":1650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/indent-lines.js","layer":"app-pages-browser"},"startTime":1767754692356,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3850,"timestamp":148178350,"id":1691,"parentId":1650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/safe.js","layer":"app-pages-browser"},"startTime":1767754692357,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1133,"timestamp":148183709,"id":1692,"parentId":1650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/track.js","layer":"app-pages-browser"},"startTime":1767754692362,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":662,"timestamp":148193823,"id":1693,"parentId":1649,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/escape-string-regexp@5.0.0/node_modules/escape-string-regexp/index.js","layer":"app-pages-browser"},"startTime":1767754692372,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2672,"timestamp":148197322,"id":1694,"parentId":1658,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/lib/splice-buffer.js","layer":"app-pages-browser"},"startTime":1767754692376,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":2829,"timestamp":148197527,"id":1695,"parentId":1668,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js","layer":"app-pages-browser"},"startTime":1767754692376,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3087,"timestamp":148197701,"id":1696,"parentId":1668,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js","layer":"app-pages-browser"},"startTime":1767754692376,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3311,"timestamp":148197871,"id":1697,"parentId":1667,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js","layer":"app-pages-browser"},"startTime":1767754692376,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":3358,"timestamp":148198073,"id":1698,"parentId":1669,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-fence.js","layer":"app-pages-browser"},"startTime":1767754692376,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":655,"timestamp":148206861,"id":1699,"parentId":1670,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-quote.js","layer":"app-pages-browser"},"startTime":1767754692385,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1594,"timestamp":148213113,"id":1700,"parentId":1671,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js","layer":"app-pages-browser"},"startTime":1767754692391,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1548,"timestamp":148213329,"id":1701,"parentId":1671,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js","layer":"app-pages-browser"},"startTime":1767754692392,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1801,"timestamp":148213492,"id":1702,"parentId":1671,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-info.js","layer":"app-pages-browser"},"startTime":1767754692392,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1961,"timestamp":148213659,"id":1703,"parentId":1650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zwitch@2.0.4/node_modules/zwitch/index.js","layer":"app-pages-browser"},"startTime":1767754692392,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1167,"timestamp":148219267,"id":1704,"parentId":1677,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js","layer":"app-pages-browser"},"startTime":1767754692397,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1322,"timestamp":148227618,"id":1705,"parentId":1679,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js","layer":"app-pages-browser"},"startTime":1767754692406,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1487,"timestamp":148227831,"id":1706,"parentId":1679,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js","layer":"app-pages-browser"},"startTime":1767754692406,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1530,"timestamp":148228038,"id":1707,"parentId":1679,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js","layer":"app-pages-browser"},"startTime":1767754692406,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1209,"timestamp":148230048,"id":1708,"parentId":1679,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule.js","layer":"app-pages-browser"},"startTime":1767754692408,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1189,"timestamp":148230262,"id":1709,"parentId":1680,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js","layer":"app-pages-browser"},"startTime":1767754692408,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":1217,"timestamp":148230401,"id":1710,"parentId":1683,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-strong.js","layer":"app-pages-browser"},"startTime":1767754692409,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":410,"timestamp":148232635,"id":1711,"parentId":1685,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js","layer":"app-pages-browser"},"startTime":1767754692411,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":467,"timestamp":148236501,"id":1712,"parentId":1669,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/longest-streak@3.1.0/node_modules/longest-streak/index.js","layer":"app-pages-browser"},"startTime":1767754692415,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":342,"timestamp":148238110,"id":1713,"parentId":1682,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/index.js","layer":"app-pages-browser"},"startTime":1767754692416,"traceId":"2c8d09f5a579ad25"},{"name":"build-module-js","duration":483,"timestamp":148239775,"id":1714,"parentId":1713,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/lib/index.js","layer":"app-pages-browser"},"startTime":1767754692418,"traceId":"2c8d09f5a579ad25"},{"name":"add-entry","duration":4737853,"timestamp":143504837,"id":985,"parentId":975,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767754687683,"traceId":"2c8d09f5a579ad25"},{"name":"make","duration":4740081,"timestamp":143502850,"id":975,"parentId":974,"tags":{},"startTime":1767754687681,"traceId":"2c8d09f5a579ad25"},{"name":"chunk-graph","duration":19959,"timestamp":148313720,"id":1716,"parentId":1715,"tags":{},"startTime":1767754692492,"traceId":"2c8d09f5a579ad25"},{"name":"optimize-modules","duration":41,"timestamp":148333855,"id":1718,"parentId":1715,"tags":{},"startTime":1767754692512,"traceId":"2c8d09f5a579ad25"},{"name":"optimize-chunks","duration":25423,"timestamp":148336707,"id":1720,"parentId":1715,"tags":{},"startTime":1767754692515,"traceId":"2c8d09f5a579ad25"},{"name":"optimize-tree","duration":195,"timestamp":148362256,"id":1721,"parentId":1715,"tags":{},"startTime":1767754692540,"traceId":"2c8d09f5a579ad25"},{"name":"optimize-chunk-modules","duration":32321,"timestamp":148362595,"id":1722,"parentId":1715,"tags":{},"startTime":1767754692541,"traceId":"2c8d09f5a579ad25"},{"name":"optimize","duration":61311,"timestamp":148333777,"id":1717,"parentId":1715,"tags":{},"startTime":1767754692512,"traceId":"2c8d09f5a579ad25"},{"name":"module-hash","duration":29560,"timestamp":148427650,"id":1723,"parentId":1715,"tags":{},"startTime":1767754692606,"traceId":"2c8d09f5a579ad25"},{"name":"code-generation","duration":370461,"timestamp":148457278,"id":1724,"parentId":1715,"tags":{},"startTime":1767754692636,"traceId":"2c8d09f5a579ad25"},{"name":"hash","duration":14199,"timestamp":148833668,"id":1725,"parentId":1715,"tags":{},"startTime":1767754693012,"traceId":"2c8d09f5a579ad25"},{"name":"code-generation-jobs","duration":738,"timestamp":148847860,"id":1726,"parentId":1715,"tags":{},"startTime":1767754693026,"traceId":"2c8d09f5a579ad25"},{"name":"module-assets","duration":1135,"timestamp":148848520,"id":1727,"parentId":1715,"tags":{},"startTime":1767754693027,"traceId":"2c8d09f5a579ad25"},{"name":"create-chunk-assets","duration":28635,"timestamp":148849678,"id":1728,"parentId":1715,"tags":{},"startTime":1767754693028,"traceId":"2c8d09f5a579ad25"},{"name":"NextJsBuildManifest-generateClientManifest","duration":2447,"timestamp":148906175,"id":1730,"parentId":974,"tags":{},"startTime":1767754693084,"traceId":"2c8d09f5a579ad25"},{"name":"NextJsBuildManifest-createassets","duration":5366,"timestamp":148903276,"id":1729,"parentId":974,"tags":{},"startTime":1767754693082,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":129450,"timestamp":148986482,"id":1733,"parentId":1731,"tags":{"name":"static/chunks/main-app-3ee073768a1a6456.js","cache":"MISS"},"startTime":1767754693165,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":128979,"timestamp":148987064,"id":1735,"parentId":1731,"tags":{"name":"static/chunks/pages/_app-56f4e2c3e0cd5b77.js","cache":"MISS"},"startTime":1767754693165,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":128882,"timestamp":148987215,"id":1736,"parentId":1731,"tags":{"name":"static/chunks/pages/_error-6444830a044a065f.js","cache":"MISS"},"startTime":1767754693165,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":129415,"timestamp":148986722,"id":1734,"parentId":1731,"tags":{"name":"static/chunks/app/_not-found/page-1314fe1ff92ee0aa.js","cache":"MISS"},"startTime":1767754693165,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":128822,"timestamp":148987352,"id":1737,"parentId":1731,"tags":{"name":"static/chunks/app/layout-1baeb8f9d4de0f96.js","cache":"MISS"},"startTime":1767754693166,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":118566,"timestamp":149000544,"id":1740,"parentId":1731,"tags":{"name":"static/chunks/app/settings/page-fcd1413e20a94bf7.js","cache":"MISS"},"startTime":1767754693179,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":135039,"timestamp":148987630,"id":1738,"parentId":1731,"tags":{"name":"static/chunks/app/page-45d16b01bae4f054.js","cache":"MISS"},"startTime":1767754693166,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":125266,"timestamp":149001370,"id":1741,"parentId":1731,"tags":{"name":"static/chunks/webpack-9b8a6c078d6e8803.js","cache":"MISS"},"startTime":1767754693180,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":175162,"timestamp":148990077,"id":1739,"parentId":1731,"tags":{"name":"static/chunks/app/project/[id]/page-aea58d3a2a6e528b.js","cache":"MISS"},"startTime":1767754693168,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":181497,"timestamp":149025773,"id":1744,"parentId":1731,"tags":{"name":"static/chunks/992-bf52afd3d0de90b0.js","cache":"MISS"},"startTime":1767754693204,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":306067,"timestamp":148965157,"id":1732,"parentId":1731,"tags":{"name":"static/chunks/main-ff9852398b1f3782.js","cache":"MISS"},"startTime":1767754693143,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":410677,"timestamp":149001677,"id":1742,"parentId":1731,"tags":{"name":"static/chunks/framework-63d70eb4e76697e6.js","cache":"MISS"},"startTime":1767754693180,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":316148,"timestamp":149096291,"id":1747,"parentId":1731,"tags":{"name":"server/middleware-react-loadable-manifest.js","cache":"MISS"},"startTime":1767754693275,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":316044,"timestamp":149096422,"id":1748,"parentId":1731,"tags":{"name":"static/oNlRdQOvyo3lMU4vZQSEf/_ssgManifest.js","cache":"MISS"},"startTime":1767754693275,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":317692,"timestamp":149096480,"id":1749,"parentId":1731,"tags":{"name":"server/middleware-build-manifest.js","cache":"MISS"},"startTime":1767754693275,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":318140,"timestamp":149096536,"id":1750,"parentId":1731,"tags":{"name":"static/oNlRdQOvyo3lMU4vZQSEf/_buildManifest.js","cache":"MISS"},"startTime":1767754693275,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":318176,"timestamp":149096592,"id":1751,"parentId":1731,"tags":{"name":"server/next-font-manifest.js","cache":"MISS"},"startTime":1767754693275,"traceId":"2c8d09f5a579ad25"},{"name":"minify-js","duration":411578,"timestamp":149014841,"id":1743,"parentId":1731,"tags":{"name":"static/chunks/c476d598-52de8ab10fae5dac.js","cache":"MISS"},"startTime":1767754693193,"traceId":"2c8d09f5a579ad25"}]
|
|
18
|
-
[{"name":"minify-js","duration":
|
|
1
|
+
[{"name":"generate-buildid","duration":269,"timestamp":55296433,"id":4,"parentId":1,"tags":{},"startTime":1767951839837,"traceId":"6749762fed06a213"},{"name":"load-custom-routes","duration":448,"timestamp":55296831,"id":5,"parentId":1,"tags":{},"startTime":1767951839838,"traceId":"6749762fed06a213"},{"name":"create-dist-dir","duration":49860,"timestamp":55445201,"id":6,"parentId":1,"tags":{},"startTime":1767951839986,"traceId":"6749762fed06a213"},{"name":"create-pages-mapping","duration":325,"timestamp":55501977,"id":7,"parentId":1,"tags":{},"startTime":1767951840043,"traceId":"6749762fed06a213"},{"name":"collect-app-files","duration":2721,"timestamp":55502345,"id":8,"parentId":1,"tags":{},"startTime":1767951840043,"traceId":"6749762fed06a213"},{"name":"create-app-mapping","duration":1462,"timestamp":55505095,"id":9,"parentId":1,"tags":{},"startTime":1767951840046,"traceId":"6749762fed06a213"},{"name":"create-app-layouts","duration":161,"timestamp":55506594,"id":10,"parentId":1,"tags":{},"startTime":1767951840047,"traceId":"6749762fed06a213"},{"name":"collect-default-files","duration":548,"timestamp":55508434,"id":12,"parentId":1,"tags":{},"startTime":1767951840049,"traceId":"6749762fed06a213"},{"name":"generate-route-types","duration":40171,"timestamp":55507182,"id":11,"parentId":1,"tags":{},"startTime":1767951840048,"traceId":"6749762fed06a213"},{"name":"public-dir-conflict-check","duration":546,"timestamp":55547437,"id":13,"parentId":1,"tags":{},"startTime":1767951840088,"traceId":"6749762fed06a213"},{"name":"generate-routes-manifest","duration":4094,"timestamp":55548200,"id":14,"parentId":1,"tags":{},"startTime":1767951840089,"traceId":"6749762fed06a213"},{"name":"create-entrypoints","duration":19356,"timestamp":56497054,"id":18,"parentId":16,"tags":{},"startTime":1767951841038,"traceId":"6749762fed06a213"},{"name":"generate-webpack-config","duration":114452,"timestamp":56516611,"id":19,"parentId":17,"tags":{},"startTime":1767951841058,"traceId":"6749762fed06a213"},{"name":"next-trace-entrypoint-plugin","duration":3179,"timestamp":56759234,"id":21,"parentId":20,"tags":{},"startTime":1767951841300,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":38764,"timestamp":56884683,"id":35,"parentId":24,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_app.js","layer":"pages-dir-node"},"startTime":1767951841426,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":131845,"timestamp":56887721,"id":36,"parentId":29,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_document.js","layer":"pages-dir-node"},"startTime":1767951841429,"traceId":"6749762fed06a213"},{"name":"build-module","duration":267,"timestamp":57023383,"id":37,"parentId":35,"tags":{"name":"react/jsx-runtime","layer":null},"startTime":1767951841564,"traceId":"6749762fed06a213"},{"name":"build-module","duration":95,"timestamp":57023702,"id":38,"parentId":35,"tags":{"name":"react","layer":null},"startTime":1767951841565,"traceId":"6749762fed06a213"},{"name":"build-module","duration":162707,"timestamp":56883073,"id":34,"parentId":25,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!","layer":"pages-dir-node"},"startTime":1767951841424,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2262,"timestamp":57133507,"id":39,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/get-page-files.js","layer":"pages-dir-node"},"startTime":1767951841674,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3282,"timestamp":57134045,"id":40,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/htmlescape.js","layer":"pages-dir-node"},"startTime":1767951841675,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5772,"timestamp":57134397,"id":41,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/utils.js","layer":"pages-dir-node"},"startTime":1767951841675,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7773,"timestamp":57134574,"id":42,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"pages-dir-node"},"startTime":1767951841675,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9799,"timestamp":57134651,"id":43,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/pretty-bytes.js","layer":"pages-dir-node"},"startTime":1767951841676,"traceId":"6749762fed06a213"},{"name":"build-module","duration":386464,"timestamp":56866162,"id":30,"parentId":23,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2F_not-found%2Fpage&name=app%2F_not-found%2Fpage&pagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767951841407,"traceId":"6749762fed06a213"},{"name":"build-module","duration":378562,"timestamp":56880168,"id":31,"parentId":26,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2Fpage&name=app%2Fpage&pagePath=private-next-app-dir%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767951841421,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6419,"timestamp":57290445,"id":48,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/tracer.js","layer":"pages-dir-node"},"startTime":1767951841831,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6903,"timestamp":57290506,"id":49,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/utils.js","layer":"pages-dir-node"},"startTime":1767951841831,"traceId":"6749762fed06a213"},{"name":"build-module","duration":53,"timestamp":57301598,"id":50,"parentId":30,"tags":{"name":"path","layer":null},"startTime":1767951841842,"traceId":"6749762fed06a213"},{"name":"build-module","duration":32,"timestamp":57301728,"id":51,"parentId":30,"tags":{"name":"next/dist/shared/lib/router/utils/app-paths","layer":null},"startTime":1767951841843,"traceId":"6749762fed06a213"},{"name":"build-module","duration":14,"timestamp":57301774,"id":52,"parentId":30,"tags":{"name":"next/dist/shared/lib/router/utils/is-bot","layer":null},"startTime":1767951841843,"traceId":"6749762fed06a213"},{"name":"build-module-external","duration":12,"timestamp":57301801,"id":53,"parentId":30,"tags":{"name":"next/dist/shared/lib/no-fallback-error.external","layer":null},"startTime":1767951841843,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19293,"timestamp":57289647,"id":44,"parentId":35,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"pages-dir-node"},"startTime":1767951841831,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19255,"timestamp":57290217,"id":46,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":"pages-dir-node"},"startTime":1767951841831,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19913,"timestamp":57290350,"id":47,"parentId":42,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"pages-dir-node"},"startTime":1767951841831,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":14859,"timestamp":57301828,"id":54,"parentId":39,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":"pages-dir-node"},"startTime":1767951841843,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":21260,"timestamp":57301982,"id":55,"parentId":39,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-page-path.js","layer":"pages-dir-node"},"startTime":1767951841843,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":38176,"timestamp":57289888,"id":45,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/constants.js","layer":"pages-dir-node"},"startTime":1767951841831,"traceId":"6749762fed06a213"},{"name":"build-module","duration":550435,"timestamp":56880911,"id":33,"parentId":28,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2Fsettings%2Fpage&name=app%2Fsettings%2Fpage&pagePath=private-next-app-dir%2Fsettings%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fsettings%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767951841422,"traceId":"6749762fed06a213"},{"name":"build-module","duration":576119,"timestamp":56880611,"id":32,"parentId":27,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2Fproject%2F%5Bid%5D%2Fpage&name=app%2Fproject%2F%5Bid%5D%2Fpage&pagePath=private-next-app-dir%2Fproject%2F%5Bid%5D%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fproject%2F%5Bid%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767951841422,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1742,"timestamp":57494503,"id":56,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-kind.js","layer":"pages-dir-node"},"startTime":1767951842035,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2114,"timestamp":57494769,"id":58,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/templates/helpers.js","layer":"pages-dir-node"},"startTime":1767951842036,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2811,"timestamp":57494926,"id":59,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/module.compiled.js","layer":"pages-dir-node"},"startTime":1767951842036,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17123,"timestamp":57494990,"id":60,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/pages-handler.js","layer":"pages-dir-node"},"startTime":1767951842036,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":23547,"timestamp":57495234,"id":62,"parentId":48,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/constants.js","layer":"pages-dir-node"},"startTime":1767951842036,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":824,"timestamp":57541211,"id":88,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/vendored/contexts/html-context.js","layer":"pages-dir-node"},"startTime":1767951842082,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":20447,"timestamp":57541680,"id":95,"parentId":48,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"pages-dir-node"},"startTime":1767951842083,"traceId":"6749762fed06a213"},{"name":"build-module-cjs","duration":21483,"timestamp":57541714,"id":96,"parentId":35,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/cjs/_interop_require_default.cjs","layer":"pages-dir-node"},"startTime":1767951842083,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":45731,"timestamp":57535762,"id":66,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-kind.js","layer":"rsc"},"startTime":1767951842077,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":59894,"timestamp":57536983,"id":67,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1767951842078,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":61831,"timestamp":57537253,"id":68,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1767951842078,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":70146,"timestamp":57537411,"id":69,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/render-result.js","layer":"rsc"},"startTime":1767951842078,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":71609,"timestamp":57537531,"id":70,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/send-payload.js","layer":"rsc"},"startTime":1767951842078,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":72341,"timestamp":57537646,"id":71,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request-meta.js","layer":"rsc"},"startTime":1767951842079,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":78930,"timestamp":57537848,"id":72,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/streaming-metadata.js","layer":"rsc"},"startTime":1767951842079,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":79650,"timestamp":57538090,"id":73,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/server-action-request-meta.js","layer":"rsc"},"startTime":1767951842079,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":86941,"timestamp":57538347,"id":74,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/fallback.js","layer":"rsc"},"startTime":1767951842079,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":98449,"timestamp":57538591,"id":75,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1767951842079,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":114742,"timestamp":57538806,"id":76,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1767951842080,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":114558,"timestamp":57539501,"id":77,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/instrumentation/utils.js","layer":"rsc"},"startTime":1767951842080,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":114670,"timestamp":57539774,"id":78,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/interop-default.js","layer":"rsc"},"startTime":1767951842081,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":114863,"timestamp":57540061,"id":79,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/strip-flight-headers.js","layer":"rsc"},"startTime":1767951842081,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":117654,"timestamp":57540487,"id":81,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/action-utils.js","layer":"rsc"},"startTime":1767951842081,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":120749,"timestamp":57540595,"id":82,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1767951842081,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":122646,"timestamp":57540696,"id":83,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/node.js","layer":"rsc"},"startTime":1767951842082,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":123328,"timestamp":57540795,"id":84,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/fallback-params.js","layer":"rsc"},"startTime":1767951842082,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":123887,"timestamp":57540889,"id":85,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/experimental/ppr.js","layer":"rsc"},"startTime":1767951842082,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":124494,"timestamp":57540984,"id":86,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/encoded-tags.js","layer":"rsc"},"startTime":1767951842082,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":129448,"timestamp":57541108,"id":87,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/index.js","layer":"rsc"},"startTime":1767951842082,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":181263,"timestamp":57495058,"id":61,"parentId":48,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"pages-dir-node"},"startTime":1767951842036,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":181426,"timestamp":57495299,"id":63,"parentId":54,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":"pages-dir-node"},"startTime":1767951842036,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":181634,"timestamp":57495404,"id":64,"parentId":45,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":"pages-dir-node"},"startTime":1767951842036,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":181894,"timestamp":57495490,"id":65,"parentId":55,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"pages-dir-node"},"startTime":1767951842036,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":185443,"timestamp":57494614,"id":57,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_error.js","layer":"pages-dir-node"},"startTime":1767951842036,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":140014,"timestamp":57541259,"id":89,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-headers.js","layer":"rsc"},"startTime":1767951842082,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":140564,"timestamp":57541355,"id":90,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"rsc"},"startTime":1767951842082,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":142595,"timestamp":57541465,"id":91,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js","layer":"rsc"},"startTime":1767951842082,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":143153,"timestamp":57541525,"id":92,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/not-found.js","layer":"rsc"},"startTime":1767951842082,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":144344,"timestamp":57541576,"id":93,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/forbidden.js","layer":"rsc"},"startTime":1767951842082,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":144866,"timestamp":57541629,"id":94,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/unauthorized.js","layer":"rsc"},"startTime":1767951842083,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":148011,"timestamp":57540339,"id":80,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/encryption-utils.js","layer":"rsc"},"startTime":1767951842081,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":919721,"timestamp":56768919,"id":24,"parentId":22,"tags":{"request":"next/dist/pages/_app"},"startTime":1767951841310,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":73,"timestamp":57733485,"id":97,"parentId":59,"tags":{"name":"next/dist/compiled/next-server/pages.runtime.prod.js","layer":null},"startTime":1767951842274,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8802,"timestamp":57733602,"id":98,"parentId":60,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request-meta.js","layer":"pages-dir-node"},"startTime":1767951842275,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16516,"timestamp":57733715,"id":99,"parentId":60,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/constants.js","layer":"pages-dir-node"},"startTime":1767951842275,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17806,"timestamp":57733762,"id":100,"parentId":60,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/send-payload.js","layer":"pages-dir-node"},"startTime":1767951842275,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":23788,"timestamp":57733798,"id":101,"parentId":60,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/render-result.js","layer":"pages-dir-node"},"startTime":1767951842275,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":24119,"timestamp":57733827,"id":102,"parentId":60,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/interop-default.js","layer":"pages-dir-node"},"startTime":1767951842275,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":24433,"timestamp":57733857,"id":103,"parentId":60,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/instrumentation/utils.js","layer":"pages-dir-node"},"startTime":1767951842275,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":57,"timestamp":57768527,"id":107,"parentId":76,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.prod.js","layer":null},"startTime":1767951842309,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1951,"timestamp":57769159,"id":111,"parentId":60,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/index.js","layer":"pages-dir-node"},"startTime":1767951842310,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":39852,"timestamp":57768607,"id":108,"parentId":67,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1767951842310,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":86637,"timestamp":57733887,"id":104,"parentId":60,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"pages-dir-node"},"startTime":1767951842275,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":87390,"timestamp":57734028,"id":105,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/layout.tsx","layer":"rsc"},"startTime":1767951842275,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":89118,"timestamp":57735080,"id":106,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"rsc"},"startTime":1767951842276,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":64759,"timestamp":57769051,"id":110,"parentId":67,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"rsc"},"startTime":1767951842310,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":66863,"timestamp":57768896,"id":109,"parentId":70,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"rsc"},"startTime":1767951842310,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6486,"timestamp":57846831,"id":112,"parentId":54,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"pages-dir-node"},"startTime":1767951842388,"traceId":"6749762fed06a213"},{"name":"build-module-external","duration":60,"timestamp":57867651,"id":113,"parentId":60,"tags":{"name":"../../../shared/lib/no-fallback-error.external","layer":null},"startTime":1767951842409,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5416,"timestamp":57867813,"id":114,"parentId":60,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/redirect-status.js","layer":"pages-dir-node"},"startTime":1767951842409,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5556,"timestamp":57868271,"id":116,"parentId":100,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/cache-control.js","layer":"pages-dir-node"},"startTime":1767951842409,"traceId":"6749762fed06a213"}]
|
|
2
|
+
[{"name":"build-module-js","duration":12526,"timestamp":58349180,"id":216,"parentId":159,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"rsc"},"startTime":1767951842890,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9643,"timestamp":58352731,"id":218,"parentId":208,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"rsc"},"startTime":1767951842894,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":15438,"timestamp":58365163,"id":219,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolve-metadata.js","layer":"rsc"},"startTime":1767951842906,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16130,"timestamp":58365410,"id":220,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-constants.js","layer":"rsc"},"startTime":1767951842906,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17072,"timestamp":58365615,"id":221,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/pathname.js","layer":"rsc"},"startTime":1767951842907,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":27469,"timestamp":58365812,"id":222,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"rsc"},"startTime":1767951842907,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":28451,"timestamp":58365928,"id":223,"parentId":158,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js","layer":"rsc"},"startTime":1767951842907,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":28862,"timestamp":58366031,"id":224,"parentId":105,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"rsc"},"startTime":1767951842907,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6298,"timestamp":58405564,"id":226,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/basic.js","layer":"rsc"},"startTime":1767951842946,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12364,"timestamp":58405339,"id":225,"parentId":217,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"pages-dir-node"},"startTime":1767951842946,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4512,"timestamp":58436711,"id":228,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/alternate.js","layer":"rsc"},"startTime":1767951842978,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7407,"timestamp":58436948,"id":229,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/opengraph.js","layer":"rsc"},"startTime":1767951842978,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8172,"timestamp":58437219,"id":230,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icons.js","layer":"rsc"},"startTime":1767951842978,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9372,"timestamp":58437436,"id":231,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/meta.js","layer":"rsc"},"startTime":1767951842978,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9388,"timestamp":58437774,"id":233,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/router-utils/is-postpone.js","layer":"rsc"},"startTime":1767951842979,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12038,"timestamp":58436560,"id":227,"parentId":225,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"pages-dir-node"},"startTime":1767951842977,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11313,"timestamp":58437641,"id":232,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js","layer":"rsc"},"startTime":1767951842979,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":1681045,"timestamp":56769022,"id":29,"parentId":22,"tags":{"request":"next/dist/pages/_document"},"startTime":1767951841310,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":746,"timestamp":58454072,"id":234,"parentId":150,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/client.node.js","layer":"rsc"},"startTime":1767951842995,"traceId":"6749762fed06a213"},{"name":"build-module-cjs","duration":1229,"timestamp":58458490,"id":235,"parentId":121,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs","layer":"pages-dir-node"},"startTime":1767951842999,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2599,"timestamp":58463619,"id":236,"parentId":137,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/vendored/contexts/amp-context.js","layer":"pages-dir-node"},"startTime":1767951843005,"traceId":"6749762fed06a213"},{"name":"build-module-css","duration":2305,"timestamp":58464147,"id":239,"parentId":105,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":"rsc"},"startTime":1767951843005,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5271,"timestamp":58463726,"id":237,"parentId":187,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/headers.js","layer":"rsc"},"startTime":1767951843005,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7267,"timestamp":58463977,"id":238,"parentId":164,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/styles/access-error-styles.js","layer":"rsc"},"startTime":1767951843005,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":209,"timestamp":58471480,"id":240,"parentId":137,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/vendored/contexts/head-manager-context.js","layer":"pages-dir-node"},"startTime":1767951843012,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9120,"timestamp":58473259,"id":241,"parentId":193,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1767951843014,"traceId":"6749762fed06a213"},{"name":"build-module-external","duration":33,"timestamp":58483242,"id":242,"parentId":193,"tags":{"name":"../app-render/after-task-async-storage.external","layer":null},"startTime":1767951843024,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3236,"timestamp":58485487,"id":247,"parentId":205,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/utils.js","layer":"pages-dir-node"},"startTime":1767951843026,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5467,"timestamp":58484920,"id":244,"parentId":202,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/error-telemetry-utils.js","layer":"rsc"},"startTime":1767951843026,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5496,"timestamp":58485306,"id":246,"parentId":202,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/react-large-shell-error.js","layer":"rsc"},"startTime":1767951843026,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7059,"timestamp":58485538,"id":248,"parentId":206,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/utils.js","layer":"rsc"},"startTime":1767951843026,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":14355,"timestamp":58485726,"id":249,"parentId":192,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"rsc"},"startTime":1767951843027,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":18112,"timestamp":58485179,"id":245,"parentId":202,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"rsc"},"startTime":1767951843026,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":896,"timestamp":58503722,"id":250,"parentId":205,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/helpers.js","layer":"pages-dir-node"},"startTime":1767951843045,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4750,"timestamp":58503806,"id":251,"parentId":206,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/helpers.js","layer":"rsc"},"startTime":1767951843045,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":26038,"timestamp":58484661,"id":243,"parentId":202,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/format-server-error.js","layer":"rsc"},"startTime":1767951843026,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1690,"timestamp":58513238,"id":252,"parentId":205,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/request.js","layer":"pages-dir-node"},"startTime":1767951843054,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3078,"timestamp":58513314,"id":253,"parentId":206,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/request.js","layer":"rsc"},"startTime":1767951843054,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":105748,"timestamp":58526171,"id":254,"parentId":219,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/interop-default.js","layer":"rsc"},"startTime":1767951843067,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":106293,"timestamp":58526443,"id":255,"parentId":219,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/default-metadata.js","layer":"rsc"},"startTime":1767951843067,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":107121,"timestamp":58526651,"id":256,"parentId":219,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/app-dir-module.js","layer":"rsc"},"startTime":1767951843068,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1432,"timestamp":58635404,"id":263,"parentId":191,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js","layer":"rsc"},"startTime":1767951843176,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1918,"timestamp":58635710,"id":264,"parentId":219,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/utils.js","layer":"rsc"},"startTime":1767951843177,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1794,"timestamp":58644897,"id":265,"parentId":223,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/route-pattern-normalizer.js","layer":"rsc"},"startTime":1767951843186,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2583,"timestamp":58647019,"id":266,"parentId":226,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/constants.js","layer":"rsc"},"startTime":1767951843188,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7661,"timestamp":58647251,"id":267,"parentId":219,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-opengraph.js","layer":"rsc"},"startTime":1767951843188,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8204,"timestamp":58647445,"id":268,"parentId":219,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-title.js","layer":"rsc"},"startTime":1767951843188,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":14132,"timestamp":58647661,"id":269,"parentId":219,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-basics.js","layer":"rsc"},"startTime":1767951843189,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":14752,"timestamp":58647860,"id":270,"parentId":219,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-icons.js","layer":"rsc"},"startTime":1767951843189,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19238,"timestamp":58648074,"id":271,"parentId":219,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1767951843189,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1171,"timestamp":58703597,"id":272,"parentId":231,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/non-nullable.js","layer":"rsc"},"startTime":1767951843245,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2364,"timestamp":58731110,"id":274,"parentId":187,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/cookie/index.js","layer":"rsc"},"startTime":1767951843272,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10461,"timestamp":58726041,"id":273,"parentId":230,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js","layer":"rsc"},"startTime":1767951843267,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":108838,"timestamp":58739832,"id":275,"parentId":234,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.node.production.js","layer":"rsc"},"startTime":1767951843281,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5914,"timestamp":58858915,"id":278,"parentId":252,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/next-url.js","layer":"pages-dir-node"},"startTime":1767951843400,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6890,"timestamp":58860080,"id":280,"parentId":252,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/error.js","layer":"pages-dir-node"},"startTime":1767951843401,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11113,"timestamp":58858442,"id":276,"parentId":202,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/string-hash/index.js","layer":"rsc"},"startTime":1767951843399,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":14393,"timestamp":58858991,"id":279,"parentId":253,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/next-url.js","layer":"rsc"},"startTime":1767951843400,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":15054,"timestamp":58860158,"id":281,"parentId":253,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/error.js","layer":"rsc"},"startTime":1767951843401,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19279,"timestamp":58858776,"id":277,"parentId":245,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"rsc"},"startTime":1767951843400,"traceId":"6749762fed06a213"},{"name":"font-loader","duration":258232,"timestamp":58627586,"id":262,"parentId":261,"tags":{},"startTime":1767951843168,"traceId":"6749762fed06a213"},{"name":"font-loader","duration":312431,"timestamp":58599506,"id":260,"parentId":259,"tags":{},"startTime":1767951843140,"traceId":"6749762fed06a213"},{"name":"build-module","duration":36,"timestamp":58912042,"id":282,"parentId":275,"tags":{"name":"util","layer":null},"startTime":1767951843453,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10654,"timestamp":58912103,"id":283,"parentId":252,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/cookies.js","layer":"pages-dir-node"},"startTime":1767951843453,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11388,"timestamp":58912192,"id":284,"parentId":253,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/cookies.js","layer":"rsc"},"startTime":1767951843453,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8078,"timestamp":58927468,"id":285,"parentId":223,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/path-to-regexp/index.js","layer":"rsc"},"startTime":1767951843468,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13392,"timestamp":58927673,"id":286,"parentId":271,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1767951843469,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":14139,"timestamp":58927790,"id":287,"parentId":267,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1767951843469,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2323,"timestamp":58943333,"id":288,"parentId":271,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/lru-cache.js","layer":"rsc"},"startTime":1767951843484,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3804,"timestamp":58943591,"id":289,"parentId":267,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-url.js","layer":"rsc"},"startTime":1767951843484,"traceId":"6749762fed06a213"},{"name":"postcss","duration":5248,"timestamp":59257478,"id":290,"parentId":261,"tags":{},"startTime":1767951843798,"traceId":"6749762fed06a213"},{"name":"postcss","duration":2573,"timestamp":59260164,"id":291,"parentId":259,"tags":{},"startTime":1767951843801,"traceId":"6749762fed06a213"},{"name":"next-font-loader","duration":635932,"timestamp":58627530,"id":261,"parentId":258,"tags":{},"startTime":1767951843168,"traceId":"6749762fed06a213"},{"name":"next-font-loader","duration":733719,"timestamp":58529751,"id":259,"parentId":257,"tags":{},"startTime":1767951843071,"traceId":"6749762fed06a213"},{"name":"css-loader","duration":37884,"timestamp":59262960,"id":292,"parentId":258,"tags":{"astUsed":"true"},"startTime":1767951843804,"traceId":"6749762fed06a213"},{"name":"css-loader","duration":37414,"timestamp":59263443,"id":293,"parentId":257,"tags":{"astUsed":"true"},"startTime":1767951843804,"traceId":"6749762fed06a213"},{"name":"build-module","duration":771923,"timestamp":58529482,"id":258,"parentId":105,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}","layer":"rsc"},"startTime":1767951843070,"traceId":"6749762fed06a213"},{"name":"build-module","duration":774834,"timestamp":58526831,"id":257,"parentId":105,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}","layer":"rsc"},"startTime":1767951843068,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":835,"timestamp":59313962,"id":294,"parentId":167,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-dom.js","layer":"rsc"},"startTime":1767951843855,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10266,"timestamp":59330930,"id":296,"parentId":279,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-hostname.js","layer":"rsc"},"startTime":1767951843872,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11258,"timestamp":59330761,"id":295,"parentId":278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-hostname.js","layer":"pages-dir-node"},"startTime":1767951843872,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":14857,"timestamp":59331192,"id":298,"parentId":279,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":"rsc"},"startTime":1767951843872,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":15919,"timestamp":59331113,"id":297,"parentId":278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":"pages-dir-node"},"startTime":1767951843872,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17410,"timestamp":59331287,"id":299,"parentId":278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":"pages-dir-node"},"startTime":1767951843872,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":22220,"timestamp":59331358,"id":300,"parentId":279,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":"rsc"},"startTime":1767951843872,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5701,"timestamp":59374519,"id":301,"parentId":278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","layer":"pages-dir-node"},"startTime":1767951843915,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6519,"timestamp":59374712,"id":302,"parentId":279,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","layer":"rsc"},"startTime":1767951843916,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3089,"timestamp":59378899,"id":303,"parentId":298,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"rsc"},"startTime":1767951843920,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4795,"timestamp":59379083,"id":304,"parentId":299,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":"pages-dir-node"},"startTime":1767951843920,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":857,"timestamp":59385537,"id":305,"parentId":219,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/server-only/empty.js","layer":"rsc"},"startTime":1767951843926,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1218,"timestamp":59385772,"id":306,"parentId":289,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/isomorphic/path.js","layer":"rsc"},"startTime":1767951843927,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2081,"timestamp":59389196,"id":308,"parentId":300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":"rsc"},"startTime":1767951843930,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2410,"timestamp":59389354,"id":310,"parentId":297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":"pages-dir-node"},"startTime":1767951843930,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2942,"timestamp":59389289,"id":309,"parentId":298,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":"rsc"},"startTime":1767951843930,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3432,"timestamp":59389389,"id":311,"parentId":298,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":"rsc"},"startTime":1767951843930,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4832,"timestamp":59389434,"id":312,"parentId":297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":"pages-dir-node"},"startTime":1767951843930,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5805,"timestamp":59389099,"id":307,"parentId":299,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":"pages-dir-node"},"startTime":1767951843930,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8093,"timestamp":59406350,"id":313,"parentId":283,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js","layer":"pages-dir-node"},"startTime":1767951843947,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13219,"timestamp":59406431,"id":314,"parentId":284,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js","layer":"rsc"},"startTime":1767951843947,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":2650853,"timestamp":56768954,"id":25,"parentId":22,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1767951841310,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":2651270,"timestamp":56768548,"id":23,"parentId":22,"tags":{"request":"next-app-loader?page=%2F_not-found%2Fpage&name=app%2F_not-found%2Fpage&pagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767951841309,"traceId":"6749762fed06a213"}]
|
|
3
|
+
[{"name":"add-entry","duration":2650849,"timestamp":56768973,"id":26,"parentId":22,"tags":{"request":"next-app-loader?page=%2Fpage&name=app%2Fpage&pagePath=private-next-app-dir%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767951841310,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":2650828,"timestamp":56768998,"id":28,"parentId":22,"tags":{"request":"next-app-loader?page=%2Fsettings%2Fpage&name=app%2Fsettings%2Fpage&pagePath=private-next-app-dir%2Fsettings%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fsettings%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767951841310,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":2650841,"timestamp":56768987,"id":27,"parentId":22,"tags":{"request":"next-app-loader?page=%2Fproject%2F%5Bid%5D%2Fpage&name=app%2Fproject%2F%5Bid%5D%2Fpage&pagePath=private-next-app-dir%2Fproject%2F%5Bid%5D%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fproject%2F%5Bid%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767951841310,"traceId":"6749762fed06a213"},{"name":"build-module","duration":1619,"timestamp":59515654,"id":337,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767951844057,"traceId":"6749762fed06a213"},{"name":"build-module","duration":322,"timestamp":59517308,"id":338,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767951844058,"traceId":"6749762fed06a213"},{"name":"build-module","duration":3058,"timestamp":59517649,"id":339,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767951844059,"traceId":"6749762fed06a213"},{"name":"build-module","duration":709,"timestamp":59520731,"id":340,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767951844062,"traceId":"6749762fed06a213"},{"name":"build-module","duration":269,"timestamp":59521461,"id":341,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767951844062,"traceId":"6749762fed06a213"},{"name":"build-module","duration":249,"timestamp":59521749,"id":342,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767951844063,"traceId":"6749762fed06a213"},{"name":"build-module","duration":249,"timestamp":59522032,"id":343,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767951844063,"traceId":"6749762fed06a213"},{"name":"build-module","duration":255,"timestamp":59522299,"id":344,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767951844063,"traceId":"6749762fed06a213"},{"name":"build-module","duration":363,"timestamp":59522571,"id":345,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767951844063,"traceId":"6749762fed06a213"},{"name":"build-module","duration":288,"timestamp":59522951,"id":346,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767951844064,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":9680,"timestamp":59537821,"id":347,"parentId":341,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"ssr"},"startTime":1767951844079,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":9073,"timestamp":59539267,"id":349,"parentId":343,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"ssr"},"startTime":1767951844080,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":11667,"timestamp":59539070,"id":348,"parentId":345,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"ssr"},"startTime":1767951844080,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":12412,"timestamp":59540174,"id":351,"parentId":337,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"ssr"},"startTime":1767951844081,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12823,"timestamp":59540439,"id":353,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js","layer":"ssr"},"startTime":1767951844081,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13798,"timestamp":59540351,"id":352,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1767951844081,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":15733,"timestamp":59539436,"id":350,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js","layer":"ssr"},"startTime":1767951844080,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":39479,"timestamp":59542133,"id":357,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js","layer":"ssr"},"startTime":1767951844083,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":40230,"timestamp":59542234,"id":358,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js","layer":"ssr"},"startTime":1767951844083,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":41346,"timestamp":59541893,"id":356,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js","layer":"ssr"},"startTime":1767951844083,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":43336,"timestamp":59540583,"id":355,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1767951844081,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":48770,"timestamp":59540513,"id":354,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1767951844081,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10575,"timestamp":59592268,"id":359,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js","layer":"ssr"},"startTime":1767951844133,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5611,"timestamp":59603146,"id":361,"parentId":353,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/params.js","layer":"ssr"},"startTime":1767951844144,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9308,"timestamp":59603334,"id":362,"parentId":352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/search-params.js","layer":"ssr"},"startTime":1767951844144,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11499,"timestamp":59602980,"id":360,"parentId":353,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"ssr"},"startTime":1767951844144,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3255,"timestamp":59618703,"id":363,"parentId":356,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-constants.js","layer":"ssr"},"startTime":1767951844160,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19349,"timestamp":59619047,"id":365,"parentId":357,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1767951844160,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19894,"timestamp":59619124,"id":366,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1767951844160,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":21003,"timestamp":59618934,"id":364,"parentId":357,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"ssr"},"startTime":1767951844160,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2849,"timestamp":59651320,"id":367,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/dynamic-rendering-utils.js","layer":"ssr"},"startTime":1767951844192,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3412,"timestamp":59651565,"id":368,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/create-deduped-by-callsite-server-error-logger.js","layer":"ssr"},"startTime":1767951844192,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2977,"timestamp":59652325,"id":372,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1767951844193,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4923,"timestamp":59652243,"id":371,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/reflect-utils.js","layer":"ssr"},"startTime":1767951844193,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8805,"timestamp":59651941,"id":370,"parentId":362,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/utils.js","layer":"ssr"},"startTime":1767951844193,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11047,"timestamp":59657517,"id":374,"parentId":366,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1767951844198,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11764,"timestamp":59657398,"id":373,"parentId":366,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1767951844198,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":21389,"timestamp":59651766,"id":369,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1767951844193,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5097,"timestamp":59694481,"id":376,"parentId":369,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/scheduler.js","layer":"ssr"},"startTime":1767951844235,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11347,"timestamp":59688976,"id":375,"parentId":370,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1767951844230,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6963,"timestamp":59694753,"id":377,"parentId":369,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1767951844236,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10658,"timestamp":59694871,"id":378,"parentId":369,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1767951844236,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11085,"timestamp":59694993,"id":379,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1767951844236,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11422,"timestamp":59695193,"id":381,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1767951844236,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12462,"timestamp":59695271,"id":382,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1767951844236,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13264,"timestamp":59695343,"id":383,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/use-action-queue.js","layer":"ssr"},"startTime":1767951844236,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13784,"timestamp":59695486,"id":385,"parentId":350,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/handle-isr-error.js","layer":"ssr"},"startTime":1767951844236,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":15580,"timestamp":59695415,"id":384,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/bfcache.js","layer":"ssr"},"startTime":1767951844236,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16143,"timestamp":59695554,"id":386,"parentId":357,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation-untracked.js","layer":"ssr"},"startTime":1767951844236,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16902,"timestamp":59696826,"id":387,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js","layer":"ssr"},"startTime":1767951844238,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":24739,"timestamp":59695110,"id":380,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1767951844236,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4961,"timestamp":59742710,"id":390,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js","layer":"ssr"},"startTime":1767951844284,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5685,"timestamp":59742872,"id":391,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js","layer":"ssr"},"startTime":1767951844284,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8377,"timestamp":59743042,"id":392,"parentId":355,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1767951844284,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7936,"timestamp":59743808,"id":393,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1767951844285,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9490,"timestamp":59743985,"id":394,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1767951844285,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11628,"timestamp":59744088,"id":395,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1767951844285,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13429,"timestamp":59742629,"id":389,"parentId":383,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"ssr"},"startTime":1767951844284,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":14334,"timestamp":59742469,"id":388,"parentId":382,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"ssr"},"startTime":1767951844283,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5666,"timestamp":59758234,"id":396,"parentId":380,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1767951844299,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6148,"timestamp":59758376,"id":397,"parentId":380,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1767951844299,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1004,"timestamp":59771399,"id":400,"parentId":390,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1767951844312,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2411,"timestamp":59771243,"id":398,"parentId":388,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1767951844312,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3960,"timestamp":59771349,"id":399,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1767951844312,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2976,"timestamp":59773756,"id":401,"parentId":397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"ssr"},"startTime":1767951844315,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4372,"timestamp":59773901,"id":402,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"ssr"},"startTime":1767951844315,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4959,"timestamp":59773952,"id":403,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"ssr"},"startTime":1767951844315,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4274,"timestamp":59783712,"id":404,"parentId":403,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"ssr"},"startTime":1767951844325,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5779,"timestamp":59783841,"id":405,"parentId":382,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1767951844325,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6902,"timestamp":59783939,"id":406,"parentId":382,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1767951844325,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1283,"timestamp":59797965,"id":407,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-dom.js","layer":"ssr"},"startTime":1767951844339,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3181,"timestamp":59798184,"id":409,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1767951844339,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6716,"timestamp":59798231,"id":410,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-find-source-map-url.js","layer":"ssr"},"startTime":1767951844339,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7837,"timestamp":59798268,"id":411,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1767951844339,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8383,"timestamp":59798306,"id":412,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-build-id.js","layer":"ssr"},"startTime":1767951844339,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9139,"timestamp":59798377,"id":414,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/set-cache-busting-search-param.js","layer":"ssr"},"startTime":1767951844339,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12371,"timestamp":59798126,"id":408,"parentId":380,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/nav-failure-handler.js","layer":"ssr"},"startTime":1767951844339,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13553,"timestamp":59798344,"id":413,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-params.js","layer":"ssr"},"startTime":1767951844339,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":2677,"timestamp":59815511,"id":416,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/Header.tsx","layer":"ssr"},"startTime":1767951844356,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3954,"timestamp":59821738,"id":417,"parentId":413,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js","layer":"ssr"},"startTime":1767951844363,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":8632,"timestamp":59825840,"id":418,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectList.tsx","layer":"ssr"},"startTime":1767951844367,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":8858,"timestamp":59826317,"id":420,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/button.tsx","layer":"ssr"},"startTime":1767951844367,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":9026,"timestamp":59826487,"id":421,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/input.tsx","layer":"ssr"},"startTime":1767951844367,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":11433,"timestamp":59826108,"id":419,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectModal.tsx","layer":"ssr"},"startTime":1767951844367,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":777,"timestamp":59843819,"id":423,"parentId":355,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js","layer":"ssr"},"startTime":1767951844385,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":29545,"timestamp":59815304,"id":415,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1767951844356,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":10904,"timestamp":59843597,"id":422,"parentId":349,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/workspace/WorkspaceLayout.tsx","layer":"ssr"},"startTime":1767951844384,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":8643,"timestamp":59859945,"id":425,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/api.ts","layer":"ssr"},"startTime":1767951844401,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":9676,"timestamp":59859795,"id":424,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useProjectStore.ts","layer":"ssr"},"startTime":1767951844401,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":631,"timestamp":59888279,"id":426,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-server-dom-webpack-client.js","layer":"ssr"},"startTime":1767951844429,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4730,"timestamp":59896667,"id":428,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1767951844438,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5857,"timestamp":59896526,"id":427,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1767951844437,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16206,"timestamp":59896821,"id":430,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"ssr"},"startTime":1767951844438,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17021,"timestamp":59896757,"id":429,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unrecognized-action-error.js","layer":"ssr"},"startTime":1767951844438,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":794,"timestamp":59917048,"id":431,"parentId":386,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js","layer":"ssr"},"startTime":1767951844458,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2326,"timestamp":59917279,"id":433,"parentId":414,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/cache-busting-search-param.js","layer":"ssr"},"startTime":1767951844458,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2729,"timestamp":59917214,"id":432,"parentId":408,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"ssr"},"startTime":1767951844458,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":4352,"timestamp":59921595,"id":434,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/index.ts","layer":"ssr"},"startTime":1767951844462,"traceId":"6749762fed06a213"}]
|
|
4
|
+
[{"name":"build-module-js","duration":8040,"timestamp":57868531,"id":118,"parentId":111,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/utils.js","layer":"pages-dir-node"},"startTime":1767951842409,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10028,"timestamp":57867959,"id":115,"parentId":70,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/cache-control.js","layer":"rsc"},"startTime":1767951842409,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13590,"timestamp":57868328,"id":117,"parentId":87,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/utils.js","layer":"rsc"},"startTime":1767951842409,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17796,"timestamp":57869363,"id":120,"parentId":72,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"rsc"},"startTime":1767951842410,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19194,"timestamp":57869528,"id":121,"parentId":60,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"pages-dir-node"},"startTime":1767951842410,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":22229,"timestamp":57869600,"id":122,"parentId":60,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"pages-dir-node"},"startTime":1767951842410,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":23828,"timestamp":57868573,"id":119,"parentId":60,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-data-path.js","layer":"pages-dir-node"},"startTime":1767951842409,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":23156,"timestamp":57869655,"id":123,"parentId":60,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"pages-dir-node"},"startTime":1767951842411,"traceId":"6749762fed06a213"},{"name":"build-module-external","duration":66,"timestamp":57935647,"id":124,"parentId":81,"tags":{"name":"./work-async-storage.external","layer":null},"startTime":1767951842477,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2741,"timestamp":57938142,"id":126,"parentId":101,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/pipe-readable.js","layer":"pages-dir-node"},"startTime":1767951842479,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3791,"timestamp":57938379,"id":128,"parentId":111,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/scheduler.js","layer":"pages-dir-node"},"startTime":1767951842479,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4422,"timestamp":57938506,"id":130,"parentId":111,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/batcher.js","layer":"pages-dir-node"},"startTime":1767951842479,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":14117,"timestamp":57938625,"id":132,"parentId":101,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js","layer":"pages-dir-node"},"startTime":1767951842480,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":14753,"timestamp":57938928,"id":136,"parentId":100,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/etag.js","layer":"pages-dir-node"},"startTime":1767951842480,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":21902,"timestamp":57935742,"id":125,"parentId":69,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/pipe-readable.js","layer":"rsc"},"startTime":1767951842477,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":20297,"timestamp":57938233,"id":127,"parentId":87,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/scheduler.js","layer":"rsc"},"startTime":1767951842479,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":26356,"timestamp":57938407,"id":129,"parentId":87,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/batcher.js","layer":"rsc"},"startTime":1767951842479,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":33894,"timestamp":57938531,"id":131,"parentId":69,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js","layer":"rsc"},"startTime":1767951842479,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":34502,"timestamp":57938766,"id":135,"parentId":70,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/etag.js","layer":"rsc"},"startTime":1767951842480,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":36829,"timestamp":57938644,"id":133,"parentId":69,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"rsc"},"startTime":1767951842480,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":37137,"timestamp":57938702,"id":134,"parentId":101,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"pages-dir-node"},"startTime":1767951842480,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":41835,"timestamp":57938980,"id":137,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"pages-dir-node"},"startTime":1767951842480,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":42160,"timestamp":57939076,"id":138,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1767951842480,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":42418,"timestamp":57939183,"id":139,"parentId":60,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"pages-dir-node"},"startTime":1767951842480,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":788,"timestamp":58020449,"id":140,"parentId":132,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/encoded-tags.js","layer":"pages-dir-node"},"startTime":1767951842561,"traceId":"6749762fed06a213"},{"name":"build-module-external","duration":41,"timestamp":58022796,"id":141,"parentId":82,"tags":{"name":"./work-unit-async-storage.external","layer":null},"startTime":1767951842564,"traceId":"6749762fed06a213"},{"name":"build-module-external","duration":10,"timestamp":58022856,"id":142,"parentId":82,"tags":{"name":"../app-render/action-async-storage.external","layer":null},"startTime":1767951842564,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8099,"timestamp":58023221,"id":145,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/search-params.js","layer":"rsc"},"startTime":1767951842564,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12297,"timestamp":58023581,"id":147,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/params.js","layer":"rsc"},"startTime":1767951842564,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19827,"timestamp":58023883,"id":149,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1767951842565,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":22116,"timestamp":58024083,"id":150,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/collect-segment-data.js","layer":"rsc"},"startTime":1767951842565,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":27273,"timestamp":58022878,"id":143,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1767951842564,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":27437,"timestamp":58023093,"id":144,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js","layer":"rsc"},"startTime":1767951842564,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":27417,"timestamp":58023459,"id":146,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1767951842564,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":27948,"timestamp":58023770,"id":148,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1767951842565,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1304,"timestamp":58083262,"id":154,"parentId":111,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/types.js","layer":"pages-dir-node"},"startTime":1767951842624,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4072,"timestamp":58082762,"id":152,"parentId":83,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/index.js","layer":"rsc"},"startTime":1767951842624,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4341,"timestamp":58083054,"id":153,"parentId":87,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/types.js","layer":"rsc"},"startTime":1767951842624,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":8820,"timestamp":58079210,"id":151,"parentId":33,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"rsc"},"startTime":1767951842620,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5670,"timestamp":58083420,"id":156,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"rsc"},"startTime":1767951842624,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6041,"timestamp":58083512,"id":157,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":"rsc"},"startTime":1767951842624,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11096,"timestamp":58083677,"id":159,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"rsc"},"startTime":1767951842625,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11503,"timestamp":58083752,"id":160,"parentId":119,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"pages-dir-node"},"startTime":1767951842625,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13265,"timestamp":58083598,"id":158,"parentId":84,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"rsc"},"startTime":1767951842624,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16049,"timestamp":58083314,"id":155,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"rsc"},"startTime":1767951842624,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9087,"timestamp":58116747,"id":165,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/metadata.js","layer":"rsc"},"startTime":1767951842658,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9672,"timestamp":58117092,"id":167,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1767951842658,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10140,"timestamp":58117261,"id":168,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1767951842658,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12819,"timestamp":58116482,"id":162,"parentId":159,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"rsc"},"startTime":1767951842657,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13107,"timestamp":58116589,"id":163,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js","layer":"rsc"},"startTime":1767951842657,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13966,"timestamp":58116673,"id":164,"parentId":92,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-fallback.js","layer":"rsc"},"startTime":1767951842658,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":15075,"timestamp":58116286,"id":161,"parentId":155,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"rsc"},"startTime":1767951842657,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":21581,"timestamp":58116909,"id":166,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js","layer":"rsc"},"startTime":1767951842658,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3829,"timestamp":58156407,"id":169,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1767951842697,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9095,"timestamp":58156727,"id":170,"parentId":112,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"pages-dir-node"},"startTime":1767951842698,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13836,"timestamp":58156834,"id":171,"parentId":112,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"pages-dir-node"},"startTime":1767951842698,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1242,"timestamp":58182818,"id":174,"parentId":126,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/detached-promise.js","layer":"pages-dir-node"},"startTime":1767951842724,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3013,"timestamp":58182561,"id":173,"parentId":91,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-loader/module-proxy.js","layer":"rsc"},"startTime":1767951842723,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3186,"timestamp":58182879,"id":175,"parentId":125,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/detached-promise.js","layer":"rsc"},"startTime":1767951842724,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":6450,"timestamp":58181330,"id":172,"parentId":32,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"rsc"},"startTime":1767951842722,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7126,"timestamp":58183188,"id":177,"parentId":120,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"rsc"},"startTime":1767951842724,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7788,"timestamp":58183294,"id":178,"parentId":122,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"pages-dir-node"},"startTime":1767951842724,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9082,"timestamp":58183098,"id":176,"parentId":121,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"pages-dir-node"},"startTime":1767951842724,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9393,"timestamp":58183356,"id":179,"parentId":123,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"pages-dir-node"},"startTime":1767951842724,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9886,"timestamp":58183426,"id":180,"parentId":156,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"rsc"},"startTime":1767951842724,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1774,"timestamp":58206342,"id":181,"parentId":126,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/client-component-renderer-logger.js","layer":"pages-dir-node"},"startTime":1767951842747,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2193,"timestamp":58206792,"id":183,"parentId":132,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/uint8array-helpers.js","layer":"pages-dir-node"},"startTime":1767951842748,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3917,"timestamp":58206418,"id":182,"parentId":125,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/client-component-renderer-logger.js","layer":"rsc"},"startTime":1767951842747,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4364,"timestamp":58206860,"id":184,"parentId":131,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/uint8array-helpers.js","layer":"rsc"},"startTime":1767951842748,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6211,"timestamp":58207098,"id":185,"parentId":137,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"pages-dir-node"},"startTime":1767951842748,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7022,"timestamp":58207184,"id":186,"parentId":137,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"pages-dir-node"},"startTime":1767951842748,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2540,"timestamp":58214373,"id":187,"parentId":83,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/api-utils/index.js","layer":"rsc"},"startTime":1767951842755,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1144,"timestamp":58240842,"id":188,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-webpack-static.js","layer":"rsc"},"startTime":1767951842782,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1178,"timestamp":58241065,"id":189,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-webpack-server.js","layer":"rsc"},"startTime":1767951842782,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4025,"timestamp":58243745,"id":190,"parentId":145,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/dynamic-rendering-utils.js","layer":"rsc"},"startTime":1767951842785,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5239,"timestamp":58243991,"id":191,"parentId":145,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/create-deduped-by-callsite-server-error-logger.js","layer":"rsc"},"startTime":1767951842785,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7914,"timestamp":58244725,"id":195,"parentId":132,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/errors/constants.js","layer":"pages-dir-node"},"startTime":1767951842786,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11480,"timestamp":58244787,"id":196,"parentId":131,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/errors/constants.js","layer":"rsc"},"startTime":1767951842786,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12143,"timestamp":58244886,"id":197,"parentId":132,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/output-export-prefetch-encoding.js","layer":"pages-dir-node"},"startTime":1767951842786,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12767,"timestamp":58244945,"id":198,"parentId":131,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/output-export-prefetch-encoding.js","layer":"rsc"},"startTime":1767951842786,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13469,"timestamp":58244645,"id":194,"parentId":137,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"pages-dir-node"},"startTime":1767951842786,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":15264,"timestamp":58244438,"id":193,"parentId":145,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/utils.js","layer":"rsc"},"startTime":1767951842785,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":21605,"timestamp":58244225,"id":192,"parentId":145,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1767951842785,"traceId":"6749762fed06a213"},{"name":"build-module-external","duration":41,"timestamp":58297228,"id":199,"parentId":147,"tags":{"name":"../app-render/dynamic-access-async-storage.external","layer":null},"startTime":1767951842838,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2087,"timestamp":58298253,"id":205,"parentId":126,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/next-request.js","layer":"pages-dir-node"},"startTime":1767951842839,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7872,"timestamp":58297300,"id":200,"parentId":149,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1767951842838,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8226,"timestamp":58297602,"id":201,"parentId":149,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1767951842839,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10128,"timestamp":58297836,"id":202,"parentId":150,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/create-error-handler.js","layer":"rsc"},"startTime":1767951842839,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11146,"timestamp":58298294,"id":206,"parentId":125,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/next-request.js","layer":"rsc"},"startTime":1767951842839,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13799,"timestamp":58298051,"id":203,"parentId":145,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/reflect-utils.js","layer":"rsc"},"startTime":1767951842839,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":14886,"timestamp":58298168,"id":204,"parentId":150,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js","layer":"rsc"},"startTime":1767951842839,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5083,"timestamp":58321252,"id":207,"parentId":150,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js","layer":"rsc"},"startTime":1767951842862,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1337,"timestamp":58335256,"id":208,"parentId":202,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"rsc"},"startTime":1767951842876,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1841,"timestamp":58341488,"id":210,"parentId":100,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/fresh/index.js","layer":"pages-dir-node"},"startTime":1767951842882,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4939,"timestamp":58341308,"id":209,"parentId":70,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/fresh/index.js","layer":"rsc"},"startTime":1767951842882,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5053,"timestamp":58341520,"id":211,"parentId":152,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/api-utils/get-cookie-parser.js","layer":"rsc"},"startTime":1767951842882,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5152,"timestamp":58341732,"id":214,"parentId":145,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1767951842883,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6748,"timestamp":58341622,"id":212,"parentId":204,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"rsc"},"startTime":1767951842883,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7127,"timestamp":58341683,"id":213,"parentId":159,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"rsc"},"startTime":1767951842883,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3665,"timestamp":58348993,"id":215,"parentId":159,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js","layer":"rsc"},"startTime":1767951842890,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11237,"timestamp":58349306,"id":217,"parentId":171,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"pages-dir-node"},"startTime":1767951842890,"traceId":"6749762fed06a213"}]
|
|
5
|
+
[{"name":"build-module-tsx","duration":4988,"timestamp":59922444,"id":435,"parentId":416,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/LanguageSwitcher.tsx","layer":"ssr"},"startTime":1767951844463,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":4475,"timestamp":59923377,"id":436,"parentId":418,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectCard.tsx","layer":"ssr"},"startTime":1767951844464,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":5498,"timestamp":59923574,"id":437,"parentId":418,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectCard.tsx","layer":"ssr"},"startTime":1767951844464,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":46477,"timestamp":59945976,"id":444,"parentId":427,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/forbidden.js","layer":"ssr"},"startTime":1767951844487,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":49239,"timestamp":59946118,"id":445,"parentId":427,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1767951844487,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":49912,"timestamp":59946198,"id":446,"parentId":427,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unauthorized.js","layer":"ssr"},"startTime":1767951844487,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":50354,"timestamp":59946261,"id":447,"parentId":427,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.js","layer":"ssr"},"startTime":1767951844487,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":50451,"timestamp":59946717,"id":448,"parentId":433,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1767951844488,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":64096,"timestamp":59939042,"id":438,"parentId":348,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Check,Database,FolderOpen,Loader2,RefreshCw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844480,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":73008,"timestamp":59939267,"id":441,"parentId":422,"tags":{"name":"__barrel_optimize__?names=Database,Eye,FlaskConical,FolderTree,GitBranch,Settings2,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844480,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":73224,"timestamp":59939309,"id":442,"parentId":436,"tags":{"name":"__barrel_optimize__?names=Plus,Sparkles!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844480,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":74363,"timestamp":59939216,"id":440,"parentId":416,"tags":{"name":"__barrel_optimize__?names=ArrowLeft,Settings!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844480,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":74639,"timestamp":59939159,"id":439,"parentId":349,"tags":{"name":"__barrel_optimize__?names=AlertCircle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844480,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":78074,"timestamp":59939351,"id":443,"parentId":437,"tags":{"name":"__barrel_optimize__?names=Database,Globe,Server,Smartphone,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844480,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":679,"timestamp":60021925,"id":451,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/server-inserted-html.js","layer":"ssr"},"startTime":1767951844563,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4907,"timestamp":60019517,"id":449,"parentId":416,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/image.js","layer":"ssr"},"startTime":1767951844560,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":5435,"timestamp":60021782,"id":450,"parentId":419,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/dialog.tsx","layer":"ssr"},"startTime":1767951844563,"traceId":"6749762fed06a213"},{"name":"build-module-json","duration":1366,"timestamp":60027801,"id":453,"parentId":434,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/en.json","layer":"ssr"},"startTime":1767951844569,"traceId":"6749762fed06a213"},{"name":"build-module-json","duration":899,"timestamp":60028423,"id":454,"parentId":434,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/ko.json","layer":"ssr"},"startTime":1767951844569,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":7140,"timestamp":60024597,"id":452,"parentId":420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/utils.ts","layer":"ssr"},"startTime":1767951844565,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":7025,"timestamp":60035586,"id":456,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ChatPanel.tsx","layer":"ssr"},"startTime":1767951844576,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":9914,"timestamp":60035791,"id":457,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/PreviewPanel.tsx","layer":"ssr"},"startTime":1767951844577,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":8144,"timestamp":60046802,"id":458,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileExplorer.tsx","layer":"ssr"},"startTime":1767951844588,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":11662,"timestamp":60047028,"id":459,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileViewer.tsx","layer":"ssr"},"startTime":1767951844588,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":28778,"timestamp":60034187,"id":455,"parentId":416,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-dir/link.js","layer":"ssr"},"startTime":1767951844575,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":32290,"timestamp":60049965,"id":460,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/testing/TestRunner.tsx","layer":"ssr"},"startTime":1767951844591,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":35140,"timestamp":60050198,"id":461,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/env/EnvPanel.tsx","layer":"ssr"},"startTime":1767951844591,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":38060,"timestamp":60050377,"id":462,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/database/DatabasePanel.tsx","layer":"ssr"},"startTime":1767951844591,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":5463,"timestamp":60094146,"id":463,"parentId":420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.mjs","layer":"ssr"},"startTime":1767951844635,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":31392,"timestamp":60124782,"id":466,"parentId":447,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.server.js","layer":"ssr"},"startTime":1767951844666,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":34586,"timestamp":60124884,"id":467,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/checkpoint/CheckpointPanel.tsx","layer":"ssr"},"startTime":1767951844666,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":35247,"timestamp":60124496,"id":464,"parentId":456,"tags":{"name":"__barrel_optimize__?names=MessageSquarePlus!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844665,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":35536,"timestamp":60124660,"id":465,"parentId":457,"tags":{"name":"__barrel_optimize__?names=ExternalLink,Loader2,Monitor,Package,Play,RefreshCw,RotateCcw,Smartphone,Square,Tablet,Terminal,Zap!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844666,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":11018,"timestamp":60164169,"id":472,"parentId":434,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/middleware.mjs","layer":"ssr"},"startTime":1767951844705,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17693,"timestamp":60163860,"id":469,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1767951844705,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19627,"timestamp":60163704,"id":468,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1767951844705,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":22636,"timestamp":60163977,"id":470,"parentId":458,"tags":{"name":"__barrel_optimize__?names=ChevronDown,ChevronRight,File,Folder,FolderOpen,RefreshCw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844705,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":22772,"timestamp":60164097,"id":471,"parentId":459,"tags":{"name":"__barrel_optimize__?names=Check,Copy,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844705,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":20872,"timestamp":60187736,"id":474,"parentId":461,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Eye,EyeOff,FileText,Plus,RefreshCw,Save,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844729,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":21209,"timestamp":60187821,"id":475,"parentId":462,"tags":{"name":"__barrel_optimize__?names=AlertCircle,ChevronLeft,ChevronRight,Database,Play,RefreshCw,Table,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844729,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":22480,"timestamp":60187586,"id":473,"parentId":460,"tags":{"name":"__barrel_optimize__?names=AlertCircle,CheckCircle,Clock,FlaskConical,Play,Plus,RefreshCw,Trash2,XCircle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844728,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1308,"timestamp":60210676,"id":476,"parentId":466,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/router-utils/is-postpone.js","layer":"ssr"},"startTime":1767951844752,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5370,"timestamp":60217568,"id":477,"parentId":469,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1767951844758,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5555,"timestamp":60217681,"id":478,"parentId":467,"tags":{"name":"__barrel_optimize__?names=AlertCircle,ChevronDown,ChevronRight,Clock,FileText,GitBranch,Plus,RefreshCw,RotateCcw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844759,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2576,"timestamp":60223688,"id":481,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-alert.js","layer":"ssr"},"startTime":1767951844765,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3723,"timestamp":60223636,"id":480,"parentId":449,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-external.js","layer":"ssr"},"startTime":1767951844765,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":4476,"timestamp":60223475,"id":479,"parentId":436,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/card.tsx","layer":"ssr"},"startTime":1767951844764,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3518,"timestamp":60224802,"id":482,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/check.js","layer":"ssr"},"startTime":1767951844766,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":3331,"timestamp":60228721,"id":483,"parentId":424,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/index.mjs","layer":"ssr"},"startTime":1767951844770,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5092,"timestamp":60234813,"id":484,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/database.js","layer":"ssr"},"startTime":1767951844776,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5303,"timestamp":60234941,"id":485,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-open.js","layer":"ssr"},"startTime":1767951844776,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5764,"timestamp":60235039,"id":486,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/loader-circle.js","layer":"ssr"},"startTime":1767951844776,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4995,"timestamp":60236142,"id":487,"parentId":441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eye.js","layer":"ssr"},"startTime":1767951844777,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5790,"timestamp":60236264,"id":488,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/refresh-cw.js","layer":"ssr"},"startTime":1767951844777,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6058,"timestamp":60236343,"id":489,"parentId":441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-tree.js","layer":"ssr"},"startTime":1767951844777,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6310,"timestamp":60236416,"id":490,"parentId":441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flask-conical.js","layer":"ssr"},"startTime":1767951844777,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6588,"timestamp":60236497,"id":491,"parentId":441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-branch.js","layer":"ssr"},"startTime":1767951844777,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7044,"timestamp":60236560,"id":492,"parentId":441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings-2.js","layer":"ssr"},"startTime":1767951844777,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8956,"timestamp":60241294,"id":493,"parentId":441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/x.js","layer":"ssr"},"startTime":1767951844782,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2352,"timestamp":60253641,"id":494,"parentId":442,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/plus.js","layer":"ssr"},"startTime":1767951844795,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3869,"timestamp":60253763,"id":495,"parentId":442,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sparkles.js","layer":"ssr"},"startTime":1767951844795,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4228,"timestamp":60253847,"id":496,"parentId":440,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-left.js","layer":"ssr"},"startTime":1767951844795,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4361,"timestamp":60256239,"id":498,"parentId":440,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings.js","layer":"ssr"},"startTime":1767951844797,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4635,"timestamp":60256331,"id":499,"parentId":443,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/server.js","layer":"ssr"},"startTime":1767951844797,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4899,"timestamp":60256414,"id":500,"parentId":443,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/smartphone.js","layer":"ssr"},"startTime":1767951844797,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5530,"timestamp":60256108,"id":497,"parentId":443,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/globe.js","layer":"ssr"},"startTime":1767951844797,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6035,"timestamp":60256500,"id":501,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/use-merged-ref.js","layer":"ssr"},"startTime":1767951844797,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6692,"timestamp":60256575,"id":502,"parentId":443,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trash-2.js","layer":"ssr"},"startTime":1767951844797,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9530,"timestamp":60258934,"id":503,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/links.js","layer":"ssr"},"startTime":1767951844800,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3065,"timestamp":60269322,"id":504,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1767951844810,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8196,"timestamp":60269416,"id":505,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-instance.js","layer":"ssr"},"startTime":1767951844810,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5693,"timestamp":60272573,"id":507,"parentId":464,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-plus.js","layer":"ssr"},"startTime":1767951844813,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10783,"timestamp":60269465,"id":506,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/segment-cache.js","layer":"ssr"},"startTime":1767951844810,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7917,"timestamp":60272695,"id":508,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor.js","layer":"ssr"},"startTime":1767951844814,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8142,"timestamp":60272782,"id":509,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package.js","layer":"ssr"},"startTime":1767951844814,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8391,"timestamp":60272849,"id":510,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/external-link.js","layer":"ssr"},"startTime":1767951844814,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12855,"timestamp":60272917,"id":511,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/error-once.js","layer":"ssr"},"startTime":1767951844814,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13397,"timestamp":60272985,"id":512,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1767951844814,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2999,"timestamp":60287223,"id":514,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rotate-ccw.js","layer":"ssr"},"startTime":1767951844828,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3535,"timestamp":60287090,"id":513,"parentId":504,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1767951844828,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2183,"timestamp":60290920,"id":515,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/play.js","layer":"ssr"},"startTime":1767951844832,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2331,"timestamp":60291072,"id":516,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square.js","layer":"ssr"},"startTime":1767951844832,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2548,"timestamp":60291171,"id":517,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tablet.js","layer":"ssr"},"startTime":1767951844832,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":8547,"timestamp":60293881,"id":518,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageList.tsx","layer":"ssr"},"startTime":1767951844835,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":10037,"timestamp":60294113,"id":519,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageInput.tsx","layer":"ssr"},"startTime":1767951844835,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9722,"timestamp":60294745,"id":523,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/zap.js","layer":"ssr"},"startTime":1767951844836,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10102,"timestamp":60294663,"id":522,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/terminal.js","layer":"ssr"},"startTime":1767951844836,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":12791,"timestamp":60294302,"id":520,"parentId":457,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ConsoleViewer.tsx","layer":"ssr"},"startTime":1767951844835,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":14325,"timestamp":60294480,"id":521,"parentId":457,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ErrorOverlay.tsx","layer":"ssr"},"startTime":1767951844835,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9350,"timestamp":60299962,"id":524,"parentId":513,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1767951844841,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3959,"timestamp":60320147,"id":526,"parentId":470,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-right.js","layer":"ssr"},"startTime":1767951844861,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4415,"timestamp":60319991,"id":525,"parentId":470,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-down.js","layer":"ssr"},"startTime":1767951844861,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4334,"timestamp":60320346,"id":528,"parentId":470,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder.js","layer":"ssr"},"startTime":1767951844861,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4670,"timestamp":60320250,"id":527,"parentId":470,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file.js","layer":"ssr"},"startTime":1767951844861,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4081,"timestamp":60325390,"id":532,"parentId":471,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copy.js","layer":"ssr"},"startTime":1767951844866,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4229,"timestamp":60325480,"id":533,"parentId":474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-text.js","layer":"ssr"},"startTime":1767951844866,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4357,"timestamp":60325559,"id":534,"parentId":474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eye-off.js","layer":"ssr"},"startTime":1767951844866,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4527,"timestamp":60325626,"id":535,"parentId":475,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-left.js","layer":"ssr"},"startTime":1767951844867,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4638,"timestamp":60325699,"id":536,"parentId":474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/save.js","layer":"ssr"},"startTime":1767951844867,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4773,"timestamp":60325768,"id":537,"parentId":475,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/table.js","layer":"ssr"},"startTime":1767951844867,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12404,"timestamp":60325089,"id":529,"parentId":519,"tags":{"name":"__barrel_optimize__?names=Paperclip,Send!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844866,"traceId":"6749762fed06a213"}]
|
|
6
|
+
[{"name":"build-module-js","duration":12527,"timestamp":60325213,"id":530,"parentId":520,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Download,Terminal,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844866,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12683,"timestamp":60325301,"id":531,"parentId":521,"tags":{"name":"__barrel_optimize__?names=Check,Copy,ExternalLink,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951844866,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4400,"timestamp":60338638,"id":538,"parentId":481,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/createLucideIcon.js","layer":"ssr"},"startTime":1767951844880,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4591,"timestamp":60338778,"id":539,"parentId":473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check-big.js","layer":"ssr"},"startTime":1767951844880,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4795,"timestamp":60338873,"id":540,"parentId":473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock.js","layer":"ssr"},"startTime":1767951844880,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5990,"timestamp":60338954,"id":541,"parentId":473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-x.js","layer":"ssr"},"startTime":1767951844880,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":1277,"timestamp":60354786,"id":547,"parentId":483,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/vanilla.mjs","layer":"ssr"},"startTime":1767951844896,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":1619,"timestamp":60355018,"id":548,"parentId":483,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/react.mjs","layer":"ssr"},"startTime":1767951844896,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":4545,"timestamp":60353028,"id":543,"parentId":457,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/usePreviewStore.ts","layer":"ssr"},"startTime":1767951844894,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":2755,"timestamp":60357788,"id":549,"parentId":452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","layer":"ssr"},"startTime":1767951844899,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9985,"timestamp":60353221,"id":544,"parentId":480,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/image-component.js","layer":"ssr"},"startTime":1767951844894,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":10181,"timestamp":60353383,"id":546,"parentId":419,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/index.ts","layer":"ssr"},"startTime":1767951844894,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":15215,"timestamp":60352816,"id":542,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useChatStore.ts","layer":"ssr"},"startTime":1767951844894,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":18894,"timestamp":60353312,"id":545,"parentId":480,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-img-props.js","layer":"ssr"},"startTime":1767951844894,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10520,"timestamp":60393219,"id":550,"parentId":544,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"ssr"},"startTime":1767951844934,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11465,"timestamp":60393358,"id":551,"parentId":480,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-loader.js","layer":"ssr"},"startTime":1767951844934,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12784,"timestamp":60393437,"id":552,"parentId":504,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1767951844934,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":12449,"timestamp":60406786,"id":556,"parentId":452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/tailwind-merge@2.6.0/node_modules/tailwind-merge/dist/bundle-mjs.mjs","layer":"ssr"},"startTime":1767951844948,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":30365,"timestamp":60393558,"id":554,"parentId":505,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1767951844934,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":32281,"timestamp":60393617,"id":555,"parentId":505,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1767951844935,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":41611,"timestamp":60393501,"id":553,"parentId":503,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1767951844934,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3850,"timestamp":60445132,"id":558,"parentId":550,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"ssr"},"startTime":1767951844986,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4171,"timestamp":60445179,"id":559,"parentId":552,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1767951844986,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4822,"timestamp":60445221,"id":560,"parentId":512,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1767951844986,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8160,"timestamp":60445017,"id":557,"parentId":550,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"ssr"},"startTime":1767951844986,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8889,"timestamp":60447275,"id":564,"parentId":529,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/paperclip.js","layer":"ssr"},"startTime":1767951844988,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9127,"timestamp":60447368,"id":565,"parentId":529,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/send.js","layer":"ssr"},"startTime":1767951844988,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":10973,"timestamp":60446693,"id":561,"parentId":518,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageItem.tsx","layer":"ssr"},"startTime":1767951844988,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10551,"timestamp":60447444,"id":566,"parentId":530,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/download.js","layer":"ssr"},"startTime":1767951844988,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":12964,"timestamp":60447099,"id":563,"parentId":518,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/StreamingMessage.tsx","layer":"ssr"},"startTime":1767951844988,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":13686,"timestamp":60446905,"id":562,"parentId":519,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ModeToggle.tsx","layer":"ssr"},"startTime":1767951844988,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3260,"timestamp":60473690,"id":567,"parentId":560,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1767951845015,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":8513,"timestamp":60473834,"id":568,"parentId":519,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/FilePreview.tsx","layer":"ssr"},"startTime":1767951845015,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8801,"timestamp":60474193,"id":570,"parentId":538,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/Icon.js","layer":"ssr"},"startTime":1767951845015,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":10463,"timestamp":60473998,"id":569,"parentId":519,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/QueuePreview.tsx","layer":"ssr"},"startTime":1767951845015,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7603,"timestamp":60477417,"id":574,"parentId":544,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config.js","layer":"ssr"},"startTime":1767951845018,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7984,"timestamp":60477497,"id":575,"parentId":545,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-blur-svg.js","layer":"ssr"},"startTime":1767951845018,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8471,"timestamp":60477561,"id":576,"parentId":538,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/shared/src/utils.js","layer":"ssr"},"startTime":1767951845018,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12036,"timestamp":60477109,"id":571,"parentId":561,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,Edit3,FileText,FolderSearch,Globe,ListTodo,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951845018,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12276,"timestamp":60477248,"id":572,"parentId":563,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,ChevronDown,ChevronUp,Edit3,FileText,FolderSearch,Globe,ListTodo,Loader2,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951845018,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12417,"timestamp":60477341,"id":573,"parentId":562,"tags":{"name":"__barrel_optimize__?names=Hammer,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951845018,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3474,"timestamp":60494672,"id":577,"parentId":568,"tags":{"name":"__barrel_optimize__?names=FileText,Loader2,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951845036,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3520,"timestamp":60494783,"id":578,"parentId":569,"tags":{"name":"__barrel_optimize__?names=ChevronDown,ChevronUp,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951845036,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2855,"timestamp":60500377,"id":579,"parentId":553,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1767951845041,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4518,"timestamp":60500505,"id":580,"parentId":553,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1767951845041,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5983,"timestamp":60500555,"id":581,"parentId":553,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1767951845041,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7243,"timestamp":60500602,"id":582,"parentId":555,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1767951845041,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10114,"timestamp":60500642,"id":583,"parentId":553,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"ssr"},"startTime":1767951845042,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10944,"timestamp":60500710,"id":585,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"ssr"},"startTime":1767951845042,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11708,"timestamp":60500746,"id":586,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1767951845042,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12962,"timestamp":60500780,"id":587,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1767951845042,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":18430,"timestamp":60500678,"id":584,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1767951845042,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19420,"timestamp":60500836,"id":588,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/hmr-refresh-reducer.js","layer":"ssr"},"startTime":1767951845042,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":60232,"timestamp":60532120,"id":591,"parentId":459,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/prism-react-renderer@2.4.1_react@19.2.3/node_modules/prism-react-renderer/dist/index.mjs","layer":"ssr"},"startTime":1767951845073,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":66609,"timestamp":60532277,"id":592,"parentId":553,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/root-error-boundary.js","layer":"ssr"},"startTime":1767951845073,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":69897,"timestamp":60532026,"id":590,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"ssr"},"startTime":1767951845073,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":72504,"timestamp":60531862,"id":589,"parentId":555,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1767951845073,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":20098,"timestamp":60607067,"id":593,"parentId":546,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/project.ts","layer":"ssr"},"startTime":1767951845148,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":20143,"timestamp":60607339,"id":594,"parentId":546,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/chat.ts","layer":"ssr"},"startTime":1767951845148,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1747,"timestamp":60632603,"id":596,"parentId":550,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/amp-context.js","layer":"ssr"},"startTime":1767951845174,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1741,"timestamp":60632796,"id":597,"parentId":550,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/head-manager-context.js","layer":"ssr"},"startTime":1767951845174,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":2595,"timestamp":60632361,"id":595,"parentId":546,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/preview.ts","layer":"ssr"},"startTime":1767951845173,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3366,"timestamp":60632959,"id":598,"parentId":570,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/defaultAttributes.js","layer":"ssr"},"startTime":1767951845174,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3623,"timestamp":60633066,"id":599,"parentId":571,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bot.js","layer":"ssr"},"startTime":1767951845174,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3835,"timestamp":60633144,"id":600,"parentId":571,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check.js","layer":"ssr"},"startTime":1767951845174,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13385,"timestamp":60633209,"id":601,"parentId":571,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pen-line.js","layer":"ssr"},"startTime":1767951845174,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11736,"timestamp":60635173,"id":602,"parentId":571,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-search.js","layer":"ssr"},"startTime":1767951845176,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11946,"timestamp":60635303,"id":603,"parentId":571,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-todo.js","layer":"ssr"},"startTime":1767951845176,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12154,"timestamp":60635383,"id":604,"parentId":571,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/search.js","layer":"ssr"},"startTime":1767951845176,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2048,"timestamp":60649803,"id":606,"parentId":573,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hammer.js","layer":"ssr"},"startTime":1767951845191,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1193,"timestamp":60652184,"id":610,"parentId":544,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/image-config-context.js","layer":"ssr"},"startTime":1767951845193,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1179,"timestamp":60652365,"id":611,"parentId":544,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/router-context.js","layer":"ssr"},"startTime":1767951845193,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4013,"timestamp":60649857,"id":607,"parentId":573,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-question.js","layer":"ssr"},"startTime":1767951845191,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4275,"timestamp":60649905,"id":608,"parentId":572,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-up.js","layer":"ssr"},"startTime":1767951845191,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":6245,"timestamp":60649656,"id":605,"parentId":561,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MarkdownRenderer.tsx","layer":"ssr"},"startTime":1767951845191,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":13266,"timestamp":60651954,"id":609,"parentId":563,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/AskUserQuestionBlock.tsx","layer":"ssr"},"startTime":1767951845193,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12296,"timestamp":60656322,"id":612,"parentId":585,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"ssr"},"startTime":1767951845197,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6524,"timestamp":60679304,"id":613,"parentId":585,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1767951845220,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6764,"timestamp":60679547,"id":615,"parentId":585,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"ssr"},"startTime":1767951845220,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7407,"timestamp":60679449,"id":614,"parentId":585,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1767951845220,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7520,"timestamp":60679719,"id":617,"parentId":587,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1767951845221,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8350,"timestamp":60679638,"id":616,"parentId":587,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"ssr"},"startTime":1767951845221,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":20168,"timestamp":60679805,"id":618,"parentId":586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1767951845221,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":15580,"timestamp":60688584,"id":620,"parentId":612,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"ssr"},"startTime":1767951845229,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16093,"timestamp":60688684,"id":621,"parentId":584,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1767951845230,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17418,"timestamp":60688728,"id":622,"parentId":584,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"ssr"},"startTime":1767951845230,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17924,"timestamp":60688488,"id":619,"parentId":609,"tags":{"name":"__barrel_optimize__?names=Check,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951845229,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2883,"timestamp":60710654,"id":623,"parentId":584,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"ssr"},"startTime":1767951845252,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2149,"timestamp":60713794,"id":624,"parentId":590,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/assign-location.js","layer":"ssr"},"startTime":1767951845255,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2704,"timestamp":60713893,"id":625,"parentId":590,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/server-reference-info.js","layer":"ssr"},"startTime":1767951845255,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7266,"timestamp":60713944,"id":626,"parentId":592,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/graceful-degrade-boundary.js","layer":"ssr"},"startTime":1767951845255,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9067,"timestamp":60713982,"id":627,"parentId":584,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/aliased-prefetch-navigations.js","layer":"ssr"},"startTime":1767951845255,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":652,"timestamp":60731337,"id":629,"parentId":582,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1767951845272,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":751,"timestamp":60731510,"id":630,"parentId":582,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1767951845272,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3774,"timestamp":60729720,"id":628,"parentId":613,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"ssr"},"startTime":1767951845271,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":2081,"timestamp":60738565,"id":632,"parentId":609,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/checkbox.tsx","layer":"ssr"},"startTime":1767951845279,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":2762,"timestamp":60738411,"id":631,"parentId":609,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/radio-group.tsx","layer":"ssr"},"startTime":1767951845279,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":4756,"timestamp":60739355,"id":633,"parentId":609,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/label.tsx","layer":"ssr"},"startTime":1767951845280,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4975,"timestamp":60739538,"id":634,"parentId":628,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"ssr"},"startTime":1767951845280,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1619,"timestamp":60744858,"id":635,"parentId":605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/index.js","layer":"ssr"},"startTime":1767951845286,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2255,"timestamp":60746862,"id":636,"parentId":632,"tags":{"name":"__barrel_optimize__?names=Check!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951845288,"traceId":"6749762fed06a213"}]
|
|
7
|
+
[{"name":"build-module-js","duration":4342,"timestamp":60746954,"id":637,"parentId":631,"tags":{"name":"__barrel_optimize__?names=Circle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767951845288,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":737,"timestamp":60751453,"id":638,"parentId":605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/index.js","layer":"ssr"},"startTime":1767951845292,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1025,"timestamp":60754698,"id":639,"parentId":637,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle.js","layer":"ssr"},"startTime":1767951845296,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":614,"timestamp":60756567,"id":640,"parentId":635,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/lib/index.js","layer":"ssr"},"startTime":1767951845297,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1668,"timestamp":60757855,"id":641,"parentId":638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/lib/index.js","layer":"ssr"},"startTime":1767951845299,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":5257,"timestamp":60767673,"id":642,"parentId":632,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-checkbox@1.3.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_bewiq6cjocmach7p37abfyy75a/node_modules/@radix-ui/react-checkbox/dist/index.mjs","layer":"ssr"},"startTime":1767951845309,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":1951,"timestamp":60773338,"id":644,"parentId":633,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-label@2.1.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2.7__ggc7d2jno3gcorzflrswkya7gm/node_modules/@radix-ui/react-label/dist/index.mjs","layer":"ssr"},"startTime":1767951845314,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":4790,"timestamp":60773199,"id":643,"parentId":631,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-radio-group@1.3.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@1_cjtgf3xmcqtfujhoownb73bnbi/node_modules/@radix-ui/react-radio-group/dist/index.mjs","layer":"ssr"},"startTime":1767951845314,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":952,"timestamp":60799148,"id":645,"parentId":640,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm@3.0.0/node_modules/micromark-extension-gfm/index.js","layer":"ssr"},"startTime":1767951845340,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":783,"timestamp":60809563,"id":646,"parentId":640,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/index.js","layer":"ssr"},"startTime":1767951845350,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":735,"timestamp":60809757,"id":647,"parentId":641,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/index.js","layer":"ssr"},"startTime":1767951845351,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":571,"timestamp":60815474,"id":648,"parentId":641,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/index.js","layer":"ssr"},"startTime":1767951845356,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":471,"timestamp":60820231,"id":649,"parentId":641,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.js","layer":"ssr"},"startTime":1767951845361,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":668,"timestamp":60827621,"id":650,"parentId":641,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/index.js","layer":"ssr"},"startTime":1767951845369,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":525,"timestamp":60836129,"id":651,"parentId":641,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.js","layer":"ssr"},"startTime":1767951845377,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":466,"timestamp":60840271,"id":652,"parentId":641,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/index.js","layer":"ssr"},"startTime":1767951845381,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":341,"timestamp":60842062,"id":653,"parentId":641,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.js","layer":"ssr"},"startTime":1767951845383,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":489,"timestamp":60844998,"id":654,"parentId":641,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/devlop@1.1.0/node_modules/devlop/lib/default.js","layer":"ssr"},"startTime":1767951845386,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":689,"timestamp":60871995,"id":655,"parentId":646,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/lib/index.js","layer":"ssr"},"startTime":1767951845413,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3750,"timestamp":60874850,"id":656,"parentId":647,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/lib/index.js","layer":"ssr"},"startTime":1767951845416,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3778,"timestamp":60875087,"id":657,"parentId":648,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/lib/index.js","layer":"ssr"},"startTime":1767951845416,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":724,"timestamp":60880548,"id":658,"parentId":649,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/lib/index.js","layer":"ssr"},"startTime":1767951845421,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":758,"timestamp":60883500,"id":659,"parentId":650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/lib/index.js","layer":"ssr"},"startTime":1767951845424,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":371,"timestamp":60897130,"id":660,"parentId":645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/index.js","layer":"ssr"},"startTime":1767951845438,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3506,"timestamp":60900380,"id":661,"parentId":651,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.js","layer":"ssr"},"startTime":1767951845441,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":582,"timestamp":60909378,"id":662,"parentId":645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/index.js","layer":"ssr"},"startTime":1767951845450,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1272,"timestamp":60917818,"id":663,"parentId":652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/lib/index.js","layer":"ssr"},"startTime":1767951845459,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2588,"timestamp":60920085,"id":664,"parentId":653,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.js","layer":"ssr"},"startTime":1767951845461,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1965,"timestamp":60923595,"id":665,"parentId":645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/index.js","layer":"ssr"},"startTime":1767951845464,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2438,"timestamp":60923773,"id":666,"parentId":645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-combine-extensions@2.0.1/node_modules/micromark-util-combine-extensions/index.js","layer":"ssr"},"startTime":1767951845465,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":444,"timestamp":60936773,"id":667,"parentId":645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/index.js","layer":"ssr"},"startTime":1767951845478,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":1032,"timestamp":60939892,"id":668,"parentId":642,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-compose-refs@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","layer":"ssr"},"startTime":1767951845481,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":5271,"timestamp":60940045,"id":669,"parentId":642,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-context@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-context/dist/index.mjs","layer":"ssr"},"startTime":1767951845481,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":519,"timestamp":60953290,"id":670,"parentId":645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/index.js","layer":"ssr"},"startTime":1767951845494,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":1367,"timestamp":60956626,"id":671,"parentId":642,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-controllable-state@1.2.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs","layer":"ssr"},"startTime":1767951845498,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1449,"timestamp":60956781,"id":672,"parentId":645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/index.js","layer":"ssr"},"startTime":1767951845498,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":870,"timestamp":60968986,"id":673,"parentId":642,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+primitive@1.1.3/node_modules/@radix-ui/primitive/dist/index.mjs","layer":"ssr"},"startTime":1767951845510,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":956,"timestamp":60970999,"id":674,"parentId":642,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-previous@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-previous/dist/index.mjs","layer":"ssr"},"startTime":1767951845512,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":1354,"timestamp":60971209,"id":675,"parentId":642,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-size@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-size/dist/index.mjs","layer":"ssr"},"startTime":1767951845512,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":8784,"timestamp":60974938,"id":676,"parentId":642,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-presence@1.1.5_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_g7nvzcflnhogkdp32witcuayfy/node_modules/@radix-ui/react-presence/dist/index.mjs","layer":"ssr"},"startTime":1767951845516,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":898,"timestamp":60985764,"id":677,"parentId":650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/index.js","layer":"ssr"},"startTime":1767951845527,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":4203,"timestamp":60985971,"id":678,"parentId":642,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._vrijsupjqixawruberrfb56pbm/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"ssr"},"startTime":1767951845527,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":1251,"timestamp":60993441,"id":679,"parentId":644,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.4_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._4sfldbbhvd3xapj4euqmtg5wga/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"ssr"},"startTime":1767951845534,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":11199,"timestamp":60993629,"id":680,"parentId":643,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-roving-focus@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react_olorlwzqifzjwjsjwfg7df3ffe/node_modules/@radix-ui/react-roving-focus/dist/index.mjs","layer":"ssr"},"startTime":1767951845535,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":3164,"timestamp":61006106,"id":681,"parentId":643,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-direction@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-direction/dist/index.mjs","layer":"ssr"},"startTime":1767951845547,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":620,"timestamp":61039398,"id":682,"parentId":655,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/index.js","layer":"ssr"},"startTime":1767951845580,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":572,"timestamp":61048221,"id":683,"parentId":655,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/index.js","layer":"ssr"},"startTime":1767951845589,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":893,"timestamp":61063563,"id":684,"parentId":655,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/index.js","layer":"ssr"},"startTime":1767951845604,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":881,"timestamp":61063790,"id":685,"parentId":655,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/index.js","layer":"ssr"},"startTime":1767951845605,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":976,"timestamp":61072381,"id":686,"parentId":655,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/index.js","layer":"ssr"},"startTime":1767951845613,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1030,"timestamp":61075674,"id":687,"parentId":656,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/comma-separated-tokens@2.0.3/node_modules/comma-separated-tokens/index.js","layer":"ssr"},"startTime":1767951845617,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":585,"timestamp":61085205,"id":688,"parentId":656,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/index.js","layer":"ssr"},"startTime":1767951845626,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":837,"timestamp":61088415,"id":689,"parentId":661,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.js","layer":"ssr"},"startTime":1767951845629,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":484,"timestamp":61092273,"id":690,"parentId":656,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/index.js","layer":"ssr"},"startTime":1767951845633,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":961,"timestamp":61095620,"id":691,"parentId":656,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/index.js","layer":"ssr"},"startTime":1767951845637,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1586,"timestamp":61102562,"id":692,"parentId":664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minpath.js","layer":"ssr"},"startTime":1767951845643,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1555,"timestamp":61102759,"id":693,"parentId":664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minproc.js","layer":"ssr"},"startTime":1767951845644,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4900,"timestamp":61102922,"id":694,"parentId":660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js","layer":"ssr"},"startTime":1767951845644,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5218,"timestamp":61103098,"id":695,"parentId":660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/html.js","layer":"ssr"},"startTime":1767951845644,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1271,"timestamp":61113989,"id":696,"parentId":664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.js","layer":"ssr"},"startTime":1767951845655,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6083,"timestamp":61114215,"id":697,"parentId":662,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/syntax.js","layer":"ssr"},"startTime":1767951845655,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1402,"timestamp":61121412,"id":698,"parentId":656,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/space-separated-tokens@2.0.2/node_modules/space-separated-tokens/index.js","layer":"ssr"},"startTime":1767951845662,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2715,"timestamp":61121628,"id":699,"parentId":662,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/html.js","layer":"ssr"},"startTime":1767951845663,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2110,"timestamp":61139136,"id":700,"parentId":656,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/index.js","layer":"ssr"},"startTime":1767951845680,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2188,"timestamp":61139351,"id":701,"parentId":665,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/html.js","layer":"ssr"},"startTime":1767951845680,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3810,"timestamp":61139512,"id":702,"parentId":665,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js","layer":"ssr"},"startTime":1767951845680,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1273,"timestamp":61144189,"id":703,"parentId":667,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/html.js","layer":"ssr"},"startTime":1767951845685,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3179,"timestamp":61144331,"id":704,"parentId":667,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/syntax.js","layer":"ssr"},"startTime":1767951845685,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":496,"timestamp":61152580,"id":705,"parentId":656,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/index.js","layer":"ssr"},"startTime":1767951845693,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":460,"timestamp":61155236,"id":706,"parentId":658,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/index.js","layer":"ssr"},"startTime":1767951845696,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":862,"timestamp":61159250,"id":707,"parentId":656,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/index.js","layer":"ssr"},"startTime":1767951845700,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1059,"timestamp":61175134,"id":708,"parentId":670,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/lib/index.js","layer":"ssr"},"startTime":1767951845716,"traceId":"6749762fed06a213"},{"name":"build-module","duration":31,"timestamp":61177346,"id":709,"parentId":692,"tags":{"name":"node:path","layer":null},"startTime":1767951845718,"traceId":"6749762fed06a213"},{"name":"build-module","duration":7,"timestamp":61177389,"id":710,"parentId":693,"tags":{"name":"node:process","layer":null},"startTime":1767951845718,"traceId":"6749762fed06a213"},{"name":"build-module","duration":4,"timestamp":61177401,"id":711,"parentId":696,"tags":{"name":"node:url","layer":null},"startTime":1767951845718,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":471,"timestamp":61180675,"id":712,"parentId":672,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/html.js","layer":"ssr"},"startTime":1767951845722,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1007,"timestamp":61182391,"id":713,"parentId":672,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js","layer":"ssr"},"startTime":1767951845723,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":578,"timestamp":61193910,"id":714,"parentId":661,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/bail@2.0.2/node_modules/bail/index.js","layer":"ssr"},"startTime":1767951845735,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4123,"timestamp":61195108,"id":715,"parentId":677,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/index.js","layer":"ssr"},"startTime":1767951845736,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5031,"timestamp":61195310,"id":716,"parentId":677,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/footer.js","layer":"ssr"},"startTime":1767951845736,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1005,"timestamp":61201526,"id":717,"parentId":661,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/is-plain-obj@4.1.0/node_modules/is-plain-obj/index.js","layer":"ssr"},"startTime":1767951845742,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":927,"timestamp":61203433,"id":718,"parentId":677,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/index.js","layer":"ssr"},"startTime":1767951845744,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":463,"timestamp":61211301,"id":719,"parentId":661,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.js","layer":"ssr"},"startTime":1767951845752,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":951,"timestamp":61223793,"id":720,"parentId":661,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/extend@3.0.2/node_modules/extend/index.js","layer":"ssr"},"startTime":1767951845765,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":391,"timestamp":61225236,"id":721,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/index.js","layer":"ssr"},"startTime":1767951845766,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1003,"timestamp":61236977,"id":722,"parentId":666,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-chunked@2.0.1/node_modules/micromark-util-chunked/index.js","layer":"ssr"},"startTime":1767951845778,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1475,"timestamp":61243199,"id":723,"parentId":682,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/lib/index.js","layer":"ssr"},"startTime":1767951845784,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3362,"timestamp":61264615,"id":724,"parentId":683,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/lib/index.js","layer":"ssr"},"startTime":1767951845806,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1809,"timestamp":61272885,"id":725,"parentId":684,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/lib/index.js","layer":"ssr"},"startTime":1767951845814,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":905,"timestamp":61276980,"id":726,"parentId":685,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/lib/index.js","layer":"ssr"},"startTime":1767951845818,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":858,"timestamp":61286330,"id":727,"parentId":696,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.shared.js","layer":"ssr"},"startTime":1767951845827,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4007,"timestamp":61286516,"id":728,"parentId":686,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/lib/index.js","layer":"ssr"},"startTime":1767951845827,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7265,"timestamp":61286629,"id":729,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/lib/index.js","layer":"ssr"},"startTime":1767951845828,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":599,"timestamp":61294381,"id":730,"parentId":690,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/lib/index.js","layer":"ssr"},"startTime":1767951845835,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":780,"timestamp":61297544,"id":731,"parentId":691,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/aria.js","layer":"ssr"},"startTime":1767951845838,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1268,"timestamp":61297681,"id":732,"parentId":691,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/html.js","layer":"ssr"},"startTime":1767951845839,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1162,"timestamp":61300481,"id":733,"parentId":691,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xml.js","layer":"ssr"},"startTime":1767951845841,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1211,"timestamp":61300618,"id":734,"parentId":691,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xmlns.js","layer":"ssr"},"startTime":1767951845842,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1314,"timestamp":61300707,"id":735,"parentId":691,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xlink.js","layer":"ssr"},"startTime":1767951845842,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1373,"timestamp":61300787,"id":736,"parentId":691,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/hast-to-react.js","layer":"ssr"},"startTime":1767951845842,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2076,"timestamp":61300869,"id":737,"parentId":691,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/svg.js","layer":"ssr"},"startTime":1767951845842,"traceId":"6749762fed06a213"}]
|
|
8
|
+
[{"name":"build-module-js","duration":889,"timestamp":61303570,"id":738,"parentId":691,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/find.js","layer":"ssr"},"startTime":1767951845844,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":907,"timestamp":61303706,"id":739,"parentId":691,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/normalize.js","layer":"ssr"},"startTime":1767951845845,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1592,"timestamp":61311023,"id":740,"parentId":704,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/edit-map.js","layer":"ssr"},"startTime":1767951845852,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4686,"timestamp":61311248,"id":741,"parentId":691,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/merge.js","layer":"ssr"},"startTime":1767951845852,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":873,"timestamp":61316499,"id":742,"parentId":704,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/infer.js","layer":"ssr"},"startTime":1767951845857,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1061,"timestamp":61316632,"id":743,"parentId":700,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/lib/index.js","layer":"ssr"},"startTime":1767951845858,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1223,"timestamp":61318962,"id":744,"parentId":705,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/lib/index.js","layer":"ssr"},"startTime":1767951845860,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4354,"timestamp":61319114,"id":745,"parentId":706,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/lib/index.js","layer":"ssr"},"startTime":1767951845860,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1565,"timestamp":61348694,"id":746,"parentId":695,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-sanitize-uri@2.0.1/node_modules/micromark-util-sanitize-uri/index.js","layer":"ssr"},"startTime":1767951845890,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1195,"timestamp":61357835,"id":747,"parentId":707,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/utilities.js","layer":"ssr"},"startTime":1767951845899,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1526,"timestamp":61363570,"id":748,"parentId":694,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-character@2.1.1/node_modules/micromark-util-character/index.js","layer":"ssr"},"startTime":1767951845904,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3001,"timestamp":61371379,"id":749,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/state.js","layer":"ssr"},"startTime":1767951845912,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3037,"timestamp":61371619,"id":750,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js","layer":"ssr"},"startTime":1767951845913,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3098,"timestamp":61371788,"id":751,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/break.js","layer":"ssr"},"startTime":1767951845913,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3344,"timestamp":61371956,"id":752,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/code.js","layer":"ssr"},"startTime":1767951845913,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1565,"timestamp":61376970,"id":753,"parentId":697,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/index.js","layer":"ssr"},"startTime":1767951845918,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1609,"timestamp":61377183,"id":754,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/delete.js","layer":"ssr"},"startTime":1767951845918,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":601,"timestamp":61385687,"id":755,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js","layer":"ssr"},"startTime":1767951845927,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1296,"timestamp":61387804,"id":756,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js","layer":"ssr"},"startTime":1767951845929,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1498,"timestamp":61388028,"id":757,"parentId":697,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-space@2.0.1/node_modules/micromark-factory-space/index.js","layer":"ssr"},"startTime":1767951845929,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1707,"timestamp":61395978,"id":758,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/heading.js","layer":"ssr"},"startTime":1767951845937,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1718,"timestamp":61396219,"id":759,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/html.js","layer":"ssr"},"startTime":1767951845937,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2020,"timestamp":61396390,"id":760,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js","layer":"ssr"},"startTime":1767951845937,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2802,"timestamp":61396550,"id":761,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image.js","layer":"ssr"},"startTime":1767951845937,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1918,"timestamp":61401899,"id":762,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js","layer":"ssr"},"startTime":1767951845943,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2112,"timestamp":61402128,"id":763,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js","layer":"ssr"},"startTime":1767951845943,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2257,"timestamp":61402299,"id":764,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link.js","layer":"ssr"},"startTime":1767951845943,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3581,"timestamp":61402462,"id":765,"parentId":697,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-normalize-identifier@2.0.1/node_modules/micromark-util-normalize-identifier/index.js","layer":"ssr"},"startTime":1767951845943,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4169,"timestamp":61402619,"id":766,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list-item.js","layer":"ssr"},"startTime":1767951845944,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1833,"timestamp":61409219,"id":767,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list.js","layer":"ssr"},"startTime":1767951845950,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1899,"timestamp":61409409,"id":768,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js","layer":"ssr"},"startTime":1767951845950,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1952,"timestamp":61409580,"id":769,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/root.js","layer":"ssr"},"startTime":1767951845950,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1999,"timestamp":61409753,"id":770,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/strong.js","layer":"ssr"},"startTime":1767951845951,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2310,"timestamp":61409912,"id":771,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table.js","layer":"ssr"},"startTime":1767951845951,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1885,"timestamp":61413292,"id":772,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-row.js","layer":"ssr"},"startTime":1767951845954,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1946,"timestamp":61413490,"id":773,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js","layer":"ssr"},"startTime":1767951845954,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2066,"timestamp":61413655,"id":774,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/text.js","layer":"ssr"},"startTime":1767951845955,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2043,"timestamp":61413901,"id":775,"parentId":718,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js","layer":"ssr"},"startTime":1767951845955,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":683,"timestamp":61421470,"id":776,"parentId":702,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-classify-character@2.0.1/node_modules/micromark-util-classify-character/index.js","layer":"ssr"},"startTime":1767951845962,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1225,"timestamp":61423301,"id":777,"parentId":719,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.js","layer":"ssr"},"startTime":1767951845964,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":612,"timestamp":61426538,"id":778,"parentId":702,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-resolve-all@2.0.1/node_modules/micromark-util-resolve-all/index.js","layer":"ssr"},"startTime":1767951845967,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1820,"timestamp":61449216,"id":779,"parentId":721,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/index.js","layer":"ssr"},"startTime":1767951845990,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1145,"timestamp":61472680,"id":780,"parentId":707,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-object@1.0.14/node_modules/style-to-object/cjs/index.js","layer":"ssr"},"startTime":1767951846014,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":851,"timestamp":61476659,"id":781,"parentId":671,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-layout-effect@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-layout-effect/dist/index.mjs","layer":"ssr"},"startTime":1767951846018,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":951,"timestamp":61490035,"id":782,"parentId":671,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-effect-event@0.0.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-effect-event/dist/index.mjs","layer":"ssr"},"startTime":1767951846031,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":947,"timestamp":61502898,"id":783,"parentId":731,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/create.js","layer":"ssr"},"startTime":1767951846044,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1138,"timestamp":61503063,"id":784,"parentId":731,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/types.js","layer":"ssr"},"startTime":1767951846044,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1218,"timestamp":61503159,"id":785,"parentId":732,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-insensitive-transform.js","layer":"ssr"},"startTime":1767951846044,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":1439,"timestamp":61506877,"id":786,"parentId":678,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.3_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"ssr"},"startTime":1767951846048,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":2295,"timestamp":61507035,"id":787,"parentId":679,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.4_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"ssr"},"startTime":1767951846048,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":744,"timestamp":61513300,"id":789,"parentId":680,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-id@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-id/dist/index.mjs","layer":"ssr"},"startTime":1767951846054,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":8670,"timestamp":61510221,"id":788,"parentId":680,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-collection@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19_3vqfgunzp4tkkuqnqgefg7qsai/node_modules/@radix-ui/react-collection/dist/index.mjs","layer":"ssr"},"startTime":1767951846051,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":383,"timestamp":61521030,"id":790,"parentId":737,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-sensitive-transform.js","layer":"ssr"},"startTime":1767951846062,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":634,"timestamp":61524174,"id":791,"parentId":738,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/info.js","layer":"ssr"},"startTime":1767951846065,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":885,"timestamp":61524313,"id":792,"parentId":738,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/defined-info.js","layer":"ssr"},"startTime":1767951846065,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":570,"timestamp":61525706,"id":793,"parentId":741,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/schema.js","layer":"ssr"},"startTime":1767951846067,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":523,"timestamp":61536645,"id":794,"parentId":680,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-callback-ref@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs","layer":"ssr"},"startTime":1767951846078,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1303,"timestamp":61540298,"id":795,"parentId":725,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/markdown-table@3.0.4/node_modules/markdown-table/index.js","layer":"ssr"},"startTime":1767951846081,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":369,"timestamp":61543158,"id":796,"parentId":725,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.js","layer":"ssr"},"startTime":1767951846084,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":924,"timestamp":61556198,"id":797,"parentId":728,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/ccount@2.0.1/node_modules/ccount/index.js","layer":"ssr"},"startTime":1767951846097,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":914,"timestamp":61556397,"id":798,"parentId":728,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/index.js","layer":"ssr"},"startTime":1767951846097,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":701,"timestamp":61565433,"id":799,"parentId":744,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/index.js","layer":"ssr"},"startTime":1767951846106,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":878,"timestamp":61565569,"id":800,"parentId":760,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/revert.js","layer":"ssr"},"startTime":1767951846106,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1885,"timestamp":61565663,"id":801,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/attention.js","layer":"ssr"},"startTime":1767951846107,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1474,"timestamp":61570881,"id":802,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/blank-line.js","layer":"ssr"},"startTime":1767951846112,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2382,"timestamp":61571031,"id":803,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/autolink.js","layer":"ssr"},"startTime":1767951846112,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2961,"timestamp":61571126,"id":804,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/block-quote.js","layer":"ssr"},"startTime":1767951846112,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3268,"timestamp":61571206,"id":805,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-escape.js","layer":"ssr"},"startTime":1767951846112,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3903,"timestamp":61571289,"id":806,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-reference.js","layer":"ssr"},"startTime":1767951846112,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2489,"timestamp":61579303,"id":807,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-fenced.js","layer":"ssr"},"startTime":1767951846120,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3153,"timestamp":61579505,"id":808,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-indented.js","layer":"ssr"},"startTime":1767951846120,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1423,"timestamp":61583930,"id":809,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-text.js","layer":"ssr"},"startTime":1767951846125,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2125,"timestamp":61584078,"id":810,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/content.js","layer":"ssr"},"startTime":1767951846125,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":978,"timestamp":61588711,"id":811,"parentId":745,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/index.js","layer":"ssr"},"startTime":1767951846130,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1775,"timestamp":61588902,"id":812,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/definition.js","layer":"ssr"},"startTime":1767951846130,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1752,"timestamp":61596274,"id":813,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/hard-break-escape.js","layer":"ssr"},"startTime":1767951846137,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2068,"timestamp":61596530,"id":814,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/heading-atx.js","layer":"ssr"},"startTime":1767951846137,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3563,"timestamp":61596643,"id":815,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-flow.js","layer":"ssr"},"startTime":1767951846138,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4633,"timestamp":61596730,"id":816,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-text.js","layer":"ssr"},"startTime":1767951846138,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6026,"timestamp":61596809,"id":817,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-end.js","layer":"ssr"},"startTime":1767951846138,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1450,"timestamp":61605626,"id":818,"parentId":745,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/index.js","layer":"ssr"},"startTime":1767951846147,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1564,"timestamp":61605826,"id":819,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-image.js","layer":"ssr"},"startTime":1767951846147,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1647,"timestamp":61605993,"id":820,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-link.js","layer":"ssr"},"startTime":1767951846147,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1086,"timestamp":61609703,"id":821,"parentId":745,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-string@2.0.1/node_modules/micromark-util-decode-string/index.js","layer":"ssr"},"startTime":1767951846151,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1194,"timestamp":61609831,"id":822,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/line-ending.js","layer":"ssr"},"startTime":1767951846151,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1930,"timestamp":61609922,"id":823,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/list.js","layer":"ssr"},"startTime":1767951846151,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1084,"timestamp":61612794,"id":824,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/setext-underline.js","layer":"ssr"},"startTime":1767951846154,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":902,"timestamp":61622526,"id":825,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/thematic-break.js","layer":"ssr"},"startTime":1767951846163,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":803,"timestamp":61626564,"id":826,"parentId":745,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-numeric-character-reference@2.0.2/node_modules/micromark-util-decode-numeric-character-reference/index.js","layer":"ssr"},"startTime":1767951846167,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":440,"timestamp":61629552,"id":827,"parentId":745,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/decode-named-character-reference@1.2.0/node_modules/decode-named-character-reference/index.js","layer":"ssr"},"startTime":1767951846170,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":557,"timestamp":61633039,"id":828,"parentId":779,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/color.node.js","layer":"ssr"},"startTime":1767951846174,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1044,"timestamp":61656060,"id":829,"parentId":746,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-encode@2.0.1/node_modules/micromark-util-encode/index.js","layer":"ssr"},"startTime":1767951846197,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1349,"timestamp":61656286,"id":830,"parentId":716,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/index.js","layer":"ssr"},"startTime":1767951846197,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":667,"timestamp":61663979,"id":831,"parentId":774,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trim-lines@3.0.1/node_modules/trim-lines/index.js","layer":"ssr"},"startTime":1767951846205,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":374,"timestamp":61666990,"id":832,"parentId":779,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/index.js","layer":"ssr"},"startTime":1767951846208,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1441,"timestamp":61677906,"id":833,"parentId":796,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/index.js","layer":"ssr"},"startTime":1767951846219,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1662,"timestamp":61678123,"id":834,"parentId":796,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/index.js","layer":"ssr"},"startTime":1767951846219,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2161,"timestamp":61692695,"id":835,"parentId":780,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/inline-style-parser@0.2.7/node_modules/inline-style-parser/cjs/index.js","layer":"ssr"},"startTime":1767951846234,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2397,"timestamp":61692919,"id":836,"parentId":799,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/lib/index.js","layer":"ssr"},"startTime":1767951846234,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1849,"timestamp":61695589,"id":837,"parentId":798,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/lib/index.js","layer":"ssr"},"startTime":1767951846236,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2131,"timestamp":61695842,"id":838,"parentId":811,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/lib/index.js","layer":"ssr"},"startTime":1767951846237,"traceId":"6749762fed06a213"}]
|
|
9
|
+
[{"name":"build-module-js","duration":4617,"timestamp":61704034,"id":839,"parentId":818,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/compile.js","layer":"ssr"},"startTime":1767951846245,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4896,"timestamp":61704243,"id":840,"parentId":818,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/parse.js","layer":"ssr"},"startTime":1767951846245,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4966,"timestamp":61704414,"id":841,"parentId":818,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/postprocess.js","layer":"ssr"},"startTime":1767951846245,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1255,"timestamp":61748687,"id":842,"parentId":818,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/preprocess.js","layer":"ssr"},"startTime":1767951846290,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1369,"timestamp":61767249,"id":843,"parentId":810,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/index.js","layer":"ssr"},"startTime":1767951846308,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":928,"timestamp":61772034,"id":844,"parentId":812,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-destination@2.0.1/node_modules/micromark-factory-destination/index.js","layer":"ssr"},"startTime":1767951846313,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1411,"timestamp":61775934,"id":845,"parentId":830,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/deserialize.js","layer":"ssr"},"startTime":1767951846317,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1881,"timestamp":61781664,"id":846,"parentId":830,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/serialize.js","layer":"ssr"},"startTime":1767951846323,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1464,"timestamp":61784774,"id":847,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/configure.js","layer":"ssr"},"startTime":1767951846326,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1736,"timestamp":61784978,"id":848,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/join.js","layer":"ssr"},"startTime":1767951846326,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2119,"timestamp":61785168,"id":849,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/unsafe.js","layer":"ssr"},"startTime":1767951846326,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1471,"timestamp":61799285,"id":850,"parentId":812,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-label@2.0.1/node_modules/micromark-factory-label/index.js","layer":"ssr"},"startTime":1767951846340,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1876,"timestamp":61799483,"id":851,"parentId":812,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-title@2.0.1/node_modules/micromark-factory-title/index.js","layer":"ssr"},"startTime":1767951846340,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1557,"timestamp":61803968,"id":852,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/break.js","layer":"ssr"},"startTime":1767951846345,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1652,"timestamp":61804185,"id":853,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js","layer":"ssr"},"startTime":1767951846345,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2133,"timestamp":61804356,"id":854,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/code.js","layer":"ssr"},"startTime":1767951846345,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1898,"timestamp":61809459,"id":855,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/definition.js","layer":"ssr"},"startTime":1767951846350,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2269,"timestamp":61809661,"id":856,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js","layer":"ssr"},"startTime":1767951846351,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2755,"timestamp":61809829,"id":857,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/heading.js","layer":"ssr"},"startTime":1767951846351,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1705,"timestamp":61813845,"id":858,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/html.js","layer":"ssr"},"startTime":1767951846355,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1980,"timestamp":61814064,"id":859,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js","layer":"ssr"},"startTime":1767951846355,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2451,"timestamp":61814221,"id":860,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js","layer":"ssr"},"startTime":1767951846355,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2962,"timestamp":61814375,"id":861,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image.js","layer":"ssr"},"startTime":1767951846355,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":786,"timestamp":61820336,"id":862,"parentId":812,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-whitespace@2.0.1/node_modules/micromark-factory-whitespace/index.js","layer":"ssr"},"startTime":1767951846361,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1809,"timestamp":61823274,"id":863,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link.js","layer":"ssr"},"startTime":1767951846364,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2105,"timestamp":61823466,"id":864,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js","layer":"ssr"},"startTime":1767951846364,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2773,"timestamp":61823639,"id":865,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list.js","layer":"ssr"},"startTime":1767951846365,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1802,"timestamp":61828794,"id":866,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list-item.js","layer":"ssr"},"startTime":1767951846370,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1863,"timestamp":61829020,"id":867,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js","layer":"ssr"},"startTime":1767951846370,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1997,"timestamp":61829201,"id":868,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/root.js","layer":"ssr"},"startTime":1767951846370,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1270,"timestamp":61831835,"id":869,"parentId":815,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-html-tag-name@2.0.1/node_modules/micromark-util-html-tag-name/index.js","layer":"ssr"},"startTime":1767951846373,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1641,"timestamp":61832054,"id":870,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/strong.js","layer":"ssr"},"startTime":1767951846373,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1745,"timestamp":61840050,"id":871,"parentId":832,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/lib/index.js","layer":"ssr"},"startTime":1767951846381,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1858,"timestamp":61840248,"id":872,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/association.js","layer":"ssr"},"startTime":1767951846381,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5172,"timestamp":61843992,"id":873,"parentId":827,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/character-entities@2.0.2/node_modules/character-entities/index.js","layer":"ssr"},"startTime":1767951846385,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5423,"timestamp":61844185,"id":874,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/compile-pattern.js","layer":"ssr"},"startTime":1767951846385,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6128,"timestamp":61844336,"id":875,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-phrasing.js","layer":"ssr"},"startTime":1767951846385,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6480,"timestamp":61844491,"id":876,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-flow.js","layer":"ssr"},"startTime":1767951846385,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1352,"timestamp":61852588,"id":877,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/indent-lines.js","layer":"ssr"},"startTime":1767951846393,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2426,"timestamp":61852780,"id":878,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/safe.js","layer":"ssr"},"startTime":1767951846394,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2699,"timestamp":61852927,"id":879,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/track.js","layer":"ssr"},"startTime":1767951846394,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":811,"timestamp":61861274,"id":880,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/text.js","layer":"ssr"},"startTime":1767951846402,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":931,"timestamp":61861479,"id":881,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js","layer":"ssr"},"startTime":1767951846402,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1572,"timestamp":61866326,"id":882,"parentId":840,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/constructs.js","layer":"ssr"},"startTime":1767951846407,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3657,"timestamp":61866528,"id":883,"parentId":840,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/create-tokenizer.js","layer":"ssr"},"startTime":1767951846407,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1726,"timestamp":61871821,"id":884,"parentId":840,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/content.js","layer":"ssr"},"startTime":1767951846413,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3077,"timestamp":61872055,"id":885,"parentId":840,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/document.js","layer":"ssr"},"startTime":1767951846413,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1410,"timestamp":61880623,"id":886,"parentId":840,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/flow.js","layer":"ssr"},"startTime":1767951846422,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2395,"timestamp":61880848,"id":887,"parentId":840,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/text.js","layer":"ssr"},"startTime":1767951846422,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1338,"timestamp":61914058,"id":888,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zwitch@2.0.4/node_modules/zwitch/index.js","layer":"ssr"},"startTime":1767951846455,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1548,"timestamp":61914340,"id":889,"parentId":845,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/types.js","layer":"ssr"},"startTime":1767951846455,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1429,"timestamp":61919955,"id":890,"parentId":848,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js","layer":"ssr"},"startTime":1767951846461,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1651,"timestamp":61920201,"id":891,"parentId":848,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js","layer":"ssr"},"startTime":1767951846461,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2572,"timestamp":61920365,"id":892,"parentId":843,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/lib/splice-buffer.js","layer":"ssr"},"startTime":1767951846461,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1782,"timestamp":61923327,"id":893,"parentId":852,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js","layer":"ssr"},"startTime":1767951846464,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1812,"timestamp":61923548,"id":894,"parentId":854,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-fence.js","layer":"ssr"},"startTime":1767951846464,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1841,"timestamp":61923716,"id":895,"parentId":855,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-quote.js","layer":"ssr"},"startTime":1767951846465,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1868,"timestamp":61923879,"id":896,"parentId":856,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js","layer":"ssr"},"startTime":1767951846465,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":832,"timestamp":61927893,"id":897,"parentId":856,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js","layer":"ssr"},"startTime":1767951846469,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1076,"timestamp":61928113,"id":898,"parentId":856,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-info.js","layer":"ssr"},"startTime":1767951846469,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2181,"timestamp":61932537,"id":899,"parentId":865,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js","layer":"ssr"},"startTime":1767951846473,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2476,"timestamp":61932743,"id":900,"parentId":863,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js","layer":"ssr"},"startTime":1767951846474,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2645,"timestamp":61932910,"id":901,"parentId":865,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js","layer":"ssr"},"startTime":1767951846474,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2682,"timestamp":61933089,"id":902,"parentId":865,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js","layer":"ssr"},"startTime":1767951846474,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2723,"timestamp":61933244,"id":903,"parentId":865,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule.js","layer":"ssr"},"startTime":1767951846474,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2799,"timestamp":61933396,"id":904,"parentId":866,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js","layer":"ssr"},"startTime":1767951846474,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2841,"timestamp":61933548,"id":905,"parentId":870,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-strong.js","layer":"ssr"},"startTime":1767951846474,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":604,"timestamp":61942761,"id":906,"parentId":881,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js","layer":"ssr"},"startTime":1767951846484,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":679,"timestamp":61948715,"id":907,"parentId":837,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/escape-string-regexp@5.0.0/node_modules/escape-string-regexp/index.js","layer":"ssr"},"startTime":1767951846490,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":989,"timestamp":61988765,"id":908,"parentId":854,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/longest-streak@3.1.0/node_modules/longest-streak/index.js","layer":"ssr"},"startTime":1767951846530,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":691,"timestamp":61999957,"id":909,"parentId":868,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/index.js","layer":"ssr"},"startTime":1767951846541,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":765,"timestamp":62004028,"id":910,"parentId":909,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/lib/index.js","layer":"ssr"},"startTime":1767951846545,"traceId":"6749762fed06a213"},{"name":"make","duration":5248994,"timestamp":56768280,"id":22,"parentId":20,"tags":{},"startTime":1767951841309,"traceId":"6749762fed06a213"},{"name":"get-entries","duration":659,"timestamp":62019212,"id":912,"parentId":911,"tags":{},"startTime":1767951846560,"traceId":"6749762fed06a213"},{"name":"node-file-trace-plugin","duration":103498,"timestamp":62025715,"id":913,"parentId":911,"tags":{"traceEntryCount":"10"},"startTime":1767951846567,"traceId":"6749762fed06a213"},{"name":"collect-traced-files","duration":405,"timestamp":62129224,"id":914,"parentId":911,"tags":{},"startTime":1767951846670,"traceId":"6749762fed06a213"},{"name":"finish-modules","duration":110738,"timestamp":62018897,"id":911,"parentId":21,"tags":{},"startTime":1767951846560,"traceId":"6749762fed06a213"},{"name":"chunk-graph","duration":23329,"timestamp":62191023,"id":916,"parentId":915,"tags":{},"startTime":1767951846732,"traceId":"6749762fed06a213"},{"name":"optimize-modules","duration":34,"timestamp":62214512,"id":918,"parentId":915,"tags":{},"startTime":1767951846755,"traceId":"6749762fed06a213"},{"name":"optimize-chunks","duration":16149,"timestamp":62214653,"id":919,"parentId":915,"tags":{},"startTime":1767951846756,"traceId":"6749762fed06a213"},{"name":"optimize-tree","duration":108,"timestamp":62230884,"id":920,"parentId":915,"tags":{},"startTime":1767951846772,"traceId":"6749762fed06a213"},{"name":"optimize-chunk-modules","duration":26648,"timestamp":62231108,"id":921,"parentId":915,"tags":{},"startTime":1767951846772,"traceId":"6749762fed06a213"},{"name":"optimize","duration":43400,"timestamp":62214446,"id":917,"parentId":915,"tags":{},"startTime":1767951846755,"traceId":"6749762fed06a213"},{"name":"module-hash","duration":30354,"timestamp":62283098,"id":922,"parentId":915,"tags":{},"startTime":1767951846824,"traceId":"6749762fed06a213"},{"name":"code-generation","duration":457656,"timestamp":62313508,"id":923,"parentId":915,"tags":{},"startTime":1767951846854,"traceId":"6749762fed06a213"},{"name":"hash","duration":6904,"timestamp":62778324,"id":924,"parentId":915,"tags":{},"startTime":1767951847319,"traceId":"6749762fed06a213"},{"name":"code-generation-jobs","duration":486,"timestamp":62785225,"id":925,"parentId":915,"tags":{},"startTime":1767951847326,"traceId":"6749762fed06a213"},{"name":"module-assets","duration":329,"timestamp":62785668,"id":926,"parentId":915,"tags":{},"startTime":1767951847327,"traceId":"6749762fed06a213"},{"name":"create-chunk-assets","duration":8347,"timestamp":62786031,"id":927,"parentId":915,"tags":{},"startTime":1767951847327,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":113503,"timestamp":62827252,"id":930,"parentId":928,"tags":{"name":"../pages/_app.js","cache":"MISS"},"startTime":1767951847368,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":121848,"timestamp":62818987,"id":929,"parentId":928,"tags":{"name":"../app/_not-found/page.js","cache":"MISS"},"startTime":1767951847360,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":105317,"timestamp":62835603,"id":932,"parentId":928,"tags":{"name":"../app/page.js","cache":"MISS"},"startTime":1767951847377,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":68926,"timestamp":62872026,"id":935,"parentId":928,"tags":{"name":"../pages/_document.js","cache":"MISS"},"startTime":1767951847413,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":68900,"timestamp":62872076,"id":936,"parentId":928,"tags":{"name":"../webpack-runtime.js","cache":"MISS"},"startTime":1767951847413,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":70150,"timestamp":62870959,"id":934,"parentId":928,"tags":{"name":"../app/settings/page.js","cache":"MISS"},"startTime":1767951847412,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":178748,"timestamp":62828044,"id":931,"parentId":928,"tags":{"name":"../pages/_error.js","cache":"MISS"},"startTime":1767951847369,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":156038,"timestamp":62884257,"id":938,"parentId":928,"tags":{"name":"526.js","cache":"MISS"},"startTime":1767951847425,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":154522,"timestamp":62891086,"id":940,"parentId":928,"tags":{"name":"392.js","cache":"MISS"},"startTime":1767951847432,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":184022,"timestamp":62889481,"id":939,"parentId":928,"tags":{"name":"799.js","cache":"MISS"},"startTime":1767951847430,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":390702,"timestamp":62837925,"id":933,"parentId":928,"tags":{"name":"../app/project/[id]/page.js","cache":"MISS"},"startTime":1767951847379,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":360591,"timestamp":62872398,"id":937,"parentId":928,"tags":{"name":"673.js","cache":"MISS"},"startTime":1767951847413,"traceId":"6749762fed06a213"}]
|
|
10
|
+
[{"name":"minify-webpack-plugin-optimize","duration":432197,"timestamp":62800821,"id":928,"parentId":20,"tags":{"compilationName":"server","mangle":"[object Object]"},"startTime":1767951847342,"traceId":"6749762fed06a213"},{"name":"css-minimizer-plugin","duration":136,"timestamp":63233226,"id":941,"parentId":20,"tags":{},"startTime":1767951847774,"traceId":"6749762fed06a213"},{"name":"create-trace-assets","duration":1318,"timestamp":63233538,"id":942,"parentId":21,"tags":{},"startTime":1767951847774,"traceId":"6749762fed06a213"},{"name":"seal","duration":1085395,"timestamp":62160480,"id":915,"parentId":20,"tags":{},"startTime":1767951846701,"traceId":"6749762fed06a213"},{"name":"webpack-compilation","duration":6509032,"timestamp":56748412,"id":20,"parentId":17,"tags":{"name":"server"},"startTime":1767951841289,"traceId":"6749762fed06a213"},{"name":"emit","duration":6327,"timestamp":63257843,"id":943,"parentId":17,"tags":{},"startTime":1767951847799,"traceId":"6749762fed06a213"},{"name":"webpack-close","duration":494683,"timestamp":63265896,"id":944,"parentId":17,"tags":{"name":"server"},"startTime":1767951847807,"traceId":"6749762fed06a213"},{"name":"webpack-generate-error-stats","duration":2401,"timestamp":63760640,"id":945,"parentId":944,"tags":{},"startTime":1767951848302,"traceId":"6749762fed06a213"},{"name":"run-webpack-compiler","duration":7266340,"timestamp":56497042,"id":17,"parentId":16,"tags":{},"startTime":1767951841038,"traceId":"6749762fed06a213"},{"name":"format-webpack-messages","duration":114,"timestamp":63763392,"id":946,"parentId":16,"tags":{},"startTime":1767951848304,"traceId":"6749762fed06a213"},{"name":"worker-main-server","duration":7267142,"timestamp":56496554,"id":16,"parentId":1,"tags":{},"startTime":1767951841037,"traceId":"6749762fed06a213"},{"name":"create-entrypoints","duration":16353,"timestamp":64497315,"id":950,"parentId":948,"tags":{},"startTime":1767951849038,"traceId":"6749762fed06a213"},{"name":"generate-webpack-config","duration":110947,"timestamp":64513808,"id":951,"parentId":949,"tags":{},"startTime":1767951849055,"traceId":"6749762fed06a213"},{"name":"make","duration":1128,"timestamp":64758543,"id":953,"parentId":952,"tags":{},"startTime":1767951849299,"traceId":"6749762fed06a213"},{"name":"chunk-graph","duration":601,"timestamp":64763285,"id":955,"parentId":954,"tags":{},"startTime":1767951849304,"traceId":"6749762fed06a213"},{"name":"optimize-modules","duration":33,"timestamp":64764026,"id":957,"parentId":954,"tags":{},"startTime":1767951849305,"traceId":"6749762fed06a213"},{"name":"optimize-chunks","duration":871,"timestamp":64764165,"id":958,"parentId":954,"tags":{},"startTime":1767951849305,"traceId":"6749762fed06a213"},{"name":"optimize-tree","duration":107,"timestamp":64765119,"id":959,"parentId":954,"tags":{},"startTime":1767951849306,"traceId":"6749762fed06a213"},{"name":"optimize-chunk-modules","duration":497,"timestamp":64765415,"id":960,"parentId":954,"tags":{},"startTime":1767951849306,"traceId":"6749762fed06a213"},{"name":"optimize","duration":2058,"timestamp":64763956,"id":956,"parentId":954,"tags":{},"startTime":1767951849305,"traceId":"6749762fed06a213"},{"name":"module-hash","duration":135,"timestamp":64767442,"id":961,"parentId":954,"tags":{},"startTime":1767951849308,"traceId":"6749762fed06a213"},{"name":"code-generation","duration":302,"timestamp":64767642,"id":962,"parentId":954,"tags":{},"startTime":1767951849309,"traceId":"6749762fed06a213"},{"name":"hash","duration":607,"timestamp":64768349,"id":963,"parentId":954,"tags":{},"startTime":1767951849309,"traceId":"6749762fed06a213"},{"name":"code-generation-jobs","duration":215,"timestamp":64768951,"id":964,"parentId":954,"tags":{},"startTime":1767951849310,"traceId":"6749762fed06a213"},{"name":"module-assets","duration":120,"timestamp":64769121,"id":965,"parentId":954,"tags":{},"startTime":1767951849310,"traceId":"6749762fed06a213"},{"name":"create-chunk-assets","duration":271,"timestamp":64769254,"id":966,"parentId":954,"tags":{},"startTime":1767951849310,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":1029,"timestamp":64782324,"id":968,"parentId":967,"tags":{"name":"interception-route-rewrite-manifest.js","cache":"MISS"},"startTime":1767951849323,"traceId":"6749762fed06a213"},{"name":"minify-webpack-plugin-optimize","duration":2581,"timestamp":64780785,"id":967,"parentId":952,"tags":{"compilationName":"edge-server","mangle":"[object Object]"},"startTime":1767951849322,"traceId":"6749762fed06a213"},{"name":"css-minimizer-plugin","duration":111,"timestamp":64783451,"id":969,"parentId":952,"tags":{},"startTime":1767951849324,"traceId":"6749762fed06a213"},{"name":"seal","duration":24850,"timestamp":64762610,"id":954,"parentId":952,"tags":{},"startTime":1767951849304,"traceId":"6749762fed06a213"},{"name":"webpack-compilation","duration":39428,"timestamp":64748423,"id":952,"parentId":949,"tags":{"name":"edge-server"},"startTime":1767951849289,"traceId":"6749762fed06a213"},{"name":"emit","duration":3928,"timestamp":64788226,"id":970,"parentId":949,"tags":{},"startTime":1767951849329,"traceId":"6749762fed06a213"},{"name":"webpack-close","duration":15256,"timestamp":64793331,"id":971,"parentId":949,"tags":{"name":"edge-server"},"startTime":1767951849334,"traceId":"6749762fed06a213"},{"name":"webpack-generate-error-stats","duration":2377,"timestamp":64808643,"id":972,"parentId":971,"tags":{},"startTime":1767951849350,"traceId":"6749762fed06a213"},{"name":"run-webpack-compiler","duration":313842,"timestamp":64497304,"id":949,"parentId":948,"tags":{},"startTime":1767951849038,"traceId":"6749762fed06a213"},{"name":"format-webpack-messages","duration":74,"timestamp":64811152,"id":973,"parentId":948,"tags":{},"startTime":1767951849352,"traceId":"6749762fed06a213"},{"name":"worker-main-edge-server","duration":314594,"timestamp":64496751,"id":948,"parentId":1,"tags":{},"startTime":1767951849038,"traceId":"6749762fed06a213"},{"name":"create-entrypoints","duration":23705,"timestamp":65489366,"id":976,"parentId":974,"tags":{},"startTime":1767951850030,"traceId":"6749762fed06a213"},{"name":"generate-webpack-config","duration":104436,"timestamp":65513292,"id":977,"parentId":975,"tags":{},"startTime":1767951850054,"traceId":"6749762fed06a213"},{"name":"build-module","duration":12208,"timestamp":65790614,"id":991,"parentId":982,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767951850332,"traceId":"6749762fed06a213"},{"name":"build-module","duration":1696,"timestamp":65802962,"id":992,"parentId":987,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767951850344,"traceId":"6749762fed06a213"},{"name":"build-module","duration":768,"timestamp":65804705,"id":993,"parentId":988,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767951850346,"traceId":"6749762fed06a213"},{"name":"build-module","duration":672,"timestamp":65805607,"id":994,"parentId":989,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767951850347,"traceId":"6749762fed06a213"},{"name":"build-module","duration":540,"timestamp":65806318,"id":995,"parentId":990,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767951850347,"traceId":"6749762fed06a213"},{"name":"next-client-pages-loader","duration":359,"timestamp":65807745,"id":997,"parentId":996,"tags":{"absolutePagePath":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-not-found.js"},"startTime":1767951850349,"traceId":"6749762fed06a213"},{"name":"build-module","duration":6184,"timestamp":65806961,"id":996,"parentId":983,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&page=%2F_not-found%2Fpage!","layer":"app-pages-browser"},"startTime":1767951850348,"traceId":"6749762fed06a213"},{"name":"next-client-pages-loader","duration":70,"timestamp":65814340,"id":999,"parentId":998,"tags":{"absolutePagePath":"next/dist/pages/_app"},"startTime":1767951850355,"traceId":"6749762fed06a213"},{"name":"build-module","duration":2114,"timestamp":65813265,"id":998,"parentId":984,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!","layer":"pages-dir-browser"},"startTime":1767951850354,"traceId":"6749762fed06a213"},{"name":"next-client-pages-loader","duration":2570,"timestamp":65815615,"id":1001,"parentId":1000,"tags":{"absolutePagePath":"next/dist/pages/_error"},"startTime":1767951850357,"traceId":"6749762fed06a213"},{"name":"build-module","duration":3695,"timestamp":65815488,"id":1000,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!","layer":"pages-dir-browser"},"startTime":1767951850356,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16103,"timestamp":65840780,"id":1002,"parentId":980,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/next.js","layer":"pages-dir-browser"},"startTime":1767951850382,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":24310,"timestamp":65844208,"id":1003,"parentId":985,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/router.js","layer":"pages-dir-browser"},"startTime":1767951850385,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":37951,"timestamp":65844563,"id":1004,"parentId":981,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-next.js","layer":"app-pages-browser"},"startTime":1767951850385,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4468,"timestamp":65897982,"id":1005,"parentId":996,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-not-found.js","layer":"app-pages-browser"},"startTime":1767951850439,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9385,"timestamp":65909608,"id":1007,"parentId":1003,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/with-router.js","layer":"pages-dir-browser"},"startTime":1767951850451,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17510,"timestamp":65909825,"id":1009,"parentId":991,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1767951850451,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":22161,"timestamp":65909922,"id":1010,"parentId":991,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js","layer":"app-pages-browser"},"startTime":1767951850451,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":23235,"timestamp":65910229,"id":1012,"parentId":991,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js","layer":"app-pages-browser"},"startTime":1767951850451,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":34940,"timestamp":65909428,"id":1006,"parentId":1002,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/webpack.js","layer":"pages-dir-browser"},"startTime":1767951850450,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":37337,"timestamp":65910387,"id":1014,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1767951850451,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":41216,"timestamp":65910466,"id":1015,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1767951850451,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":60721,"timestamp":65910115,"id":1011,"parentId":991,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1767951850451,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":61676,"timestamp":65910311,"id":1013,"parentId":991,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js","layer":"app-pages-browser"},"startTime":1767951850451,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":81952,"timestamp":65909741,"id":1008,"parentId":1002,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/index.js","layer":"pages-dir-browser"},"startTime":1767951850451,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2134,"timestamp":66014830,"id":1017,"parentId":1002,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/require-instrumentation-client.js","layer":"pages-dir-browser"},"startTime":1767951850556,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2955,"timestamp":66015156,"id":1018,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/require-instrumentation-client.js","layer":"app-pages-browser"},"startTime":1767951850556,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":24817,"timestamp":66014677,"id":1016,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1767951850556,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5512,"timestamp":66084421,"id":1019,"parentId":1003,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"pages-dir-browser"},"startTime":1767951850625,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5759,"timestamp":66097053,"id":1020,"parentId":991,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js","layer":"app-pages-browser"},"startTime":1767951850638,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":14899,"timestamp":66097262,"id":1021,"parentId":991,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js","layer":"app-pages-browser"},"startTime":1767951850638,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5568,"timestamp":66152529,"id":1022,"parentId":991,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js","layer":"app-pages-browser"},"startTime":1767951850693,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6209,"timestamp":66154017,"id":1023,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_app.js","layer":"pages-dir-browser"},"startTime":1767951850695,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12302,"timestamp":66154122,"id":1024,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_error.js","layer":"pages-dir-browser"},"startTime":1767951850695,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2320,"timestamp":66168574,"id":1025,"parentId":1003,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767951850709,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4843,"timestamp":66168720,"id":1027,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-fallback.js","layer":"app-pages-browser"},"startTime":1767951850710,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8076,"timestamp":66168808,"id":1029,"parentId":991,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js","layer":"app-pages-browser"},"startTime":1767951850710,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":14147,"timestamp":66173872,"id":1030,"parentId":992,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"app-pages-browser"},"startTime":1767951850715,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":20931,"timestamp":66175168,"id":1031,"parentId":993,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"app-pages-browser"},"startTime":1767951850716,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":39924,"timestamp":66168768,"id":1028,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1767951850710,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":79060,"timestamp":66168675,"id":1026,"parentId":1003,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/router.js","layer":"pages-dir-browser"},"startTime":1767951850710,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":788,"timestamp":66309784,"id":1037,"parentId":1006,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/deployment-id.js","layer":"pages-dir-browser"},"startTime":1767951850851,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1169,"timestamp":66310825,"id":1038,"parentId":1015,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1767951850852,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7113,"timestamp":66307697,"id":1033,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"app-pages-browser"},"startTime":1767951850849,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":8230,"timestamp":66307827,"id":1034,"parentId":994,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"app-pages-browser"},"startTime":1767951850849,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8853,"timestamp":66308043,"id":1035,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767951850849,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10204,"timestamp":66308164,"id":1036,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767951850849,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17781,"timestamp":66311059,"id":1039,"parentId":1014,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/set-attributes-from-props.js","layer":"app-pages-browser"},"startTime":1767951850852,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":24517,"timestamp":66307411,"id":1032,"parentId":995,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"app-pages-browser"},"startTime":1767951850848,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8583,"timestamp":66345956,"id":1040,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/head-manager.js","layer":"pages-dir-browser"},"startTime":1767951850887,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11257,"timestamp":66346134,"id":1041,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/page-loader.js","layer":"pages-dir-browser"},"startTime":1767951850887,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12621,"timestamp":66346306,"id":1043,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-base-path.js","layer":"pages-dir-browser"},"startTime":1767951850887,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17249,"timestamp":66346228,"id":1042,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-announcer.js","layer":"pages-dir-browser"},"startTime":1767951850887,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":18084,"timestamp":66346410,"id":1044,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/has-base-path.js","layer":"pages-dir-browser"},"startTime":1767951850887,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":22153,"timestamp":66346482,"id":1045,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/script.js","layer":"pages-dir-browser"},"startTime":1767951850887,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5115,"timestamp":66373645,"id":1046,"parentId":1015,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":"app-pages-browser"},"startTime":1767951850915,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3000,"timestamp":66376242,"id":1047,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767951850917,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3333,"timestamp":66376373,"id":1048,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767951850917,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3243,"timestamp":66380193,"id":1049,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/mitt.js","layer":"pages-dir-browser"},"startTime":1767951850921,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3757,"timestamp":66380295,"id":1050,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/runtime-config.external.js","layer":"pages-dir-browser"},"startTime":1767951850921,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7709,"timestamp":66384173,"id":1051,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"pages-dir-browser"},"startTime":1767951850925,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8143,"timestamp":66384283,"id":1052,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767951850925,"traceId":"6749762fed06a213"}]
|
|
11
|
+
[{"name":"build-module-js","duration":6874,"timestamp":66392847,"id":1053,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767951850934,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7492,"timestamp":66392975,"id":1054,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"pages-dir-browser"},"startTime":1767951850934,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10506,"timestamp":66393132,"id":1055,"parentId":1011,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1767951850934,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4736,"timestamp":66401084,"id":1057,"parentId":1011,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1767951850942,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7848,"timestamp":66400924,"id":1056,"parentId":1011,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1767951850942,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5883,"timestamp":66406355,"id":1058,"parentId":1028,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767951850947,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7459,"timestamp":66406470,"id":1059,"parentId":1011,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1767951850947,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3720,"timestamp":66416637,"id":1061,"parentId":1011,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/bfcache.js","layer":"app-pages-browser"},"startTime":1767951850958,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5652,"timestamp":66416515,"id":1060,"parentId":1011,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/use-action-queue.js","layer":"app-pages-browser"},"startTime":1767951850957,"traceId":"6749762fed06a213"},{"name":"build-module","duration":647,"timestamp":66429262,"id":1077,"parentId":1017,"tags":{"layer":null},"startTime":1767951850970,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3545,"timestamp":66428405,"id":1066,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"pages-dir-browser"},"startTime":1767951850969,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10145,"timestamp":66428157,"id":1063,"parentId":1013,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/handle-isr-error.js","layer":"app-pages-browser"},"startTime":1767951850969,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11038,"timestamp":66428258,"id":1064,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/search-params.browser.js","layer":"app-pages-browser"},"startTime":1767951850969,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13107,"timestamp":66428038,"id":1062,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/adapters.js","layer":"pages-dir-browser"},"startTime":1767951850969,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13484,"timestamp":66428338,"id":1065,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/params.browser.js","layer":"app-pages-browser"},"startTime":1767951850969,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":14423,"timestamp":66428445,"id":1067,"parentId":1028,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1767951850969,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":15229,"timestamp":66428512,"id":1068,"parentId":1028,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1767951850969,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":24477,"timestamp":66428578,"id":1069,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js","layer":"pages-dir-browser"},"startTime":1767951850969,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":25236,"timestamp":66428713,"id":1070,"parentId":1011,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js","layer":"app-pages-browser"},"startTime":1767951850970,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":25951,"timestamp":66428791,"id":1071,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"pages-dir-browser"},"startTime":1767951850970,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":26773,"timestamp":66428909,"id":1073,"parentId":1011,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"app-pages-browser"},"startTime":1767951850970,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":28425,"timestamp":66428851,"id":1072,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"pages-dir-browser"},"startTime":1767951850970,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":29411,"timestamp":66429053,"id":1075,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1767951850970,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":30770,"timestamp":66429132,"id":1076,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/tracing/tracer.js","layer":"pages-dir-browser"},"startTime":1767951850970,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":30528,"timestamp":66430181,"id":1080,"parentId":1011,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"app-pages-browser"},"startTime":1767951850971,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":35367,"timestamp":66430070,"id":1079,"parentId":1011,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"app-pages-browser"},"startTime":1767951850971,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":37594,"timestamp":66428974,"id":1074,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/on-recoverable-error.js","layer":"pages-dir-browser"},"startTime":1767951850970,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":38214,"timestamp":66429934,"id":1078,"parentId":1011,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"app-pages-browser"},"startTime":1767951850971,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19260,"timestamp":66449462,"id":1081,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-globals.js","layer":"app-pages-browser"},"startTime":1767951850990,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19885,"timestamp":66449679,"id":1083,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1767951850991,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":22096,"timestamp":66449594,"id":1082,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/error-boundary-callbacks.js","layer":"app-pages-browser"},"startTime":1767951850990,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":31196,"timestamp":66449745,"id":1084,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-find-source-map-url.js","layer":"app-pages-browser"},"startTime":1767951850991,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":32054,"timestamp":66449870,"id":1086,"parentId":1011,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"app-pages-browser"},"startTime":1767951850991,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":34939,"timestamp":66449944,"id":1087,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js","layer":"app-pages-browser"},"startTime":1767951850991,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":39561,"timestamp":66449806,"id":1085,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-instance.js","layer":"app-pages-browser"},"startTime":1767951850991,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":420,"timestamp":66501023,"id":1089,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/jsx-runtime.js","layer":"pages-dir-browser"},"startTime":1767951851042,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5515,"timestamp":66500854,"id":1088,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-build-id.js","layer":"app-pages-browser"},"startTime":1767951851042,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5437,"timestamp":66506758,"id":1090,"parentId":1003,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/index.js","layer":"pages-dir-browser"},"startTime":1767951851048,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5760,"timestamp":66506998,"id":1093,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/client.js","layer":"pages-dir-browser"},"startTime":1767951851048,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5720,"timestamp":66507313,"id":1096,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1767951851048,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5134,"timestamp":66508186,"id":1097,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1767951851049,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2327,"timestamp":66511495,"id":1102,"parentId":1011,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1767951851052,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2789,"timestamp":66511552,"id":1103,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1767951851052,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4429,"timestamp":66511646,"id":1105,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/client.browser.js","layer":"app-pages-browser"},"startTime":1767951851053,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":23746,"timestamp":66506839,"id":1091,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"pages-dir-browser"},"startTime":1767951851048,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":24713,"timestamp":66506933,"id":1092,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/portal/index.js","layer":"pages-dir-browser"},"startTime":1767951851048,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":27332,"timestamp":66507066,"id":1094,"parentId":1021,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation-untracked.js","layer":"app-pages-browser"},"startTime":1767951851048,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":26878,"timestamp":66508233,"id":1098,"parentId":1040,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/set-attributes-from-props.js","layer":"pages-dir-browser"},"startTime":1767951851049,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":24415,"timestamp":66511584,"id":1104,"parentId":1054,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"pages-dir-browser"},"startTime":1767951851052,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":25848,"timestamp":66511376,"id":1101,"parentId":1021,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"app-pages-browser"},"startTime":1767951851052,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":28661,"timestamp":66511681,"id":1106,"parentId":1021,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1767951851053,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":29312,"timestamp":66511752,"id":1107,"parentId":1056,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"app-pages-browser"},"startTime":1767951851053,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2495,"timestamp":66544748,"id":1112,"parentId":1003,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"pages-dir-browser"},"startTime":1767951851086,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9464,"timestamp":66543618,"id":1108,"parentId":1022,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-constants.js","layer":"app-pages-browser"},"startTime":1767951851085,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7997,"timestamp":66545455,"id":1113,"parentId":1011,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1767951851086,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":14702,"timestamp":66543885,"id":1109,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"pages-dir-browser"},"startTime":1767951851085,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":14648,"timestamp":66544634,"id":1111,"parentId":1027,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/styles/access-error-styles.js","layer":"app-pages-browser"},"startTime":1767951851086,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1806,"timestamp":66564042,"id":1115,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"pages-dir-browser"},"startTime":1767951851105,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9145,"timestamp":66563755,"id":1114,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1767951851105,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9888,"timestamp":66564110,"id":1116,"parentId":1075,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1767951851105,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12031,"timestamp":66564317,"id":1117,"parentId":1069,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"pages-dir-browser"},"startTime":1767951851105,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16107,"timestamp":66564503,"id":1119,"parentId":1028,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"app-pages-browser"},"startTime":1767951851105,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16845,"timestamp":66564415,"id":1118,"parentId":1028,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"app-pages-browser"},"startTime":1767951851105,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":58610,"timestamp":66586483,"id":1121,"parentId":1081,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1767951851127,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":63395,"timestamp":66586333,"id":1120,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"pages-dir-browser"},"startTime":1767951851127,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":65073,"timestamp":66586692,"id":1122,"parentId":1028,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/nav-failure-handler.js","layer":"app-pages-browser"},"startTime":1767951851128,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":65931,"timestamp":66586889,"id":1124,"parentId":1028,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1767951851128,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":67531,"timestamp":66586801,"id":1123,"parentId":1028,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"app-pages-browser"},"startTime":1767951851128,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":68403,"timestamp":66586976,"id":1125,"parentId":1028,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"app-pages-browser"},"startTime":1767951851128,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":69424,"timestamp":66587202,"id":1127,"parentId":1028,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"app-pages-browser"},"startTime":1767951851128,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":71492,"timestamp":66587116,"id":1126,"parentId":1028,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1767951851128,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":72451,"timestamp":66587285,"id":1128,"parentId":1054,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"pages-dir-browser"},"startTime":1767951851128,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":73198,"timestamp":66587348,"id":1129,"parentId":1028,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1767951851128,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":74057,"timestamp":66587417,"id":1130,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-base-path.js","layer":"pages-dir-browser"},"startTime":1767951851128,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":82699,"timestamp":66587474,"id":1131,"parentId":1028,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/links.js","layer":"app-pages-browser"},"startTime":1767951851128,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8720,"timestamp":66674547,"id":1138,"parentId":1028,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/root-error-boundary.js","layer":"app-pages-browser"},"startTime":1767951851215,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12829,"timestamp":66674712,"id":1139,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-loader.js","layer":"pages-dir-browser"},"startTime":1767951851216,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4332,"timestamp":66709839,"id":1140,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"pages-dir-browser"},"startTime":1767951851251,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5847,"timestamp":66709947,"id":1141,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","layer":"pages-dir-browser"},"startTime":1767951851251,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6165,"timestamp":66710122,"id":1143,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":"pages-dir-browser"},"startTime":1767951851251,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":7395,"timestamp":66709995,"id":1142,"parentId":1031,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/Header.tsx","layer":"app-pages-browser"},"startTime":1767951851251,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7333,"timestamp":66711018,"id":1145,"parentId":1116,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1767951851252,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":7963,"timestamp":66711122,"id":1146,"parentId":1031,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectList.tsx","layer":"app-pages-browser"},"startTime":1767951851252,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":215044,"timestamp":66507144,"id":1095,"parentId":1031,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1767951851048,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":9582,"timestamp":66714228,"id":1148,"parentId":1031,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectModal.tsx","layer":"app-pages-browser"},"startTime":1767951851255,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4837,"timestamp":66734359,"id":1149,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/detect-domain-locale.js","layer":"pages-dir-browser"},"startTime":1767951851275,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":454791,"timestamp":66747709,"id":1150,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-locale.js","layer":"pages-dir-browser"},"startTime":1767951851289,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":455340,"timestamp":66747803,"id":1151,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-locale.js","layer":"pages-dir-browser"},"startTime":1767951851289,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9053,"timestamp":67199974,"id":1153,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"pages-dir-browser"},"startTime":1767951851741,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":635,"timestamp":67210881,"id":1160,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-api-route.js","layer":"pages-dir-browser"},"startTime":1767951851752,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6798,"timestamp":67206347,"id":1155,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":"pages-dir-browser"},"startTime":1767951851747,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7068,"timestamp":67206423,"id":1156,"parentId":1139,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":"pages-dir-browser"},"startTime":1767951851747,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11228,"timestamp":67206211,"id":1154,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"pages-dir-browser"},"startTime":1767951851747,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12997,"timestamp":67206489,"id":1157,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"pages-dir-browser"},"startTime":1767951851747,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":23660,"timestamp":67210805,"id":1159,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/resolve-href.js","layer":"pages-dir-browser"},"startTime":1767951851752,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":24756,"timestamp":67210929,"id":1161,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":"pages-dir-browser"},"startTime":1767951851752,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":25274,"timestamp":67211074,"id":1163,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/compare-states.js","layer":"pages-dir-browser"},"startTime":1767951851752,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":27482,"timestamp":67210993,"id":1162,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":"pages-dir-browser"},"startTime":1767951851752,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":28422,"timestamp":67210682,"id":1158,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"pages-dir-browser"},"startTime":1767951851752,"traceId":"6749762fed06a213"},{"name":"postcss-process","duration":664050,"timestamp":66964272,"id":1152,"parentId":1147,"tags":{},"startTime":1767951851505,"traceId":"6749762fed06a213"},{"name":"postcss-loader","duration":917104,"timestamp":66711367,"id":1147,"parentId":1144,"tags":{},"startTime":1767951851252,"traceId":"6749762fed06a213"}]
|
|
12
|
+
[{"name":"css-loader","duration":78177,"timestamp":67628769,"id":1165,"parentId":1144,"tags":{"astUsed":"true"},"startTime":1767951852170,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":483248,"timestamp":67230516,"id":1164,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"pages-dir-browser"},"startTime":1767951851771,"traceId":"6749762fed06a213"},{"name":"font-loader","duration":1146256,"timestamp":66619241,"id":1135,"parentId":1134,"tags":{},"startTime":1767951851160,"traceId":"6749762fed06a213"},{"name":"postcss","duration":4651,"timestamp":67765896,"id":1166,"parentId":1134,"tags":{},"startTime":1767951852307,"traceId":"6749762fed06a213"},{"name":"next-font-loader","duration":1180419,"timestamp":66590232,"id":1134,"parentId":1132,"tags":{},"startTime":1767951851131,"traceId":"6749762fed06a213"},{"name":"css-loader","duration":25971,"timestamp":67770593,"id":1167,"parentId":1132,"tags":{"astUsed":"true"},"startTime":1767951852311,"traceId":"6749762fed06a213"},{"name":"build-module","duration":1212826,"timestamp":66587559,"id":1132,"parentId":1099,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css.webpack[javascript/auto]!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}","layer":null},"startTime":1767951851128,"traceId":"6749762fed06a213"},{"name":"font-loader","duration":1164549,"timestamp":66636992,"id":1137,"parentId":1136,"tags":{},"startTime":1767951851178,"traceId":"6749762fed06a213"},{"name":"postcss","duration":716,"timestamp":67801622,"id":1168,"parentId":1136,"tags":{},"startTime":1767951852343,"traceId":"6749762fed06a213"},{"name":"next-font-loader","duration":1165466,"timestamp":66636949,"id":1136,"parentId":1133,"tags":{},"startTime":1767951851178,"traceId":"6749762fed06a213"},{"name":"css-loader","duration":5481,"timestamp":67802381,"id":1169,"parentId":1133,"tags":{"astUsed":"true"},"startTime":1767951852343,"traceId":"6749762fed06a213"},{"name":"build-module","duration":1218575,"timestamp":66589946,"id":1133,"parentId":1100,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css.webpack[javascript/auto]!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}","layer":null},"startTime":1767951851131,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":18323,"timestamp":67813566,"id":1171,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"pages-dir-browser"},"startTime":1767951852354,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":20354,"timestamp":67813278,"id":1170,"parentId":1031,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useProjectStore.ts","layer":"app-pages-browser"},"startTime":1767951852354,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5821,"timestamp":67837910,"id":1172,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/constants.js","layer":"pages-dir-browser"},"startTime":1767951852379,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10506,"timestamp":67838233,"id":1175,"parentId":1045,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request-idle-callback.js","layer":"pages-dir-browser"},"startTime":1767951852379,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12766,"timestamp":67838154,"id":1174,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/bloom-filter.js","layer":"pages-dir-browser"},"startTime":1767951852379,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":752,"timestamp":67851802,"id":1184,"parentId":1045,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/index.js","layer":"pages-dir-browser"},"startTime":1767951852393,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":20478,"timestamp":67838401,"id":1177,"parentId":1031,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/index.ts","layer":"app-pages-browser"},"startTime":1767951852379,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":23642,"timestamp":67838035,"id":1173,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"pages-dir-browser"},"startTime":1767951852379,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":27274,"timestamp":67838297,"id":1176,"parentId":1041,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/constants.js","layer":"pages-dir-browser"},"startTime":1767951852379,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17190,"timestamp":67851221,"id":1179,"parentId":1044,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"pages-dir-browser"},"startTime":1767951852392,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17704,"timestamp":67851291,"id":1180,"parentId":1068,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"app-pages-browser"},"startTime":1767951852392,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":18311,"timestamp":67851365,"id":1181,"parentId":1052,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config.js","layer":"pages-dir-browser"},"startTime":1767951852392,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":20754,"timestamp":67851428,"id":1182,"parentId":1059,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1767951852392,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":23145,"timestamp":67851498,"id":1183,"parentId":1034,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/workspace/WorkspaceLayout.tsx","layer":"app-pages-browser"},"startTime":1767951852392,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":24628,"timestamp":67851078,"id":1178,"parentId":1041,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","layer":"pages-dir-browser"},"startTime":1767951852392,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":9596,"timestamp":67889261,"id":1185,"parentId":1034,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/button.tsx","layer":"app-pages-browser"},"startTime":1767951852430,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":9882,"timestamp":67889550,"id":1186,"parentId":1032,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/input.tsx","layer":"app-pages-browser"},"startTime":1767951852430,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10032,"timestamp":67889905,"id":1188,"parentId":1060,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"app-pages-browser"},"startTime":1767951852431,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":12119,"timestamp":67889737,"id":1187,"parentId":1032,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1767951852431,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6201,"timestamp":67902679,"id":1189,"parentId":1180,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"app-pages-browser"},"startTime":1767951852444,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6919,"timestamp":67902850,"id":1190,"parentId":1065,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/params.browser.prod.js","layer":"app-pages-browser"},"startTime":1767951852444,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7287,"timestamp":67902937,"id":1191,"parentId":1075,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/report-global-error.js","layer":"app-pages-browser"},"startTime":1767951852444,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7587,"timestamp":67903026,"id":1192,"parentId":1074,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/report-global-error.js","layer":"pages-dir-browser"},"startTime":1767951852444,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9102,"timestamp":67903163,"id":1194,"parentId":1062,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/as-path-to-search-params.js","layer":"pages-dir-browser"},"startTime":1767951852444,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9903,"timestamp":67903090,"id":1193,"parentId":1064,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/search-params.browser.prod.js","layer":"app-pages-browser"},"startTime":1767951852444,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11992,"timestamp":67903216,"id":1195,"parentId":1079,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1767951852444,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7865,"timestamp":67910844,"id":1196,"parentId":1080,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1767951852452,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9682,"timestamp":67919126,"id":1197,"parentId":1079,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1767951852460,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5483,"timestamp":67931742,"id":1198,"parentId":1073,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"app-pages-browser"},"startTime":1767951852473,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6695,"timestamp":67931928,"id":1199,"parentId":1071,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"pages-dir-browser"},"startTime":1767951852473,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7824,"timestamp":67932076,"id":1200,"parentId":1086,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"app-pages-browser"},"startTime":1767951852473,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16132,"timestamp":67932181,"id":1201,"parentId":1079,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-params.js","layer":"app-pages-browser"},"startTime":1767951852473,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11371,"timestamp":67940211,"id":1202,"parentId":1079,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/set-cache-busting-search-param.js","layer":"app-pages-browser"},"startTime":1767951852481,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":15608,"timestamp":67940381,"id":1203,"parentId":1085,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/segment-cache.js","layer":"app-pages-browser"},"startTime":1767951852481,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16603,"timestamp":67940474,"id":1204,"parentId":1085,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"app-pages-browser"},"startTime":1767951852481,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17040,"timestamp":67940678,"id":1206,"parentId":1075,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"app-pages-browser"},"startTime":1767951852482,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":17236,"timestamp":67941076,"id":1207,"parentId":1074,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"pages-dir-browser"},"startTime":1767951852482,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":24741,"timestamp":67940559,"id":1205,"parentId":1087,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"app-pages-browser"},"startTime":1767951852481,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5649,"timestamp":67972126,"id":1208,"parentId":1199,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"pages-dir-browser"},"startTime":1767951852513,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8681,"timestamp":67979019,"id":1209,"parentId":1087,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"app-pages-browser"},"startTime":1767951852520,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9509,"timestamp":67979189,"id":1210,"parentId":1087,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"app-pages-browser"},"startTime":1767951852520,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10163,"timestamp":67979276,"id":1211,"parentId":1085,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"app-pages-browser"},"startTime":1767951852520,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":521,"timestamp":67990463,"id":1212,"parentId":1096,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.production.js","layer":"app-pages-browser"},"startTime":1767951852531,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5170,"timestamp":67990525,"id":1213,"parentId":1097,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/cjs/react.production.js","layer":"app-pages-browser"},"startTime":1767951852531,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9317,"timestamp":67990547,"id":1214,"parentId":1102,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/cjs/react-dom.production.js","layer":"app-pages-browser"},"startTime":1767951852531,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":2268809,"timestamp":65735984,"id":983,"parentId":979,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&page=%2F_not-found%2Fpage!"},"startTime":1767951850277,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":182537,"timestamp":68004405,"id":1217,"parentId":1103,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/cjs/react-dom-client.production.js","layer":"app-pages-browser"},"startTime":1767951852545,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":186805,"timestamp":68004191,"id":1215,"parentId":1208,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"pages-dir-browser"},"startTime":1767951852545,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":186940,"timestamp":68004330,"id":1216,"parentId":1208,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"pages-dir-browser"},"startTime":1767951852545,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12647,"timestamp":68195026,"id":1223,"parentId":1105,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.production.js","layer":"app-pages-browser"},"startTime":1767951852736,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19608,"timestamp":68194805,"id":1220,"parentId":1109,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767951852736,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":20315,"timestamp":68194652,"id":1219,"parentId":1109,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"pages-dir-browser"},"startTime":1767951852736,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":337,"timestamp":68216584,"id":1227,"parentId":1089,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/cjs/react-jsx-runtime.production.js","layer":"pages-dir-browser"},"startTime":1767951852757,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":23528,"timestamp":68194880,"id":1221,"parentId":1109,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"pages-dir-browser"},"startTime":1767951852736,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5519,"timestamp":68216375,"id":1224,"parentId":1062,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"pages-dir-browser"},"startTime":1767951852757,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5982,"timestamp":68216542,"id":1226,"parentId":1120,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"pages-dir-browser"},"startTime":1767951852757,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2849,"timestamp":68222705,"id":1228,"parentId":1090,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/cjs/react.production.js","layer":"pages-dir-browser"},"startTime":1767951852764,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12121,"timestamp":68216486,"id":1225,"parentId":1119,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"app-pages-browser"},"startTime":1767951852757,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7492,"timestamp":68222762,"id":1229,"parentId":1129,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1767951852764,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11007,"timestamp":68222851,"id":1230,"parentId":1130,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"pages-dir-browser"},"startTime":1767951852764,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1628,"timestamp":68234851,"id":1231,"parentId":1127,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1767951852776,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2163,"timestamp":68234963,"id":1232,"parentId":1128,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"pages-dir-browser"},"startTime":1767951852776,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2476,"timestamp":68235035,"id":1233,"parentId":1129,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"app-pages-browser"},"startTime":1767951852776,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2895,"timestamp":68235082,"id":1234,"parentId":1130,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"pages-dir-browser"},"startTime":1767951852776,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3124,"timestamp":68235799,"id":1235,"parentId":1229,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"app-pages-browser"},"startTime":1767951852777,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":129930,"timestamp":68239335,"id":1237,"parentId":1093,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/cjs/react-dom-client.production.js","layer":"pages-dir-browser"},"startTime":1767951852780,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":139564,"timestamp":68236551,"id":1236,"parentId":1138,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/graceful-degrade-boundary.js","layer":"app-pages-browser"},"startTime":1767951852777,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2560,"timestamp":68386120,"id":1239,"parentId":1143,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":"pages-dir-browser"},"startTime":1767951852927,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3326,"timestamp":68385975,"id":1238,"parentId":1139,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/trusted-types.js","layer":"pages-dir-browser"},"startTime":1767951852927,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":3761,"timestamp":68386171,"id":1240,"parentId":1142,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/LanguageSwitcher.tsx","layer":"app-pages-browser"},"startTime":1767951852927,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":3977,"timestamp":68386369,"id":1242,"parentId":1146,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectCard.tsx","layer":"app-pages-browser"},"startTime":1767951852927,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":5293,"timestamp":68386277,"id":1241,"parentId":1146,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectCard.tsx","layer":"app-pages-browser"},"startTime":1767951852927,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7712,"timestamp":68387675,"id":1244,"parentId":1154,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"pages-dir-browser"},"startTime":1767951852929,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8697,"timestamp":68387547,"id":1243,"parentId":1153,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js","layer":"pages-dir-browser"},"startTime":1767951852928,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4701,"timestamp":68393016,"id":1246,"parentId":1161,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":"pages-dir-browser"},"startTime":1767951852934,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6413,"timestamp":68392913,"id":1245,"parentId":1154,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js","layer":"pages-dir-browser"},"startTime":1767951852934,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1160,"timestamp":68400995,"id":1247,"parentId":1162,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":"pages-dir-browser"},"startTime":1767951852942,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2083,"timestamp":68401104,"id":1248,"parentId":1162,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":"pages-dir-browser"},"startTime":1767951852942,"traceId":"6749762fed06a213"},{"name":"build-module-css","duration":1699311,"timestamp":66710161,"id":1144,"parentId":1110,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css.webpack[javascript/auto]!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":null},"startTime":1767951851251,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":3060,"timestamp":68408139,"id":1249,"parentId":1148,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/dialog.tsx","layer":"app-pages-browser"},"startTime":1767951852949,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":408027,"timestamp":68004455,"id":1218,"parentId":1142,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/image.js","layer":"app-pages-browser"},"startTime":1767951852545,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1649,"timestamp":68413618,"id":1251,"parentId":1184,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/cjs/react-dom.production.js","layer":"pages-dir-browser"},"startTime":1767951852955,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2379,"timestamp":68420307,"id":1253,"parentId":1132,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/api.js","layer":null},"startTime":1767951852961,"traceId":"6749762fed06a213"},{"name":"build-module-json","duration":2858,"timestamp":68420375,"id":1254,"parentId":1177,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/en.json","layer":"app-pages-browser"},"startTime":1767951852961,"traceId":"6749762fed06a213"},{"name":"build-module-json","duration":1845,"timestamp":68421517,"id":1255,"parentId":1177,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/ko.json","layer":"app-pages-browser"},"startTime":1767951852962,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10125,"timestamp":68413678,"id":1252,"parentId":1176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":"pages-dir-browser"},"startTime":1767951852955,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":11559,"timestamp":68413401,"id":1250,"parentId":1242,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/card.tsx","layer":"app-pages-browser"},"startTime":1767951852954,"traceId":"6749762fed06a213"},{"name":"build-module","duration":1924541,"timestamp":66508317,"id":1099,"parentId":992,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}","layer":"app-pages-browser"},"startTime":1767951851049,"traceId":"6749762fed06a213"},{"name":"build-module","duration":1922960,"timestamp":66511053,"id":1100,"parentId":992,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}","layer":"app-pages-browser"},"startTime":1767951851052,"traceId":"6749762fed06a213"}]
|
|
13
|
+
[{"name":"build-module-css","duration":1895100,"timestamp":66544021,"id":1110,"parentId":992,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":"app-pages-browser"},"startTime":1767951851085,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":20388,"timestamp":68421559,"id":1256,"parentId":1182,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1767951852962,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":249544,"timestamp":68194939,"id":1222,"parentId":1142,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-dir/link.js","layer":"app-pages-browser"},"startTime":1767951852736,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9370,"timestamp":68446106,"id":1257,"parentId":1182,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767951852987,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10037,"timestamp":68446272,"id":1258,"parentId":1182,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unrecognized-action-error.js","layer":"app-pages-browser"},"startTime":1767951852987,"traceId":"6749762fed06a213"},{"name":"build-module","duration":225,"timestamp":68456888,"id":1259,"parentId":1099,"tags":{},"startTime":1767951852998,"traceId":"6749762fed06a213"},{"name":"build-module","duration":36,"timestamp":68457131,"id":1260,"parentId":1100,"tags":{},"startTime":1767951852998,"traceId":"6749762fed06a213"},{"name":"build-module","duration":49,"timestamp":68457175,"id":1261,"parentId":1110,"tags":{},"startTime":1767951852998,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3099,"timestamp":68457431,"id":1263,"parentId":1202,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/cache-busting-search-param.js","layer":"app-pages-browser"},"startTime":1767951852998,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3705,"timestamp":68457277,"id":1262,"parentId":1182,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"app-pages-browser"},"startTime":1767951852998,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4038,"timestamp":68457524,"id":1264,"parentId":1190,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/reflect-utils.js","layer":"app-pages-browser"},"startTime":1767951852998,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11405,"timestamp":68461799,"id":1265,"parentId":1222,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1767951853003,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12280,"timestamp":68461941,"id":1266,"parentId":1222,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"app-pages-browser"},"startTime":1767951853003,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12628,"timestamp":68462039,"id":1267,"parentId":1222,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"app-pages-browser"},"startTime":1767951853003,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":15290,"timestamp":68462118,"id":1268,"parentId":1204,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"app-pages-browser"},"startTime":1767951853003,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16056,"timestamp":68462191,"id":1269,"parentId":1204,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"app-pages-browser"},"startTime":1767951853003,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16705,"timestamp":68462253,"id":1270,"parentId":1204,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"app-pages-browser"},"startTime":1767951853003,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5218,"timestamp":68493224,"id":1272,"parentId":1204,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"app-pages-browser"},"startTime":1767951853034,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6686,"timestamp":68495822,"id":1273,"parentId":1266,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1767951853037,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7624,"timestamp":68495982,"id":1274,"parentId":1204,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/hmr-refresh-reducer.js","layer":"app-pages-browser"},"startTime":1767951853037,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8200,"timestamp":68496104,"id":1275,"parentId":1210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"app-pages-browser"},"startTime":1767951853037,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9237,"timestamp":68496177,"id":1276,"parentId":1211,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1767951853037,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12720,"timestamp":68496245,"id":1277,"parentId":1201,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js","layer":"app-pages-browser"},"startTime":1767951853037,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19936,"timestamp":68493032,"id":1271,"parentId":1204,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"app-pages-browser"},"startTime":1767951853034,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":11384,"timestamp":68525208,"id":1279,"parentId":1177,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/middleware.mjs","layer":"app-pages-browser"},"startTime":1767951853066,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":11648,"timestamp":68525386,"id":1280,"parentId":1170,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/index.mjs","layer":"app-pages-browser"},"startTime":1767951853066,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":14789,"timestamp":68524954,"id":1278,"parentId":1185,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1767951853066,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":15395,"timestamp":68525541,"id":1281,"parentId":1183,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ChatPanel.tsx","layer":"app-pages-browser"},"startTime":1767951853066,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":16818,"timestamp":68525854,"id":1283,"parentId":1183,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileViewer.tsx","layer":"app-pages-browser"},"startTime":1767951853067,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":19525,"timestamp":68525694,"id":1282,"parentId":1183,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileExplorer.tsx","layer":"app-pages-browser"},"startTime":1767951853067,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":26024,"timestamp":68526042,"id":1284,"parentId":1183,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/PreviewPanel.tsx","layer":"app-pages-browser"},"startTime":1767951853067,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":21736,"timestamp":68558858,"id":1287,"parentId":1183,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/checkpoint/CheckpointPanel.tsx","layer":"app-pages-browser"},"startTime":1767951853100,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":28673,"timestamp":68558413,"id":1285,"parentId":1183,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/database/DatabasePanel.tsx","layer":"app-pages-browser"},"startTime":1767951853099,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":40509,"timestamp":68558677,"id":1286,"parentId":1183,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/testing/TestRunner.tsx","layer":"app-pages-browser"},"startTime":1767951853100,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":3506,"timestamp":68623553,"id":1290,"parentId":1148,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/index.ts","layer":"app-pages-browser"},"startTime":1767951853164,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":20563,"timestamp":68621121,"id":1288,"parentId":1224,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"pages-dir-browser"},"startTime":1767951853162,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":28669,"timestamp":68623312,"id":1289,"parentId":1183,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/env/EnvPanel.tsx","layer":"app-pages-browser"},"startTime":1767951853164,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":88331,"timestamp":68653045,"id":1305,"parentId":1281,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageInput.tsx","layer":"app-pages-browser"},"startTime":1767951853194,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":89425,"timestamp":68652761,"id":1304,"parentId":1281,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageList.tsx","layer":"app-pages-browser"},"startTime":1767951853194,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":87628,"timestamp":68656196,"id":1307,"parentId":1284,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ErrorOverlay.tsx","layer":"app-pages-browser"},"startTime":1767951853197,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":93777,"timestamp":68653291,"id":1306,"parentId":1284,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ConsoleViewer.tsx","layer":"app-pages-browser"},"startTime":1767951853194,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":118462,"timestamp":68629149,"id":1292,"parentId":1032,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Check,Database,FolderOpen,Loader2,RefreshCw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853170,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":126867,"timestamp":68629368,"id":1294,"parentId":1183,"tags":{"name":"__barrel_optimize__?names=Database,Eye,FlaskConical,FolderTree,GitBranch,Settings2,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853170,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1846,"timestamp":68759230,"id":1308,"parentId":1243,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/route-pattern-normalizer.js","layer":"pages-dir-browser"},"startTime":1767951853300,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2913,"timestamp":68759323,"id":1309,"parentId":1217,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1767951853300,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":133851,"timestamp":68629270,"id":1293,"parentId":1142,"tags":{"name":"__barrel_optimize__?names=ArrowLeft,Settings!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853170,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":135571,"timestamp":68627759,"id":1291,"parentId":1034,"tags":{"name":"__barrel_optimize__?names=AlertCircle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853169,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":134051,"timestamp":68629528,"id":1296,"parentId":1241,"tags":{"name":"__barrel_optimize__?names=Database,Globe,Server,Smartphone,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853170,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":134155,"timestamp":68629642,"id":1297,"parentId":1281,"tags":{"name":"__barrel_optimize__?names=MessageSquarePlus!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853171,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":134599,"timestamp":68629452,"id":1295,"parentId":1242,"tags":{"name":"__barrel_optimize__?names=Plus,Sparkles!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853170,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":134581,"timestamp":68629788,"id":1299,"parentId":1282,"tags":{"name":"__barrel_optimize__?names=ChevronDown,ChevronRight,File,Folder,FolderOpen,RefreshCw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853171,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":134937,"timestamp":68629861,"id":1300,"parentId":1284,"tags":{"name":"__barrel_optimize__?names=ExternalLink,Loader2,Monitor,Package,Play,RefreshCw,RotateCcw,Smartphone,Square,Tablet,Terminal,Zap!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853171,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":135633,"timestamp":68629716,"id":1298,"parentId":1283,"tags":{"name":"__barrel_optimize__?names=Check,Copy,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853171,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":136343,"timestamp":68629995,"id":1302,"parentId":1285,"tags":{"name":"__barrel_optimize__?names=AlertCircle,ChevronLeft,ChevronRight,Database,Play,RefreshCw,Table,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853171,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":136706,"timestamp":68630092,"id":1303,"parentId":1286,"tags":{"name":"__barrel_optimize__?names=AlertCircle,CheckCircle,Clock,FlaskConical,Play,Plus,RefreshCw,Trash2,XCircle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853171,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":137255,"timestamp":68629927,"id":1301,"parentId":1287,"tags":{"name":"__barrel_optimize__?names=AlertCircle,ChevronDown,ChevronRight,Clock,FileText,GitBranch,Plus,RefreshCw,RotateCcw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853171,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":6570,"timestamp":68796571,"id":1310,"parentId":1185,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853337,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16122,"timestamp":68796831,"id":1311,"parentId":1305,"tags":{"name":"__barrel_optimize__?names=Paperclip,Send!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853338,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":16229,"timestamp":68796955,"id":1312,"parentId":1307,"tags":{"name":"__barrel_optimize__?names=Check,Copy,ExternalLink,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853338,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":21385,"timestamp":68797060,"id":1313,"parentId":1306,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Download,Terminal,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853338,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":417,"timestamp":68825106,"id":1317,"parentId":1237,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/scheduler@0.27.0/node_modules/scheduler/index.js","layer":"pages-dir-browser"},"startTime":1767951853366,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7565,"timestamp":68824737,"id":1314,"parentId":1218,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-external.js","layer":"app-pages-browser"},"startTime":1767951853366,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7991,"timestamp":68824998,"id":1316,"parentId":1256,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1767951853366,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8536,"timestamp":68824892,"id":1315,"parentId":1289,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Eye,EyeOff,FileText,Plus,RefreshCw,Save,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853366,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":5313,"timestamp":68836874,"id":1318,"parentId":1305,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ModeToggle.tsx","layer":"app-pages-browser"},"startTime":1767951853378,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":6012,"timestamp":68837128,"id":1319,"parentId":1305,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/FilePreview.tsx","layer":"app-pages-browser"},"startTime":1767951853378,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":9459,"timestamp":68844516,"id":1320,"parentId":1305,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/QueuePreview.tsx","layer":"app-pages-browser"},"startTime":1767951853385,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":10740,"timestamp":68844747,"id":1321,"parentId":1304,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageItem.tsx","layer":"app-pages-browser"},"startTime":1767951853386,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9195,"timestamp":68847208,"id":1323,"parentId":1256,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unauthorized.js","layer":"app-pages-browser"},"startTime":1767951853388,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5137,"timestamp":68858930,"id":1337,"parentId":1243,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/path-to-regexp/index.js","layer":"pages-dir-browser"},"startTime":1767951853400,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":19375,"timestamp":68847337,"id":1324,"parentId":1256,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/forbidden.js","layer":"app-pages-browser"},"startTime":1767951853388,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":20098,"timestamp":68847508,"id":1326,"parentId":1222,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/use-merged-ref.js","layer":"app-pages-browser"},"startTime":1767951853388,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":20445,"timestamp":68847582,"id":1327,"parentId":1222,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/error-once.js","layer":"app-pages-browser"},"startTime":1767951853388,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":20939,"timestamp":68847660,"id":1328,"parentId":1263,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1767951853389,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":22673,"timestamp":68847430,"id":1325,"parentId":1256,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.js","layer":"app-pages-browser"},"startTime":1767951853388,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":28187,"timestamp":68844929,"id":1322,"parentId":1304,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/StreamingMessage.tsx","layer":"app-pages-browser"},"startTime":1767951853386,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":2792,"timestamp":68876586,"id":1342,"parentId":1280,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/vanilla.mjs","layer":"app-pages-browser"},"startTime":1767951853417,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":3335,"timestamp":68876738,"id":1343,"parentId":1280,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/react.mjs","layer":"app-pages-browser"},"startTime":1767951853418,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6799,"timestamp":68876831,"id":1344,"parentId":1309,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/scheduler/cjs/scheduler.production.js","layer":"app-pages-browser"},"startTime":1767951853418,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":26814,"timestamp":68858259,"id":1329,"parentId":1268,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"app-pages-browser"},"startTime":1767951853399,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":27251,"timestamp":68858503,"id":1331,"parentId":1268,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"app-pages-browser"},"startTime":1767951853399,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":28703,"timestamp":68858415,"id":1330,"parentId":1268,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"app-pages-browser"},"startTime":1767951853399,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":29550,"timestamp":68858632,"id":1333,"parentId":1268,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"app-pages-browser"},"startTime":1767951853400,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":30349,"timestamp":68858569,"id":1332,"parentId":1268,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"app-pages-browser"},"startTime":1767951853399,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":30592,"timestamp":68858979,"id":1338,"parentId":1272,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"app-pages-browser"},"startTime":1767951853400,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":31189,"timestamp":68859060,"id":1339,"parentId":1271,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/assign-location.js","layer":"app-pages-browser"},"startTime":1767951853400,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":33557,"timestamp":68858760,"id":1335,"parentId":1268,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"app-pages-browser"},"startTime":1767951853400,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":39655,"timestamp":68858693,"id":1334,"parentId":1268,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"app-pages-browser"},"startTime":1767951853400,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":40429,"timestamp":68859181,"id":1341,"parentId":1271,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/server-reference-info.js","layer":"app-pages-browser"},"startTime":1767951853400,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":42764,"timestamp":68858858,"id":1336,"parentId":1268,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/aliased-prefetch-navigations.js","layer":"app-pages-browser"},"startTime":1767951853400,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":43859,"timestamp":68859122,"id":1340,"parentId":1275,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"app-pages-browser"},"startTime":1767951853400,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":26733,"timestamp":68877028,"id":1346,"parentId":1290,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/project.ts","layer":"app-pages-browser"},"startTime":1767951853418,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":26911,"timestamp":68877185,"id":1347,"parentId":1290,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/chat.ts","layer":"app-pages-browser"},"startTime":1767951853418,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":27022,"timestamp":68877269,"id":1348,"parentId":1290,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/preview.ts","layer":"app-pages-browser"},"startTime":1767951853418,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":27986,"timestamp":68877348,"id":1349,"parentId":1284,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/usePreviewStore.ts","layer":"app-pages-browser"},"startTime":1767951853418,"traceId":"6749762fed06a213"},{"name":"build-module-ts","duration":33183,"timestamp":68876923,"id":1345,"parentId":1281,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useChatStore.ts","layer":"app-pages-browser"},"startTime":1767951853418,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11290,"timestamp":68915267,"id":1350,"parentId":1292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-alert.js","layer":"app-pages-browser"},"startTime":1767951853456,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11430,"timestamp":68915390,"id":1351,"parentId":1292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/check.js","layer":"app-pages-browser"},"startTime":1767951853456,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11576,"timestamp":68915491,"id":1353,"parentId":1292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-open.js","layer":"app-pages-browser"},"startTime":1767951853456,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11853,"timestamp":68915449,"id":1352,"parentId":1292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/database.js","layer":"app-pages-browser"},"startTime":1767951853456,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11878,"timestamp":68915634,"id":1356,"parentId":1292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/loader-circle.js","layer":"app-pages-browser"},"startTime":1767951853457,"traceId":"6749762fed06a213"}]
|
|
14
|
+
[{"name":"build-module-js","duration":12019,"timestamp":68915701,"id":1357,"parentId":1292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/refresh-cw.js","layer":"app-pages-browser"},"startTime":1767951853457,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12144,"timestamp":68915780,"id":1359,"parentId":1294,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flask-conical.js","layer":"app-pages-browser"},"startTime":1767951853457,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12398,"timestamp":68915740,"id":1358,"parentId":1294,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eye.js","layer":"app-pages-browser"},"startTime":1767951853457,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12837,"timestamp":68915535,"id":1354,"parentId":1318,"tags":{"name":"__barrel_optimize__?names=Hammer,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853456,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12928,"timestamp":68915588,"id":1355,"parentId":1319,"tags":{"name":"__barrel_optimize__?names=FileText,Loader2,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853456,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12828,"timestamp":68915818,"id":1360,"parentId":1320,"tags":{"name":"__barrel_optimize__?names=ChevronDown,ChevronUp,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853457,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13053,"timestamp":68915861,"id":1361,"parentId":1321,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,Edit3,FileText,FolderSearch,Globe,ListTodo,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853457,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2704,"timestamp":68930201,"id":1363,"parentId":1294,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-tree.js","layer":"app-pages-browser"},"startTime":1767951853471,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2944,"timestamp":68930256,"id":1364,"parentId":1294,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-branch.js","layer":"app-pages-browser"},"startTime":1767951853471,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3265,"timestamp":68930297,"id":1365,"parentId":1294,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings-2.js","layer":"app-pages-browser"},"startTime":1767951853471,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5621,"timestamp":68930089,"id":1362,"parentId":1322,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,ChevronDown,ChevronUp,Edit3,FileText,FolderSearch,Globe,ListTodo,Loader2,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853471,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3274,"timestamp":68933791,"id":1366,"parentId":1294,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/x.js","layer":"app-pages-browser"},"startTime":1767951853475,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3510,"timestamp":68933896,"id":1367,"parentId":1293,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-left.js","layer":"app-pages-browser"},"startTime":1767951853475,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3830,"timestamp":68933946,"id":1368,"parentId":1293,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings.js","layer":"app-pages-browser"},"startTime":1767951853475,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4904,"timestamp":68939829,"id":1369,"parentId":1296,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/globe.js","layer":"app-pages-browser"},"startTime":1767951853481,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5218,"timestamp":68939926,"id":1370,"parentId":1296,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/server.js","layer":"app-pages-browser"},"startTime":1767951853481,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5463,"timestamp":68940019,"id":1371,"parentId":1296,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/smartphone.js","layer":"app-pages-browser"},"startTime":1767951853481,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5803,"timestamp":68940067,"id":1372,"parentId":1296,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trash-2.js","layer":"app-pages-browser"},"startTime":1767951853481,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":5253,"timestamp":68946202,"id":1373,"parentId":1321,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MarkdownRenderer.tsx","layer":"app-pages-browser"},"startTime":1767951853487,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7457,"timestamp":68946597,"id":1375,"parentId":1297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-plus.js","layer":"app-pages-browser"},"startTime":1767951853487,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7723,"timestamp":68946683,"id":1376,"parentId":1295,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/plus.js","layer":"app-pages-browser"},"startTime":1767951853488,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":9813,"timestamp":68946419,"id":1374,"parentId":1322,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/AskUserQuestionBlock.tsx","layer":"app-pages-browser"},"startTime":1767951853487,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8958,"timestamp":68947806,"id":1378,"parentId":1299,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-down.js","layer":"app-pages-browser"},"startTime":1767951853489,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9002,"timestamp":68947976,"id":1379,"parentId":1299,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-right.js","layer":"app-pages-browser"},"startTime":1767951853489,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10543,"timestamp":68946752,"id":1377,"parentId":1295,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sparkles.js","layer":"app-pages-browser"},"startTime":1767951853488,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9401,"timestamp":68948098,"id":1380,"parentId":1299,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file.js","layer":"app-pages-browser"},"startTime":1767951853489,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5531,"timestamp":68952148,"id":1381,"parentId":1299,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder.js","layer":"app-pages-browser"},"startTime":1767951853493,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5599,"timestamp":68952279,"id":1382,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/external-link.js","layer":"app-pages-browser"},"startTime":1767951853493,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5747,"timestamp":68952364,"id":1383,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor.js","layer":"app-pages-browser"},"startTime":1767951853493,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11511,"timestamp":68952435,"id":1384,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package.js","layer":"app-pages-browser"},"startTime":1767951853493,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3786,"timestamp":68966422,"id":1385,"parentId":1374,"tags":{"name":"__barrel_optimize__?names=Check,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853507,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2319,"timestamp":68968351,"id":1387,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square.js","layer":"app-pages-browser"},"startTime":1767951853509,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2760,"timestamp":68968226,"id":1386,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/play.js","layer":"app-pages-browser"},"startTime":1767951853509,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2879,"timestamp":68968430,"id":1388,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rotate-ccw.js","layer":"app-pages-browser"},"startTime":1767951853509,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3133,"timestamp":68968500,"id":1389,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tablet.js","layer":"app-pages-browser"},"startTime":1767951853509,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3952,"timestamp":68968574,"id":1390,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/terminal.js","layer":"app-pages-browser"},"startTime":1767951853509,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4452,"timestamp":68968637,"id":1391,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/zap.js","layer":"app-pages-browser"},"startTime":1767951853510,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2684,"timestamp":68973362,"id":1392,"parentId":1298,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copy.js","layer":"app-pages-browser"},"startTime":1767951853514,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2861,"timestamp":68973484,"id":1393,"parentId":1302,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-left.js","layer":"app-pages-browser"},"startTime":1767951853514,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3093,"timestamp":68973565,"id":1394,"parentId":1302,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/table.js","layer":"app-pages-browser"},"startTime":1767951853514,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3386,"timestamp":68973644,"id":1395,"parentId":1303,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check-big.js","layer":"app-pages-browser"},"startTime":1767951853515,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":999,"timestamp":68977949,"id":1398,"parentId":1276,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"app-pages-browser"},"startTime":1767951853519,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1920,"timestamp":68977864,"id":1397,"parentId":1303,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-x.js","layer":"app-pages-browser"},"startTime":1767951853519,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2348,"timestamp":68977740,"id":1396,"parentId":1303,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock.js","layer":"app-pages-browser"},"startTime":1767951853519,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2950,"timestamp":68978126,"id":1399,"parentId":1301,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-text.js","layer":"app-pages-browser"},"startTime":1767951853519,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":971,"timestamp":68983142,"id":1401,"parentId":1276,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"app-pages-browser"},"startTime":1767951853524,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2095,"timestamp":68983305,"id":1402,"parentId":1311,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/send.js","layer":"app-pages-browser"},"startTime":1767951853524,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2672,"timestamp":68983015,"id":1400,"parentId":1311,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/paperclip.js","layer":"app-pages-browser"},"startTime":1767951853524,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":13362,"timestamp":68985959,"id":1404,"parentId":1278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/tailwind-merge@2.6.0/node_modules/tailwind-merge/dist/bundle-mjs.mjs","layer":"app-pages-browser"},"startTime":1767951853527,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":15275,"timestamp":68985834,"id":1403,"parentId":1313,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/download.js","layer":"app-pages-browser"},"startTime":1767951853527,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":2238,"timestamp":69003817,"id":1408,"parentId":1278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","layer":"app-pages-browser"},"startTime":1767951853545,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":76724,"timestamp":69004021,"id":1409,"parentId":1283,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/prism-react-renderer@2.4.1_react@19.2.3/node_modules/prism-react-renderer/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853545,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":78464,"timestamp":69002956,"id":1405,"parentId":1374,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/radio-group.tsx","layer":"app-pages-browser"},"startTime":1767951853544,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":78690,"timestamp":69003129,"id":1406,"parentId":1374,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/checkbox.tsx","layer":"app-pages-browser"},"startTime":1767951853544,"traceId":"6749762fed06a213"},{"name":"build-module-tsx","duration":78968,"timestamp":69003231,"id":1407,"parentId":1374,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/label.tsx","layer":"app-pages-browser"},"startTime":1767951853544,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6855,"timestamp":69088039,"id":1412,"parentId":1315,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eye-off.js","layer":"app-pages-browser"},"startTime":1767951853629,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6965,"timestamp":69088268,"id":1415,"parentId":1315,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/save.js","layer":"app-pages-browser"},"startTime":1767951853629,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9252,"timestamp":69088137,"id":1413,"parentId":1314,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/image-component.js","layer":"app-pages-browser"},"startTime":1767951853629,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9870,"timestamp":69087765,"id":1410,"parentId":1405,"tags":{"name":"__barrel_optimize__?names=Circle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853629,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2093,"timestamp":69101694,"id":1419,"parentId":1317,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/scheduler@0.27.0/node_modules/scheduler/cjs/scheduler.production.js","layer":"pages-dir-browser"},"startTime":1767951853643,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":24126,"timestamp":69088205,"id":1414,"parentId":1314,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-img-props.js","layer":"app-pages-browser"},"startTime":1767951853629,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":24805,"timestamp":69087922,"id":1411,"parentId":1406,"tags":{"name":"__barrel_optimize__?names=Check!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767951853629,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":11881,"timestamp":69101471,"id":1416,"parentId":1325,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.browser.js","layer":"app-pages-browser"},"startTime":1767951853642,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12204,"timestamp":69101588,"id":1417,"parentId":1340,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"app-pages-browser"},"startTime":1767951853642,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":12623,"timestamp":69101646,"id":1418,"parentId":1350,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/createLucideIcon.js","layer":"app-pages-browser"},"startTime":1767951853643,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3380,"timestamp":69118541,"id":1422,"parentId":1413,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767951853659,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4830,"timestamp":69118359,"id":1420,"parentId":1413,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"app-pages-browser"},"startTime":1767951853659,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4871,"timestamp":69118584,"id":1423,"parentId":1413,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767951853659,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9564,"timestamp":69118660,"id":1424,"parentId":1354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hammer.js","layer":"app-pages-browser"},"startTime":1767951853660,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10346,"timestamp":69118485,"id":1421,"parentId":1413,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config.js","layer":"app-pages-browser"},"startTime":1767951853659,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4524,"timestamp":69125027,"id":1425,"parentId":1354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-question.js","layer":"app-pages-browser"},"startTime":1767951853666,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4788,"timestamp":69125146,"id":1426,"parentId":1361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bot.js","layer":"app-pages-browser"},"startTime":1767951853666,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5081,"timestamp":69125195,"id":1427,"parentId":1361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check.js","layer":"app-pages-browser"},"startTime":1767951853666,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5325,"timestamp":69125236,"id":1428,"parentId":1360,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-up.js","layer":"app-pages-browser"},"startTime":1767951853666,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5560,"timestamp":69125278,"id":1429,"parentId":1361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pen-line.js","layer":"app-pages-browser"},"startTime":1767951853666,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8673,"timestamp":69125317,"id":1430,"parentId":1361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-todo.js","layer":"app-pages-browser"},"startTime":1767951853666,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8901,"timestamp":69125355,"id":1431,"parentId":1361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-search.js","layer":"app-pages-browser"},"startTime":1767951853666,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9049,"timestamp":69125428,"id":1433,"parentId":1361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/search.js","layer":"app-pages-browser"},"startTime":1767951853666,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":10279,"timestamp":69125391,"id":1432,"parentId":1314,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-loader.js","layer":"app-pages-browser"},"startTime":1767951853666,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2260,"timestamp":69136075,"id":1434,"parentId":1420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"app-pages-browser"},"startTime":1767951853677,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2510,"timestamp":69136181,"id":1435,"parentId":1420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767951853677,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4172,"timestamp":69136228,"id":1436,"parentId":1420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"app-pages-browser"},"startTime":1767951853677,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":580,"timestamp":69140684,"id":1437,"parentId":1373,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/index.js","layer":"app-pages-browser"},"startTime":1767951853682,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":918,"timestamp":69143796,"id":1441,"parentId":1373,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/index.js","layer":"app-pages-browser"},"startTime":1767951853685,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5963,"timestamp":69143645,"id":1439,"parentId":1414,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-blur-svg.js","layer":"app-pages-browser"},"startTime":1767951853685,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6220,"timestamp":69143730,"id":1440,"parentId":1410,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle.js","layer":"app-pages-browser"},"startTime":1767951853685,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7082,"timestamp":69143508,"id":1438,"parentId":1418,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/Icon.js","layer":"app-pages-browser"},"startTime":1767951853684,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8526,"timestamp":69143939,"id":1442,"parentId":1418,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/shared/src/utils.js","layer":"app-pages-browser"},"startTime":1767951853685,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3580,"timestamp":69168724,"id":1444,"parentId":1437,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/lib/index.js","layer":"app-pages-browser"},"startTime":1767951853710,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5492,"timestamp":69168553,"id":1443,"parentId":1438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/defaultAttributes.js","layer":"app-pages-browser"},"startTime":1767951853709,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":5467,"timestamp":69184081,"id":1445,"parentId":1405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-radio-group@1.3.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@1_cjtgf3xmcqtfujhoownb73bnbi/node_modules/@radix-ui/react-radio-group/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853725,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":1960,"timestamp":69192472,"id":1447,"parentId":1407,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-label@2.1.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2.7__ggc7d2jno3gcorzflrswkya7gm/node_modules/@radix-ui/react-label/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853733,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":6222,"timestamp":69191194,"id":1446,"parentId":1406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-checkbox@1.3.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_bewiq6cjocmach7p37abfyy75a/node_modules/@radix-ui/react-checkbox/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853732,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":638,"timestamp":69202762,"id":1450,"parentId":1228,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/process.js","layer":"pages-dir-browser"},"startTime":1767951853744,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1826,"timestamp":69202390,"id":1448,"parentId":1441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/lib/index.js","layer":"app-pages-browser"},"startTime":1767951853743,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1974,"timestamp":69202594,"id":1449,"parentId":1213,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/process.js","layer":"app-pages-browser"},"startTime":1767951853743,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":734,"timestamp":69254206,"id":1451,"parentId":1444,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/index.js","layer":"app-pages-browser"},"startTime":1767951853795,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":553,"timestamp":69259575,"id":1452,"parentId":1444,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/index.js","layer":"app-pages-browser"},"startTime":1767951853800,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":452,"timestamp":69261045,"id":1453,"parentId":1444,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/index.js","layer":"app-pages-browser"},"startTime":1767951853802,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":494,"timestamp":69264046,"id":1454,"parentId":1444,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.js","layer":"app-pages-browser"},"startTime":1767951853805,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":507,"timestamp":69267280,"id":1455,"parentId":1444,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.js","layer":"app-pages-browser"},"startTime":1767951853808,"traceId":"6749762fed06a213"}]
|
|
15
|
+
[{"name":"build-module-js","duration":510,"timestamp":69270174,"id":1456,"parentId":1444,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.js","layer":"app-pages-browser"},"startTime":1767951853811,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":523,"timestamp":69271945,"id":1457,"parentId":1444,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/index.js","layer":"app-pages-browser"},"startTime":1767951853813,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":746,"timestamp":69273700,"id":1458,"parentId":1444,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/devlop@1.1.0/node_modules/devlop/lib/default.js","layer":"app-pages-browser"},"startTime":1767951853815,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1751,"timestamp":69275672,"id":1459,"parentId":1450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/process/browser.js","layer":"pages-dir-browser"},"startTime":1767951853817,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3223,"timestamp":69275738,"id":1460,"parentId":1449,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/process/browser.js","layer":"app-pages-browser"},"startTime":1767951853817,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":3543959,"timestamp":65736124,"id":984,"parentId":979,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1767951850277,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":3543912,"timestamp":65736183,"id":986,"parentId":979,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1767951850277,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":3544830,"timestamp":65735290,"id":980,"parentId":979,"tags":{"request":"./../../node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/next.js"},"startTime":1767951850276,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":3543938,"timestamp":65736198,"id":987,"parentId":979,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767951850277,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":3543927,"timestamp":65736214,"id":988,"parentId":979,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767951850277,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":3543720,"timestamp":65736433,"id":990,"parentId":979,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767951850277,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":3544291,"timestamp":65735887,"id":981,"parentId":979,"tags":{"request":"./../../node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-next.js"},"startTime":1767951850277,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":3544022,"timestamp":65736161,"id":985,"parentId":979,"tags":{"request":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/router.js"},"startTime":1767951850277,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":3544339,"timestamp":65735943,"id":982,"parentId":979,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767951850277,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":541,"timestamp":69280663,"id":1461,"parentId":1448,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/index.js","layer":"app-pages-browser"},"startTime":1767951853822,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":851,"timestamp":69284178,"id":1462,"parentId":1448,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm@3.0.0/node_modules/micromark-extension-gfm/index.js","layer":"app-pages-browser"},"startTime":1767951853825,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":708,"timestamp":69288981,"id":1463,"parentId":1445,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-compose-refs@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853830,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":966,"timestamp":69292689,"id":1464,"parentId":1445,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+primitive@1.1.3/node_modules/@radix-ui/primitive/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853834,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":2104,"timestamp":69296292,"id":1465,"parentId":1445,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-context@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-context/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853837,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":918,"timestamp":69301657,"id":1466,"parentId":1445,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._vrijsupjqixawruberrfb56pbm/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853843,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":2484,"timestamp":69306894,"id":1467,"parentId":1445,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-controllable-state@1.2.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853848,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":857,"timestamp":69315302,"id":1468,"parentId":1445,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-direction@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-direction/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853856,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":6793,"timestamp":69319460,"id":1469,"parentId":1445,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-roving-focus@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react_olorlwzqifzjwjsjwfg7df3ffe/node_modules/@radix-ui/react-roving-focus/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853860,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":807,"timestamp":69329528,"id":1470,"parentId":1445,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-previous@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-previous/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853870,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":4136,"timestamp":69347905,"id":1471,"parentId":1445,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-size@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-size/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853889,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":6780,"timestamp":69354156,"id":1472,"parentId":1445,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-presence@1.1.5_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_g7nvzcflnhogkdp32witcuayfy/node_modules/@radix-ui/react-presence/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853895,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5558,"timestamp":69361273,"id":1473,"parentId":1451,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/lib/index.js","layer":"app-pages-browser"},"startTime":1767951853902,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":1249,"timestamp":69372371,"id":1474,"parentId":1447,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.4_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._4sfldbbhvd3xapj4euqmtg5wga/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853913,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1120,"timestamp":69376338,"id":1475,"parentId":1452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/lib/index.js","layer":"app-pages-browser"},"startTime":1767951853917,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1100,"timestamp":69379425,"id":1476,"parentId":1453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/lib/index.js","layer":"app-pages-browser"},"startTime":1767951853920,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1163,"timestamp":69382032,"id":1477,"parentId":1454,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/lib/index.js","layer":"app-pages-browser"},"startTime":1767951853923,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3607,"timestamp":69382231,"id":1478,"parentId":1455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.js","layer":"app-pages-browser"},"startTime":1767951853923,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5948,"timestamp":69387140,"id":1479,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.js","layer":"app-pages-browser"},"startTime":1767951853928,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1000,"timestamp":69406484,"id":1480,"parentId":1457,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/lib/index.js","layer":"app-pages-browser"},"startTime":1767951853947,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1193,"timestamp":69406639,"id":1481,"parentId":1461,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/lib/index.js","layer":"app-pages-browser"},"startTime":1767951853948,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":415,"timestamp":69410714,"id":1482,"parentId":1452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/index.js","layer":"app-pages-browser"},"startTime":1767951853952,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1383,"timestamp":69414817,"id":1483,"parentId":1462,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-combine-extensions@2.0.1/node_modules/micromark-util-combine-extensions/index.js","layer":"app-pages-browser"},"startTime":1767951853956,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":608,"timestamp":69427305,"id":1484,"parentId":1462,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/index.js","layer":"app-pages-browser"},"startTime":1767951853968,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":582,"timestamp":69427507,"id":1485,"parentId":1462,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/index.js","layer":"app-pages-browser"},"startTime":1767951853968,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":593,"timestamp":69433882,"id":1486,"parentId":1462,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/index.js","layer":"app-pages-browser"},"startTime":1767951853975,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":586,"timestamp":69441100,"id":1487,"parentId":1462,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/index.js","layer":"app-pages-browser"},"startTime":1767951853982,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":399,"timestamp":69446773,"id":1488,"parentId":1462,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/index.js","layer":"app-pages-browser"},"startTime":1767951853988,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":371,"timestamp":69451397,"id":1489,"parentId":1462,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/index.js","layer":"app-pages-browser"},"startTime":1767951853992,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":2490,"timestamp":69457381,"id":1490,"parentId":1466,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.3_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951853998,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3624,"timestamp":69464611,"id":1491,"parentId":1478,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minpath.browser.js","layer":"app-pages-browser"},"startTime":1767951854006,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3703,"timestamp":69464831,"id":1492,"parentId":1478,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minproc.browser.js","layer":"app-pages-browser"},"startTime":1767951854006,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4325,"timestamp":69465024,"id":1493,"parentId":1478,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.browser.js","layer":"app-pages-browser"},"startTime":1767951854006,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":3394,"timestamp":69476919,"id":1494,"parentId":1467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-layout-effect@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-layout-effect/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951854018,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1188,"timestamp":69482564,"id":1495,"parentId":1479,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.js","layer":"app-pages-browser"},"startTime":1767951854023,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":1536,"timestamp":69482774,"id":1496,"parentId":1467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-effect-event@0.0.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-effect-event/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951854024,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":1461,"timestamp":69493667,"id":1498,"parentId":1469,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-id@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-id/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951854035,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":20142,"timestamp":69492608,"id":1497,"parentId":1469,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-collection@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19_3vqfgunzp4tkkuqnqgefg7qsai/node_modules/@radix-ui/react-collection/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951854034,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":898,"timestamp":69514608,"id":1499,"parentId":1469,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-callback-ref@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951854056,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1333,"timestamp":69518499,"id":1500,"parentId":1482,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854059,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2090,"timestamp":69518741,"id":1501,"parentId":1482,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/footer.js","layer":"app-pages-browser"},"startTime":1767951854060,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1303,"timestamp":69531827,"id":1502,"parentId":1482,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/index.js","layer":"app-pages-browser"},"startTime":1767951854073,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1073,"timestamp":69541577,"id":1503,"parentId":1473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/comma-separated-tokens@2.0.3/node_modules/comma-separated-tokens/index.js","layer":"app-pages-browser"},"startTime":1767951854082,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":609,"timestamp":69546882,"id":1504,"parentId":1473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/index.js","layer":"app-pages-browser"},"startTime":1767951854088,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":523,"timestamp":69549025,"id":1505,"parentId":1473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/index.js","layer":"app-pages-browser"},"startTime":1767951854090,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":890,"timestamp":69552722,"id":1506,"parentId":1473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/index.js","layer":"app-pages-browser"},"startTime":1767951854094,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":533,"timestamp":69556248,"id":1507,"parentId":1473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/space-separated-tokens@2.0.2/node_modules/space-separated-tokens/index.js","layer":"app-pages-browser"},"startTime":1767951854097,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":369,"timestamp":69558469,"id":1508,"parentId":1473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/index.js","layer":"app-pages-browser"},"startTime":1767951854099,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":436,"timestamp":69560465,"id":1509,"parentId":1473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/index.js","layer":"app-pages-browser"},"startTime":1767951854101,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":994,"timestamp":69564545,"id":1510,"parentId":1473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/index.js","layer":"app-pages-browser"},"startTime":1767951854105,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3954,"timestamp":69569106,"id":1511,"parentId":1484,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767951854110,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4255,"timestamp":69569317,"id":1512,"parentId":1484,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/html.js","layer":"app-pages-browser"},"startTime":1767951854110,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3473,"timestamp":69576308,"id":1513,"parentId":1485,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767951854117,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5005,"timestamp":69576516,"id":1514,"parentId":1485,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/html.js","layer":"app-pages-browser"},"startTime":1767951854117,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":568,"timestamp":69588746,"id":1515,"parentId":1477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/index.js","layer":"app-pages-browser"},"startTime":1767951854130,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":633,"timestamp":69589789,"id":1516,"parentId":1479,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/bail@2.0.2/node_modules/bail/index.js","layer":"app-pages-browser"},"startTime":1767951854131,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":836,"timestamp":69592834,"id":1517,"parentId":1479,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/is-plain-obj@4.1.0/node_modules/is-plain-obj/index.js","layer":"app-pages-browser"},"startTime":1767951854134,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":575,"timestamp":69596525,"id":1518,"parentId":1479,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.js","layer":"app-pages-browser"},"startTime":1767951854137,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1838,"timestamp":69597655,"id":1519,"parentId":1486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/html.js","layer":"app-pages-browser"},"startTime":1767951854139,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5797,"timestamp":69597845,"id":1520,"parentId":1486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767951854139,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1380,"timestamp":69605859,"id":1521,"parentId":1479,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/extend@3.0.2/node_modules/extend/index.js","layer":"app-pages-browser"},"startTime":1767951854147,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":566,"timestamp":69609956,"id":1522,"parentId":1480,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/index.js","layer":"app-pages-browser"},"startTime":1767951854151,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":541,"timestamp":69613708,"id":1523,"parentId":1481,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/index.js","layer":"app-pages-browser"},"startTime":1767951854155,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":493,"timestamp":69615750,"id":1524,"parentId":1481,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/index.js","layer":"app-pages-browser"},"startTime":1767951854157,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":731,"timestamp":69618406,"id":1525,"parentId":1481,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/index.js","layer":"app-pages-browser"},"startTime":1767951854159,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":540,"timestamp":69621298,"id":1526,"parentId":1481,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/index.js","layer":"app-pages-browser"},"startTime":1767951854162,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":617,"timestamp":69622503,"id":1527,"parentId":1481,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/index.js","layer":"app-pages-browser"},"startTime":1767951854163,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":522,"timestamp":69624196,"id":1528,"parentId":1487,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/html.js","layer":"app-pages-browser"},"startTime":1767951854165,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1070,"timestamp":69625270,"id":1529,"parentId":1487,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767951854166,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":816,"timestamp":69626975,"id":1530,"parentId":1488,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854168,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":674,"timestamp":69631063,"id":1531,"parentId":1493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.shared.js","layer":"app-pages-browser"},"startTime":1767951854172,"traceId":"6749762fed06a213"},{"name":"build-module-mjs","duration":1837,"timestamp":69631195,"id":1532,"parentId":1474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.4_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767951854172,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1541,"timestamp":69637427,"id":1533,"parentId":1489,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767951854178,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1656,"timestamp":69637632,"id":1534,"parentId":1489,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/html.js","layer":"app-pages-browser"},"startTime":1767951854179,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":936,"timestamp":69641365,"id":1535,"parentId":1483,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-chunked@2.0.1/node_modules/micromark-util-chunked/index.js","layer":"app-pages-browser"},"startTime":1767951854182,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2649,"timestamp":69647996,"id":1536,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/state.js","layer":"app-pages-browser"},"startTime":1767951854189,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4049,"timestamp":69652576,"id":1537,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js","layer":"app-pages-browser"},"startTime":1767951854193,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4154,"timestamp":69652783,"id":1538,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/break.js","layer":"app-pages-browser"},"startTime":1767951854194,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7782,"timestamp":69652942,"id":1539,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/code.js","layer":"app-pages-browser"},"startTime":1767951854194,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7922,"timestamp":69653123,"id":1540,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/delete.js","layer":"app-pages-browser"},"startTime":1767951854194,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8050,"timestamp":69653267,"id":1541,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js","layer":"app-pages-browser"},"startTime":1767951854194,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1036,"timestamp":69663408,"id":1542,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js","layer":"app-pages-browser"},"startTime":1767951854204,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":879,"timestamp":69665335,"id":1543,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/heading.js","layer":"app-pages-browser"},"startTime":1767951854206,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1375,"timestamp":69667128,"id":1544,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js","layer":"app-pages-browser"},"startTime":1767951854208,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1459,"timestamp":69667336,"id":1545,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/html.js","layer":"app-pages-browser"},"startTime":1767951854208,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1747,"timestamp":69667510,"id":1546,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image.js","layer":"app-pages-browser"},"startTime":1767951854208,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1163,"timestamp":69672057,"id":1547,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js","layer":"app-pages-browser"},"startTime":1767951854213,"traceId":"6749762fed06a213"}]
|
|
16
|
+
[{"name":"build-module-js","duration":1312,"timestamp":69672193,"id":1548,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link.js","layer":"app-pages-browser"},"startTime":1767951854213,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2087,"timestamp":69672287,"id":1549,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list-item.js","layer":"app-pages-browser"},"startTime":1767951854213,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2476,"timestamp":69672370,"id":1550,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list.js","layer":"app-pages-browser"},"startTime":1767951854213,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2770,"timestamp":69672446,"id":1551,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js","layer":"app-pages-browser"},"startTime":1767951854213,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":630,"timestamp":69676356,"id":1552,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js","layer":"app-pages-browser"},"startTime":1767951854217,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":438,"timestamp":69678220,"id":1553,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/root.js","layer":"app-pages-browser"},"startTime":1767951854219,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":760,"timestamp":69679398,"id":1554,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/strong.js","layer":"app-pages-browser"},"startTime":1767951854220,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1005,"timestamp":69679525,"id":1555,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-row.js","layer":"app-pages-browser"},"startTime":1767951854220,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1293,"timestamp":69679610,"id":1556,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table.js","layer":"app-pages-browser"},"startTime":1767951854221,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1174,"timestamp":69681810,"id":1557,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js","layer":"app-pages-browser"},"startTime":1767951854223,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1221,"timestamp":69682026,"id":1558,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/text.js","layer":"app-pages-browser"},"startTime":1767951854223,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1222,"timestamp":69682197,"id":1559,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js","layer":"app-pages-browser"},"startTime":1767951854223,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2265,"timestamp":69687245,"id":1560,"parentId":1504,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854228,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":501,"timestamp":69690324,"id":1561,"parentId":1505,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854231,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":446,"timestamp":69691199,"id":1562,"parentId":1497,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_get.js","layer":"app-pages-browser"},"startTime":1767951854232,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":646,"timestamp":69694202,"id":1563,"parentId":1497,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_set.js","layer":"app-pages-browser"},"startTime":1767951854235,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":820,"timestamp":69696538,"id":1564,"parentId":1497,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_init.js","layer":"app-pages-browser"},"startTime":1767951854237,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1702,"timestamp":69699753,"id":1565,"parentId":1506,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/aria.js","layer":"app-pages-browser"},"startTime":1767951854241,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3033,"timestamp":69699957,"id":1566,"parentId":1506,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/html.js","layer":"app-pages-browser"},"startTime":1767951854241,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6536,"timestamp":69700173,"id":1567,"parentId":1506,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/svg.js","layer":"app-pages-browser"},"startTime":1767951854241,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1320,"timestamp":69708402,"id":1568,"parentId":1506,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xlink.js","layer":"app-pages-browser"},"startTime":1767951854249,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1464,"timestamp":69708614,"id":1569,"parentId":1506,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xmlns.js","layer":"app-pages-browser"},"startTime":1767951854250,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1269,"timestamp":69711201,"id":1570,"parentId":1506,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xml.js","layer":"app-pages-browser"},"startTime":1767951854252,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1336,"timestamp":69711405,"id":1571,"parentId":1506,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/hast-to-react.js","layer":"app-pages-browser"},"startTime":1767951854252,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1966,"timestamp":69711567,"id":1572,"parentId":1506,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/find.js","layer":"app-pages-browser"},"startTime":1767951854252,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1057,"timestamp":69714450,"id":1573,"parentId":1506,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/normalize.js","layer":"app-pages-browser"},"startTime":1767951854255,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1216,"timestamp":69714582,"id":1574,"parentId":1506,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/merge.js","layer":"app-pages-browser"},"startTime":1767951854255,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1109,"timestamp":69719163,"id":1575,"parentId":1501,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-sanitize-uri@2.0.1/node_modules/micromark-util-sanitize-uri/index.js","layer":"app-pages-browser"},"startTime":1767951854260,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1327,"timestamp":69719305,"id":1576,"parentId":1508,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854260,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":886,"timestamp":69722614,"id":1577,"parentId":1501,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/index.js","layer":"app-pages-browser"},"startTime":1767951854264,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1444,"timestamp":69722744,"id":1578,"parentId":1509,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854264,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1156,"timestamp":69724891,"id":1579,"parentId":1510,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/utilities.js","layer":"app-pages-browser"},"startTime":1767951854266,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5696,"timestamp":69725043,"id":1580,"parentId":1515,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854266,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1948,"timestamp":69733753,"id":1581,"parentId":1520,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/edit-map.js","layer":"app-pages-browser"},"startTime":1767951854275,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2225,"timestamp":69733969,"id":1582,"parentId":1520,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/infer.js","layer":"app-pages-browser"},"startTime":1767951854275,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1240,"timestamp":69737696,"id":1583,"parentId":1518,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854279,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1557,"timestamp":69741117,"id":1584,"parentId":1511,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-character@2.1.1/node_modules/micromark-util-character/index.js","layer":"app-pages-browser"},"startTime":1767951854282,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":706,"timestamp":69746083,"id":1585,"parentId":1510,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-object@1.0.14/node_modules/style-to-object/cjs/index.js","layer":"app-pages-browser"},"startTime":1767951854287,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":601,"timestamp":69748437,"id":1586,"parentId":1513,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/index.js","layer":"app-pages-browser"},"startTime":1767951854289,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":831,"timestamp":69752312,"id":1587,"parentId":1513,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-space@2.0.1/node_modules/micromark-factory-space/index.js","layer":"app-pages-browser"},"startTime":1767951854293,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":729,"timestamp":69756891,"id":1588,"parentId":1513,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-normalize-identifier@2.0.1/node_modules/micromark-util-normalize-identifier/index.js","layer":"app-pages-browser"},"startTime":1767951854298,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1769,"timestamp":69759533,"id":1589,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854300,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3109,"timestamp":69763350,"id":1590,"parentId":1523,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854304,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1859,"timestamp":69769525,"id":1591,"parentId":1524,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854310,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":625,"timestamp":69776219,"id":1592,"parentId":1525,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854317,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1397,"timestamp":69777820,"id":1593,"parentId":1526,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854319,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2007,"timestamp":69777955,"id":1594,"parentId":1527,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854319,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1097,"timestamp":69780855,"id":1595,"parentId":1544,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/revert.js","layer":"app-pages-browser"},"startTime":1767951854322,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":474,"timestamp":69787088,"id":1596,"parentId":1529,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-classify-character@2.0.1/node_modules/micromark-util-classify-character/index.js","layer":"app-pages-browser"},"startTime":1767951854328,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":487,"timestamp":69791665,"id":1597,"parentId":1529,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-resolve-all@2.0.1/node_modules/micromark-util-resolve-all/index.js","layer":"app-pages-browser"},"startTime":1767951854333,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":831,"timestamp":69795597,"id":1598,"parentId":1562,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_apply_descriptor_get.js","layer":"app-pages-browser"},"startTime":1767951854336,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":879,"timestamp":69795736,"id":1599,"parentId":1562,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_extract_field_descriptor.js","layer":"app-pages-browser"},"startTime":1767951854337,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":961,"timestamp":69795828,"id":1600,"parentId":1563,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_apply_descriptor_set.js","layer":"app-pages-browser"},"startTime":1767951854337,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":675,"timestamp":69797317,"id":1601,"parentId":1564,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_check_private_redeclaration.js","layer":"app-pages-browser"},"startTime":1767951854338,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":928,"timestamp":69797453,"id":1602,"parentId":1565,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/types.js","layer":"app-pages-browser"},"startTime":1767951854338,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1175,"timestamp":69797548,"id":1603,"parentId":1565,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/create.js","layer":"app-pages-browser"},"startTime":1767951854338,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":611,"timestamp":69801590,"id":1604,"parentId":1566,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-insensitive-transform.js","layer":"app-pages-browser"},"startTime":1767951854342,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":638,"timestamp":69801718,"id":1605,"parentId":1567,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-sensitive-transform.js","layer":"app-pages-browser"},"startTime":1767951854343,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1004,"timestamp":69803205,"id":1606,"parentId":1572,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/defined-info.js","layer":"app-pages-browser"},"startTime":1767951854344,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1118,"timestamp":69803335,"id":1607,"parentId":1572,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/info.js","layer":"app-pages-browser"},"startTime":1767951854344,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1198,"timestamp":69805274,"id":1608,"parentId":1574,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/schema.js","layer":"app-pages-browser"},"startTime":1767951854346,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1872,"timestamp":69810399,"id":1609,"parentId":1577,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/deserialize.js","layer":"app-pages-browser"},"startTime":1767951854351,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3274,"timestamp":69810605,"id":1610,"parentId":1577,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/serialize.js","layer":"app-pages-browser"},"startTime":1767951854352,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3781,"timestamp":69810777,"id":1611,"parentId":1558,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trim-lines@3.0.1/node_modules/trim-lines/index.js","layer":"app-pages-browser"},"startTime":1767951854352,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":677,"timestamp":69818048,"id":1612,"parentId":1575,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-encode@2.0.1/node_modules/micromark-util-encode/index.js","layer":"app-pages-browser"},"startTime":1767951854359,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4460,"timestamp":69822360,"id":1613,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/attention.js","layer":"app-pages-browser"},"startTime":1767951854363,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5301,"timestamp":69822565,"id":1614,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/autolink.js","layer":"app-pages-browser"},"startTime":1767951854363,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5559,"timestamp":69822743,"id":1615,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/blank-line.js","layer":"app-pages-browser"},"startTime":1767951854364,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6051,"timestamp":69822908,"id":1616,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/block-quote.js","layer":"app-pages-browser"},"startTime":1767951854364,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6334,"timestamp":69823095,"id":1617,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-escape.js","layer":"app-pages-browser"},"startTime":1767951854364,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7831,"timestamp":69823280,"id":1618,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-fenced.js","layer":"app-pages-browser"},"startTime":1767951854364,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8376,"timestamp":69823461,"id":1619,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-reference.js","layer":"app-pages-browser"},"startTime":1767951854364,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":9110,"timestamp":69823638,"id":1620,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-indented.js","layer":"app-pages-browser"},"startTime":1767951854365,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":13918,"timestamp":69823796,"id":1621,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-text.js","layer":"app-pages-browser"},"startTime":1767951854365,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2143,"timestamp":69841185,"id":1622,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/definition.js","layer":"app-pages-browser"},"startTime":1767951854382,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2778,"timestamp":69841422,"id":1623,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/content.js","layer":"app-pages-browser"},"startTime":1767951854382,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2966,"timestamp":69841602,"id":1624,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/hard-break-escape.js","layer":"app-pages-browser"},"startTime":1767951854383,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1762,"timestamp":69846774,"id":1625,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/heading-atx.js","layer":"app-pages-browser"},"startTime":1767951854388,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3611,"timestamp":69848933,"id":1626,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-flow.js","layer":"app-pages-browser"},"startTime":1767951854390,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5747,"timestamp":69849145,"id":1627,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-text.js","layer":"app-pages-browser"},"startTime":1767951854390,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":7918,"timestamp":69849294,"id":1628,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-end.js","layer":"app-pages-browser"},"startTime":1767951854390,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8284,"timestamp":69849428,"id":1629,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-image.js","layer":"app-pages-browser"},"startTime":1767951854390,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8531,"timestamp":69849556,"id":1630,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/line-ending.js","layer":"app-pages-browser"},"startTime":1767951854390,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":8811,"timestamp":69849691,"id":1631,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-link.js","layer":"app-pages-browser"},"startTime":1767951854391,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2549,"timestamp":69866689,"id":1632,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/list.js","layer":"app-pages-browser"},"startTime":1767951854408,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3341,"timestamp":69866905,"id":1633,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/setext-underline.js","layer":"app-pages-browser"},"startTime":1767951854408,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3670,"timestamp":69867102,"id":1634,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/thematic-break.js","layer":"app-pages-browser"},"startTime":1767951854408,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":887,"timestamp":69872149,"id":1635,"parentId":1589,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/color.js","layer":"app-pages-browser"},"startTime":1767951854413,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":547,"timestamp":69878082,"id":1636,"parentId":1578,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/index.js","layer":"app-pages-browser"},"startTime":1767951854419,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":512,"timestamp":69880459,"id":1637,"parentId":1580,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/index.js","layer":"app-pages-browser"},"startTime":1767951854421,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":872,"timestamp":69883372,"id":1638,"parentId":1580,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/index.js","layer":"app-pages-browser"},"startTime":1767951854424,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":819,"timestamp":69887767,"id":1639,"parentId":1580,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-numeric-character-reference@2.0.2/node_modules/micromark-util-decode-numeric-character-reference/index.js","layer":"app-pages-browser"},"startTime":1767951854429,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":995,"timestamp":69889942,"id":1640,"parentId":1580,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-string@2.0.1/node_modules/micromark-util-decode-string/index.js","layer":"app-pages-browser"},"startTime":1767951854431,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":727,"timestamp":69893990,"id":1641,"parentId":1580,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/decode-named-character-reference@1.2.0/node_modules/decode-named-character-reference/index.dom.js","layer":"app-pages-browser"},"startTime":1767951854435,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1983,"timestamp":69899259,"id":1642,"parentId":1585,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/inline-style-parser@0.2.7/node_modules/inline-style-parser/cjs/index.js","layer":"app-pages-browser"},"startTime":1767951854440,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":555,"timestamp":69901598,"id":1643,"parentId":1589,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/index.js","layer":"app-pages-browser"},"startTime":1767951854442,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":654,"timestamp":69904158,"id":1644,"parentId":1590,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/ccount@2.0.1/node_modules/ccount/index.js","layer":"app-pages-browser"},"startTime":1767951854445,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1110,"timestamp":69907142,"id":1645,"parentId":1609,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/types.js","layer":"app-pages-browser"},"startTime":1767951854448,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1122,"timestamp":69907350,"id":1646,"parentId":1590,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/index.js","layer":"app-pages-browser"},"startTime":1767951854448,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1734,"timestamp":69911047,"id":1647,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/markdown-table@3.0.4/node_modules/markdown-table/index.js","layer":"app-pages-browser"},"startTime":1767951854452,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":553,"timestamp":69914699,"id":1648,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.js","layer":"app-pages-browser"},"startTime":1767951854456,"traceId":"6749762fed06a213"}]
|
|
17
|
+
[{"name":"build-module-js","duration":546,"timestamp":69918123,"id":1649,"parentId":1636,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854459,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1039,"timestamp":69922542,"id":1650,"parentId":1637,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854463,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1332,"timestamp":69924977,"id":1651,"parentId":1622,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-destination@2.0.1/node_modules/micromark-factory-destination/index.js","layer":"app-pages-browser"},"startTime":1767951854466,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1181,"timestamp":69928069,"id":1652,"parentId":1622,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-label@2.0.1/node_modules/micromark-factory-label/index.js","layer":"app-pages-browser"},"startTime":1767951854469,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1120,"timestamp":69930017,"id":1653,"parentId":1622,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-title@2.0.1/node_modules/micromark-factory-title/index.js","layer":"app-pages-browser"},"startTime":1767951854471,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":778,"timestamp":69933781,"id":1654,"parentId":1622,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-whitespace@2.0.1/node_modules/micromark-factory-whitespace/index.js","layer":"app-pages-browser"},"startTime":1767951854475,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2055,"timestamp":69937864,"id":1655,"parentId":1623,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/index.js","layer":"app-pages-browser"},"startTime":1767951854479,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":816,"timestamp":69942978,"id":1656,"parentId":1626,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-html-tag-name@2.0.1/node_modules/micromark-util-html-tag-name/index.js","layer":"app-pages-browser"},"startTime":1767951854484,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4893,"timestamp":69944749,"id":1657,"parentId":1638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/compile.js","layer":"app-pages-browser"},"startTime":1767951854486,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5220,"timestamp":69944955,"id":1658,"parentId":1638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/parse.js","layer":"app-pages-browser"},"startTime":1767951854486,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5293,"timestamp":69945158,"id":1659,"parentId":1638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/postprocess.js","layer":"app-pages-browser"},"startTime":1767951854486,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2083,"timestamp":69951910,"id":1660,"parentId":1638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/preprocess.js","layer":"app-pages-browser"},"startTime":1767951854493,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":988,"timestamp":69955611,"id":1661,"parentId":1643,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854497,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1222,"timestamp":69957662,"id":1662,"parentId":1646,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854499,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1232,"timestamp":69960083,"id":1663,"parentId":1648,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854501,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":726,"timestamp":69964174,"id":1664,"parentId":1648,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/index.js","layer":"app-pages-browser"},"startTime":1767951854505,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1629,"timestamp":69969958,"id":1665,"parentId":1658,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/constructs.js","layer":"app-pages-browser"},"startTime":1767951854511,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3764,"timestamp":69970161,"id":1666,"parentId":1658,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/create-tokenizer.js","layer":"app-pages-browser"},"startTime":1767951854511,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2197,"timestamp":69982621,"id":1667,"parentId":1658,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/content.js","layer":"app-pages-browser"},"startTime":1767951854524,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3694,"timestamp":69982839,"id":1668,"parentId":1658,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/document.js","layer":"app-pages-browser"},"startTime":1767951854524,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4007,"timestamp":69983042,"id":1669,"parentId":1658,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/flow.js","layer":"app-pages-browser"},"startTime":1767951854524,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5042,"timestamp":69983225,"id":1670,"parentId":1658,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/text.js","layer":"app-pages-browser"},"startTime":1767951854524,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":6071,"timestamp":69983388,"id":1671,"parentId":1655,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/lib/splice-buffer.js","layer":"app-pages-browser"},"startTime":1767951854524,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1772,"timestamp":69995953,"id":1672,"parentId":1663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/configure.js","layer":"app-pages-browser"},"startTime":1767951854537,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2089,"timestamp":69996193,"id":1673,"parentId":1663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/join.js","layer":"app-pages-browser"},"startTime":1767951854537,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2482,"timestamp":69996471,"id":1674,"parentId":1663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/unsafe.js","layer":"app-pages-browser"},"startTime":1767951854537,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1037,"timestamp":70002079,"id":1675,"parentId":1663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/association.js","layer":"app-pages-browser"},"startTime":1767951854543,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1216,"timestamp":70002319,"id":1676,"parentId":1663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/compile-pattern.js","layer":"app-pages-browser"},"startTime":1767951854543,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1786,"timestamp":70005687,"id":1677,"parentId":1663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-phrasing.js","layer":"app-pages-browser"},"startTime":1767951854547,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2152,"timestamp":70005902,"id":1678,"parentId":1663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-flow.js","layer":"app-pages-browser"},"startTime":1767951854547,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1519,"timestamp":70009540,"id":1679,"parentId":1663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/indent-lines.js","layer":"app-pages-browser"},"startTime":1767951854550,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2555,"timestamp":70009741,"id":1680,"parentId":1663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/safe.js","layer":"app-pages-browser"},"startTime":1767951854551,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2856,"timestamp":70009911,"id":1681,"parentId":1663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/track.js","layer":"app-pages-browser"},"startTime":1767951854551,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1851,"timestamp":70017229,"id":1682,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js","layer":"app-pages-browser"},"startTime":1767951854558,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2062,"timestamp":70017432,"id":1683,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/break.js","layer":"app-pages-browser"},"startTime":1767951854558,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2639,"timestamp":70017616,"id":1684,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/definition.js","layer":"app-pages-browser"},"startTime":1767951854559,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3177,"timestamp":70017785,"id":1685,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/code.js","layer":"app-pages-browser"},"startTime":1767951854559,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3629,"timestamp":70017957,"id":1686,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js","layer":"app-pages-browser"},"startTime":1767951854559,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2325,"timestamp":70025712,"id":1687,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/heading.js","layer":"app-pages-browser"},"startTime":1767951854567,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2359,"timestamp":70025919,"id":1688,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/html.js","layer":"app-pages-browser"},"startTime":1767951854567,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":2746,"timestamp":70036676,"id":1689,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image.js","layer":"app-pages-browser"},"startTime":1767951854578,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3047,"timestamp":70036878,"id":1690,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js","layer":"app-pages-browser"},"startTime":1767951854578,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3493,"timestamp":70037075,"id":1691,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js","layer":"app-pages-browser"},"startTime":1767951854578,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4121,"timestamp":70037235,"id":1692,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link.js","layer":"app-pages-browser"},"startTime":1767951854578,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":4429,"timestamp":70037378,"id":1693,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js","layer":"app-pages-browser"},"startTime":1767951854578,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5130,"timestamp":70037509,"id":1694,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list.js","layer":"app-pages-browser"},"startTime":1767951854578,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5630,"timestamp":70037647,"id":1695,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list-item.js","layer":"app-pages-browser"},"startTime":1767951854579,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":5758,"timestamp":70037776,"id":1696,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js","layer":"app-pages-browser"},"startTime":1767951854579,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1472,"timestamp":70045866,"id":1697,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/root.js","layer":"app-pages-browser"},"startTime":1767951854587,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1824,"timestamp":70046091,"id":1698,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/strong.js","layer":"app-pages-browser"},"startTime":1767951854587,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1072,"timestamp":70048772,"id":1699,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/text.js","layer":"app-pages-browser"},"startTime":1767951854590,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1142,"timestamp":70048971,"id":1700,"parentId":1664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js","layer":"app-pages-browser"},"startTime":1767951854590,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":505,"timestamp":70052427,"id":1701,"parentId":1673,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js","layer":"app-pages-browser"},"startTime":1767951854593,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":563,"timestamp":70053538,"id":1702,"parentId":1673,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js","layer":"app-pages-browser"},"startTime":1767951854594,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3091,"timestamp":70064537,"id":1703,"parentId":1677,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js","layer":"app-pages-browser"},"startTime":1767951854605,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3313,"timestamp":70064778,"id":1704,"parentId":1680,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js","layer":"app-pages-browser"},"startTime":1767951854606,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3416,"timestamp":70064961,"id":1705,"parentId":1684,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-quote.js","layer":"app-pages-browser"},"startTime":1767951854606,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":3462,"timestamp":70065163,"id":1706,"parentId":1685,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-fence.js","layer":"app-pages-browser"},"startTime":1767951854606,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1033,"timestamp":70068892,"id":1707,"parentId":1686,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js","layer":"app-pages-browser"},"startTime":1767951854610,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1303,"timestamp":70069128,"id":1708,"parentId":1686,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-info.js","layer":"app-pages-browser"},"startTime":1767951854610,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":716,"timestamp":70076650,"id":1709,"parentId":1692,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js","layer":"app-pages-browser"},"startTime":1767951854618,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":672,"timestamp":70078633,"id":1710,"parentId":1694,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js","layer":"app-pages-browser"},"startTime":1767951854620,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":872,"timestamp":70078773,"id":1711,"parentId":1694,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js","layer":"app-pages-browser"},"startTime":1767951854620,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1274,"timestamp":70080306,"id":1712,"parentId":1694,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js","layer":"app-pages-browser"},"startTime":1767951854621,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1395,"timestamp":70080444,"id":1713,"parentId":1694,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule.js","layer":"app-pages-browser"},"startTime":1767951854621,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1576,"timestamp":70080547,"id":1714,"parentId":1695,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js","layer":"app-pages-browser"},"startTime":1767951854621,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":568,"timestamp":70084267,"id":1715,"parentId":1698,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-strong.js","layer":"app-pages-browser"},"startTime":1767951854625,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":915,"timestamp":70086121,"id":1716,"parentId":1700,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js","layer":"app-pages-browser"},"startTime":1767951854627,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":1155,"timestamp":70086333,"id":1717,"parentId":1662,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/escape-string-regexp@5.0.0/node_modules/escape-string-regexp/index.js","layer":"app-pages-browser"},"startTime":1767951854627,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":825,"timestamp":70091132,"id":1718,"parentId":1663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zwitch@2.0.4/node_modules/zwitch/index.js","layer":"app-pages-browser"},"startTime":1767951854632,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":735,"timestamp":70093331,"id":1719,"parentId":1685,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/longest-streak@3.1.0/node_modules/longest-streak/index.js","layer":"app-pages-browser"},"startTime":1767951854634,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":551,"timestamp":70100690,"id":1720,"parentId":1697,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/index.js","layer":"app-pages-browser"},"startTime":1767951854642,"traceId":"6749762fed06a213"},{"name":"build-module-js","duration":736,"timestamp":70102638,"id":1721,"parentId":1720,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/lib/index.js","layer":"app-pages-browser"},"startTime":1767951854644,"traceId":"6749762fed06a213"},{"name":"add-entry","duration":4369419,"timestamp":65736379,"id":989,"parentId":979,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767951850277,"traceId":"6749762fed06a213"},{"name":"make","duration":4371489,"timestamp":65734649,"id":979,"parentId":978,"tags":{},"startTime":1767951850276,"traceId":"6749762fed06a213"},{"name":"chunk-graph","duration":17920,"timestamp":70193778,"id":1723,"parentId":1722,"tags":{},"startTime":1767951854735,"traceId":"6749762fed06a213"},{"name":"optimize-modules","duration":36,"timestamp":70211867,"id":1725,"parentId":1722,"tags":{},"startTime":1767951854753,"traceId":"6749762fed06a213"},{"name":"optimize-chunks","duration":15650,"timestamp":70214538,"id":1727,"parentId":1722,"tags":{},"startTime":1767951854755,"traceId":"6749762fed06a213"},{"name":"optimize-tree","duration":178,"timestamp":70230299,"id":1728,"parentId":1722,"tags":{},"startTime":1767951854771,"traceId":"6749762fed06a213"},{"name":"optimize-chunk-modules","duration":40815,"timestamp":70230616,"id":1729,"parentId":1722,"tags":{},"startTime":1767951854772,"traceId":"6749762fed06a213"},{"name":"optimize","duration":59765,"timestamp":70211797,"id":1724,"parentId":1722,"tags":{},"startTime":1767951854753,"traceId":"6749762fed06a213"},{"name":"module-hash","duration":28145,"timestamp":70301055,"id":1730,"parentId":1722,"tags":{},"startTime":1767951854842,"traceId":"6749762fed06a213"},{"name":"code-generation","duration":362472,"timestamp":70329261,"id":1731,"parentId":1722,"tags":{},"startTime":1767951854870,"traceId":"6749762fed06a213"},{"name":"hash","duration":13890,"timestamp":70696941,"id":1732,"parentId":1722,"tags":{},"startTime":1767951855238,"traceId":"6749762fed06a213"},{"name":"code-generation-jobs","duration":496,"timestamp":70710827,"id":1733,"parentId":1722,"tags":{},"startTime":1767951855252,"traceId":"6749762fed06a213"},{"name":"module-assets","duration":660,"timestamp":70711276,"id":1734,"parentId":1722,"tags":{},"startTime":1767951855252,"traceId":"6749762fed06a213"},{"name":"create-chunk-assets","duration":25798,"timestamp":70711958,"id":1735,"parentId":1722,"tags":{},"startTime":1767951855253,"traceId":"6749762fed06a213"},{"name":"NextJsBuildManifest-generateClientManifest","duration":5401,"timestamp":70742084,"id":1737,"parentId":978,"tags":{},"startTime":1767951855283,"traceId":"6749762fed06a213"},{"name":"NextJsBuildManifest-createassets","duration":6614,"timestamp":70740890,"id":1736,"parentId":978,"tags":{},"startTime":1767951855282,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":182389,"timestamp":70817258,"id":1740,"parentId":1738,"tags":{"name":"static/chunks/main-app-3ee073768a1a6456.js","cache":"MISS"},"startTime":1767951855358,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":181422,"timestamp":70818303,"id":1742,"parentId":1738,"tags":{"name":"static/chunks/pages/_app-56f4e2c3e0cd5b77.js","cache":"MISS"},"startTime":1767951855359,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":181289,"timestamp":70818466,"id":1743,"parentId":1738,"tags":{"name":"static/chunks/pages/_error-6444830a044a065f.js","cache":"MISS"},"startTime":1767951855359,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":182146,"timestamp":70817639,"id":1741,"parentId":1738,"tags":{"name":"static/chunks/app/_not-found/page-1314fe1ff92ee0aa.js","cache":"MISS"},"startTime":1767951855359,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":181194,"timestamp":70818617,"id":1744,"parentId":1738,"tags":{"name":"static/chunks/app/layout-1baeb8f9d4de0f96.js","cache":"MISS"},"startTime":1767951855360,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":110178,"timestamp":70889717,"id":1747,"parentId":1738,"tags":{"name":"static/chunks/app/settings/page-d2293401c892d618.js","cache":"MISS"},"startTime":1767951855431,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":108936,"timestamp":70890995,"id":1748,"parentId":1738,"tags":{"name":"static/chunks/webpack-9b8a6c078d6e8803.js","cache":"MISS"},"startTime":1767951855437,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":193119,"timestamp":70819115,"id":1745,"parentId":1738,"tags":{"name":"static/chunks/app/page-f6a43d2719dc0382.js","cache":"MISS"},"startTime":1767951855360,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":210057,"timestamp":70825653,"id":1746,"parentId":1738,"tags":{"name":"static/chunks/app/project/[id]/page-aa9dcedb5ce044bd.js","cache":"MISS"},"startTime":1767951855367,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":162167,"timestamp":70919047,"id":1751,"parentId":1738,"tags":{"name":"static/chunks/193-50b9534d8bfadd2e.js","cache":"MISS"},"startTime":1767951855460,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":394426,"timestamp":70778645,"id":1739,"parentId":1738,"tags":{"name":"static/chunks/main-ff9852398b1f3782.js","cache":"MISS"},"startTime":1767951855320,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":320067,"timestamp":70909316,"id":1750,"parentId":1738,"tags":{"name":"static/chunks/c476d598-52de8ab10fae5dac.js","cache":"MISS"},"startTime":1767951855450,"traceId":"6749762fed06a213"}]
|
|
18
|
+
[{"name":"minify-js","duration":262128,"timestamp":70967333,"id":1754,"parentId":1738,"tags":{"name":"server/middleware-react-loadable-manifest.js","cache":"MISS"},"startTime":1767951855508,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":262018,"timestamp":70967473,"id":1755,"parentId":1738,"tags":{"name":"static/UHB0ELmeUrSRXrnycF8qv/_ssgManifest.js","cache":"MISS"},"startTime":1767951855508,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":262076,"timestamp":70967508,"id":1756,"parentId":1738,"tags":{"name":"server/middleware-build-manifest.js","cache":"MISS"},"startTime":1767951855508,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":265066,"timestamp":70967538,"id":1757,"parentId":1738,"tags":{"name":"static/UHB0ELmeUrSRXrnycF8qv/_buildManifest.js","cache":"MISS"},"startTime":1767951855508,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":265074,"timestamp":70967569,"id":1758,"parentId":1738,"tags":{"name":"server/next-font-manifest.js","cache":"MISS"},"startTime":1767951855508,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":428068,"timestamp":70953262,"id":1753,"parentId":1738,"tags":{"name":"static/chunks/498-05477d3729b4e23d.js","cache":"MISS"},"startTime":1767951855494,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":485226,"timestamp":70896346,"id":1749,"parentId":1738,"tags":{"name":"static/chunks/framework-63d70eb4e76697e6.js","cache":"MISS"},"startTime":1767951855437,"traceId":"6749762fed06a213"},{"name":"minify-js","duration":496412,"timestamp":70923418,"id":1752,"parentId":1738,"tags":{"name":"static/chunks/700-80036c1b7cf7a171.js","cache":"MISS"},"startTime":1767951855464,"traceId":"6749762fed06a213"},{"name":"minify-webpack-plugin-optimize","duration":669897,"timestamp":70749956,"id":1738,"parentId":978,"tags":{"compilationName":"client","mangle":"[object Object]"},"startTime":1767951855291,"traceId":"6749762fed06a213"},{"name":"minify-css","duration":496553,"timestamp":71420287,"id":1760,"parentId":1759,"tags":{"file":"static/css/7589734ea56736fa.css","cache":"MISS"},"startTime":1767951855961,"traceId":"6749762fed06a213"},{"name":"css-minimizer-plugin","duration":496766,"timestamp":71420091,"id":1759,"parentId":978,"tags":{},"startTime":1767951855961,"traceId":"6749762fed06a213"},{"name":"seal","duration":1798956,"timestamp":70138331,"id":1722,"parentId":978,"tags":{},"startTime":1767951854679,"traceId":"6749762fed06a213"},{"name":"webpack-compilation","duration":6213335,"timestamp":65724365,"id":978,"parentId":975,"tags":{"name":"client"},"startTime":1767951850265,"traceId":"6749762fed06a213"},{"name":"emit","duration":15615,"timestamp":71938140,"id":1761,"parentId":975,"tags":{},"startTime":1767951856479,"traceId":"6749762fed06a213"},{"name":"webpack-close","duration":655364,"timestamp":71955437,"id":1762,"parentId":975,"tags":{"name":"client"},"startTime":1767951856496,"traceId":"6749762fed06a213"},{"name":"webpack-generate-error-stats","duration":2987,"timestamp":72610872,"id":1763,"parentId":1762,"tags":{},"startTime":1767951857152,"traceId":"6749762fed06a213"},{"name":"run-webpack-compiler","duration":7124913,"timestamp":65489355,"id":975,"parentId":974,"tags":{},"startTime":1767951850030,"traceId":"6749762fed06a213"},{"name":"format-webpack-messages","duration":114,"timestamp":72614282,"id":1764,"parentId":974,"tags":{},"startTime":1767951857155,"traceId":"6749762fed06a213"},{"name":"worker-main-client","duration":7125752,"timestamp":65488832,"id":974,"parentId":1,"tags":{},"startTime":1767951850030,"traceId":"6749762fed06a213"},{"name":"verify-and-lint","duration":3991402,"timestamp":72661907,"id":1768,"parentId":1,"tags":{},"startTime":1767951857203,"traceId":"6749762fed06a213"},{"name":"verify-typescript-setup","duration":7702856,"timestamp":72656692,"id":1767,"parentId":1,"tags":{},"startTime":1767951857198,"traceId":"6749762fed06a213"},{"name":"check-static-error-page","duration":12339,"timestamp":80380865,"id":1771,"parentId":1770,"tags":{},"startTime":1767951864922,"traceId":"6749762fed06a213"},{"name":"check-page","duration":1886,"timestamp":80434198,"id":1772,"parentId":1770,"tags":{"page":"/_app"},"startTime":1767951864975,"traceId":"6749762fed06a213"},{"name":"check-page","duration":741,"timestamp":80435369,"id":1774,"parentId":1770,"tags":{"page":"/_document"},"startTime":1767951864976,"traceId":"6749762fed06a213"},{"name":"check-page","duration":1688,"timestamp":80435244,"id":1773,"parentId":1770,"tags":{"page":"/_error"},"startTime":1767951864976,"traceId":"6749762fed06a213"},{"name":"is-page-static","duration":320477,"timestamp":80437680,"id":1779,"parentId":1775,"tags":{},"startTime":1767951864979,"traceId":"6749762fed06a213"},{"name":"check-page","duration":322745,"timestamp":80435482,"id":1775,"parentId":1770,"tags":{"page":"/_not-found"},"startTime":1767951864976,"traceId":"6749762fed06a213"},{"name":"is-page-static","duration":348905,"timestamp":80446913,"id":1781,"parentId":1778,"tags":{},"startTime":1767951864988,"traceId":"6749762fed06a213"},{"name":"check-page","duration":360104,"timestamp":80435782,"id":1778,"parentId":1770,"tags":{"page":"/settings"},"startTime":1767951864977,"traceId":"6749762fed06a213"},{"name":"is-page-static","duration":349033,"timestamp":80446960,"id":1782,"parentId":1777,"tags":{},"startTime":1767951864988,"traceId":"6749762fed06a213"},{"name":"check-page","duration":360304,"timestamp":80435735,"id":1777,"parentId":1770,"tags":{"page":"/project/[id]"},"startTime":1767951864977,"traceId":"6749762fed06a213"},{"name":"is-page-static","duration":372502,"timestamp":80446851,"id":1780,"parentId":1776,"tags":{},"startTime":1767951864988,"traceId":"6749762fed06a213"},{"name":"check-page","duration":383735,"timestamp":80435663,"id":1776,"parentId":1770,"tags":{"page":"/"},"startTime":1767951864977,"traceId":"6749762fed06a213"},{"name":"static-check","duration":439291,"timestamp":80380123,"id":1770,"parentId":1,"tags":{},"startTime":1767951864921,"traceId":"6749762fed06a213"},{"name":"generate-required-server-files","duration":310,"timestamp":80819516,"id":1784,"parentId":1,"tags":{},"startTime":1767951865360,"traceId":"6749762fed06a213"},{"name":"write-routes-manifest","duration":2048,"timestamp":80826503,"id":1786,"parentId":1,"tags":{},"startTime":1767951865367,"traceId":"6749762fed06a213"},{"name":"load-dotenv","duration":37,"timestamp":80848292,"id":1789,"parentId":1788,"tags":{},"startTime":1767951865389,"traceId":"6749762fed06a213"},{"name":"run-export-path-map","duration":549,"timestamp":82067665,"id":1790,"parentId":1788,"tags":{},"startTime":1767951866609,"traceId":"6749762fed06a213"},{"name":"next-export","duration":2037858,"timestamp":80847499,"id":1788,"parentId":1,"tags":{},"startTime":1767951865388,"traceId":"6749762fed06a213"},{"name":"move-exported-app-not-found-","duration":7446,"timestamp":82886477,"id":1791,"parentId":1787,"tags":{},"startTime":1767951867427,"traceId":"6749762fed06a213"},{"name":"move-exported-page","duration":66661,"timestamp":82894141,"id":1792,"parentId":1787,"tags":{},"startTime":1767951867435,"traceId":"6749762fed06a213"},{"name":"static-generation","duration":2360378,"timestamp":80843851,"id":1787,"parentId":1,"tags":{},"startTime":1767951865385,"traceId":"6749762fed06a213"},{"name":"write-routes-manifest","duration":64115,"timestamp":83204389,"id":1793,"parentId":1,"tags":{},"startTime":1767951867745,"traceId":"6749762fed06a213"},{"name":"node-file-trace-build","duration":7913383,"timestamp":80820794,"id":1785,"parentId":1,"tags":{"isTurbotrace":"false"},"startTime":1767951865362,"traceId":"6749762fed06a213"},{"name":"apply-include-excludes","duration":556,"timestamp":88734195,"id":1794,"parentId":1,"tags":{},"startTime":1767951873275,"traceId":"6749762fed06a213"},{"name":"print-tree-view","duration":2462,"timestamp":88734872,"id":1795,"parentId":1,"tags":{},"startTime":1767951873276,"traceId":"6749762fed06a213"},{"name":"telemetry-flush","duration":39,"timestamp":88737345,"id":1796,"parentId":1,"tags":{},"startTime":1767951873278,"traceId":"6749762fed06a213"},{"name":"next-build","duration":33780082,"timestamp":54957306,"id":1,"tags":{"buildMode":"default","isTurboBuild":"false","version":"15.5.9","has-custom-webpack-config":"false","use-build-worker":"true"},"startTime":1767951839498,"traceId":"6749762fed06a213"}]
|