claudeship 0.2.20 → 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 +9 -9
- 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/project/ProjectCard.tsx +12 -2
- package/package.json +1 -1
- package/packages/shared/src/types/project.ts +6 -0
- package/apps/web/.next/static/chunks/87-e65fb39b36fc5ac8.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-3d9d2622b2801ab0.js +0 -1
- package/apps/web/.next/static/chunks/app/settings/page-3532fad509d55b77.js +0 -1
- package/apps/web/.next/static/css/b92103813bcb2a3c.css +0 -3
- /package/apps/web/.next/static/{91tvQbwE6MrVEkEolpLDW → UHB0ELmeUrSRXrnycF8qv}/_buildManifest.js +0 -0
- /package/apps/web/.next/static/{91tvQbwE6MrVEkEolpLDW → UHB0ELmeUrSRXrnycF8qv}/_ssgManifest.js +0 -0
package/apps/web/.next/trace
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
[{"name":"generate-buildid","duration":272,"timestamp":61789254,"id":4,"parentId":1,"tags":{},"startTime":1767933653294,"traceId":"28dfff25676795b0"},{"name":"load-custom-routes","duration":414,"timestamp":61789644,"id":5,"parentId":1,"tags":{},"startTime":1767933653294,"traceId":"28dfff25676795b0"},{"name":"create-dist-dir","duration":33540,"timestamp":61926204,"id":6,"parentId":1,"tags":{},"startTime":1767933653431,"traceId":"28dfff25676795b0"},{"name":"create-pages-mapping","duration":272,"timestamp":61967253,"id":7,"parentId":1,"tags":{},"startTime":1767933653472,"traceId":"28dfff25676795b0"},{"name":"collect-app-files","duration":3293,"timestamp":61967569,"id":8,"parentId":1,"tags":{},"startTime":1767933653472,"traceId":"28dfff25676795b0"},{"name":"create-app-mapping","duration":1600,"timestamp":61970892,"id":9,"parentId":1,"tags":{},"startTime":1767933653476,"traceId":"28dfff25676795b0"},{"name":"create-app-layouts","duration":157,"timestamp":61972529,"id":10,"parentId":1,"tags":{},"startTime":1767933653477,"traceId":"28dfff25676795b0"},{"name":"collect-default-files","duration":3760,"timestamp":61985395,"id":12,"parentId":1,"tags":{},"startTime":1767933653490,"traceId":"28dfff25676795b0"},{"name":"generate-route-types","duration":26407,"timestamp":61973126,"id":11,"parentId":1,"tags":{},"startTime":1767933653478,"traceId":"28dfff25676795b0"},{"name":"public-dir-conflict-check","duration":545,"timestamp":61999606,"id":13,"parentId":1,"tags":{},"startTime":1767933653504,"traceId":"28dfff25676795b0"},{"name":"generate-routes-manifest","duration":1586,"timestamp":62000318,"id":14,"parentId":1,"tags":{},"startTime":1767933653505,"traceId":"28dfff25676795b0"},{"name":"create-entrypoints","duration":41103,"timestamp":63048997,"id":18,"parentId":16,"tags":{},"startTime":1767933654554,"traceId":"28dfff25676795b0"},{"name":"generate-webpack-config","duration":161758,"timestamp":63090313,"id":19,"parentId":17,"tags":{},"startTime":1767933654595,"traceId":"28dfff25676795b0"},{"name":"next-trace-entrypoint-plugin","duration":3747,"timestamp":63396349,"id":21,"parentId":20,"tags":{},"startTime":1767933654901,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":38883,"timestamp":63530204,"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":1767933655035,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":127951,"timestamp":63533594,"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":1767933655038,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":305,"timestamp":63666842,"id":37,"parentId":35,"tags":{"name":"react/jsx-runtime","layer":null},"startTime":1767933655172,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":112,"timestamp":63667206,"id":38,"parentId":35,"tags":{"name":"react","layer":null},"startTime":1767933655172,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":156533,"timestamp":63528304,"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":1767933655033,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2490,"timestamp":63782884,"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":1767933655288,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3559,"timestamp":63783423,"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":1767933655288,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13269,"timestamp":63783727,"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":1767933655288,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":17552,"timestamp":63783898,"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":1767933655289,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":20749,"timestamp":63783977,"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":1767933655289,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":391249,"timestamp":63513608,"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":1767933655018,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":383554,"timestamp":63527140,"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":1767933655032,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":22570,"timestamp":63917532,"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":1767933655422,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":22596,"timestamp":63918064,"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":1767933655423,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11683,"timestamp":63945624,"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":1767933655450,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12175,"timestamp":63945747,"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":1767933655450,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":48402,"timestamp":63917747,"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":1767933655422,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":57,"timestamp":63974119,"id":50,"parentId":30,"tags":{"name":"path","layer":null},"startTime":1767933655479,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":45,"timestamp":63974259,"id":51,"parentId":30,"tags":{"name":"next/dist/shared/lib/router/utils/app-paths","layer":null},"startTime":1767933655479,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":17,"timestamp":63974321,"id":52,"parentId":30,"tags":{"name":"next/dist/shared/lib/router/utils/is-bot","layer":null},"startTime":1767933655479,"traceId":"28dfff25676795b0"},{"name":"build-module-external","duration":15,"timestamp":63974353,"id":53,"parentId":30,"tags":{"name":"next/dist/shared/lib/no-fallback-error.external","layer":null},"startTime":1767933655479,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":31462,"timestamp":63945828,"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":1767933655450,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5879,"timestamp":63980687,"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":1767933655485,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6853,"timestamp":63980881,"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":1767933655486,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":544685,"timestamp":63527941,"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":1767933655033,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":590180,"timestamp":63527616,"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":1767933655032,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1706,"timestamp":64143877,"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":1767933655649,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1847,"timestamp":64144303,"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":1767933655649,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3964,"timestamp":64144377,"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":1767933655649,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":26962,"timestamp":64144440,"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":1767933655649,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":35594,"timestamp":64144679,"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":1767933655649,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8389,"timestamp":64195762,"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":1767933655700,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":32893,"timestamp":64195886,"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/route-kind.js","layer":"rsc"},"startTime":1767933655701,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":36691,"timestamp":64197272,"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/tracer.js","layer":"rsc"},"startTime":1767933655702,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":44257,"timestamp":64197532,"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/lib/trace/constants.js","layer":"rsc"},"startTime":1767933655702,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":45164,"timestamp":64197799,"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/request-meta.js","layer":"rsc"},"startTime":1767933655702,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":52090,"timestamp":64198075,"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/render-result.js","layer":"rsc"},"startTime":1767933655703,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":53521,"timestamp":64198348,"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/send-payload.js","layer":"rsc"},"startTime":1767933655703,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":57020,"timestamp":64198688,"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/streaming-metadata.js","layer":"rsc"},"startTime":1767933655703,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":57814,"timestamp":64198990,"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/server/lib/server-action-request-meta.js","layer":"rsc"},"startTime":1767933655704,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":61467,"timestamp":64199252,"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/fallback.js","layer":"rsc"},"startTime":1767933655704,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":67024,"timestamp":64199470,"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/lib/constants.js","layer":"rsc"},"startTime":1767933655704,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":67889,"timestamp":64199689,"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/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1767933655704,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":68059,"timestamp":64199923,"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/instrumentation/utils.js","layer":"rsc"},"startTime":1767933655705,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":68149,"timestamp":64200216,"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/interop-default.js","layer":"rsc"},"startTime":1767933655705,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":68151,"timestamp":64200705,"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/strip-flight-headers.js","layer":"rsc"},"startTime":1767933655705,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":72825,"timestamp":64200932,"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/action-utils.js","layer":"rsc"},"startTime":1767933655706,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":77441,"timestamp":64201275,"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/app-render/entry-base.js","layer":"rsc"},"startTime":1767933655706,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":79781,"timestamp":64201514,"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/base-http/node.js","layer":"rsc"},"startTime":1767933655706,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":80518,"timestamp":64201861,"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/request/fallback-params.js","layer":"rsc"},"startTime":1767933655707,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":81045,"timestamp":64202120,"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/lib/experimental/ppr.js","layer":"rsc"},"startTime":1767933655707,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":81556,"timestamp":64202339,"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/stream-utils/encoded-tags.js","layer":"rsc"},"startTime":1767933655707,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":82842,"timestamp":64203492,"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/server/response-cache/index.js","layer":"rsc"},"startTime":1767933655708,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":159696,"timestamp":64143993,"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":1767933655649,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":159717,"timestamp":64144484,"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":1767933655649,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":160089,"timestamp":64144583,"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":1767933655649,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":160219,"timestamp":64144807,"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":1767933655649,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":162907,"timestamp":64144731,"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":1767933655649,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":105740,"timestamp":64202671,"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/redirect-status-code.js","layer":"rsc"},"startTime":1767933655707,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":107035,"timestamp":64202860,"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/builtin/global-error.js","layer":"rsc"},"startTime":1767933655708,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":107654,"timestamp":64203050,"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/not-found.js","layer":"rsc"},"startTime":1767933655708,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":108110,"timestamp":64203375,"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/unauthorized.js","layer":"rsc"},"startTime":1767933655708,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":110277,"timestamp":64202545,"id":88,"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":1767933655707,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":110324,"timestamp":64203181,"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/forbidden.js","layer":"rsc"},"startTime":1767933655708,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":117361,"timestamp":64200468,"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":1767933655705,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":23332,"timestamp":64329114,"id":95,"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":1767933655834,"traceId":"28dfff25676795b0"},{"name":"build-module-cjs","duration":24363,"timestamp":64329232,"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":1767933655834,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":972223,"timestamp":63424177,"id":24,"parentId":22,"tags":{"request":"next/dist/pages/_app"},"startTime":1767933654929,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":68,"timestamp":64396570,"id":97,"parentId":59,"tags":{"name":"next/dist/compiled/next-server/pages.runtime.prod.js","layer":null},"startTime":1767933655901,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1536,"timestamp":64396658,"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":1767933655901,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8981,"timestamp":64396763,"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":1767933655901,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10476,"timestamp":64396811,"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":1767933655901,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15660,"timestamp":64396853,"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":1767933655902,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15969,"timestamp":64396892,"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":1767933655902,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":16242,"timestamp":64396929,"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":1767933655902,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":71,"timestamp":64431813,"id":105,"parentId":77,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.prod.js","layer":null},"startTime":1767933655936,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6886,"timestamp":64432474,"id":109,"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":1767933655937,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":63548,"timestamp":64431911,"id":106,"parentId":68,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933655937,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":107750,"timestamp":64396969,"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":1767933655902,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":78926,"timestamp":64432236,"id":107,"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/utils.js","layer":"rsc"},"startTime":1767933655937,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":79273,"timestamp":64432365,"id":108,"parentId":68,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933655937,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":78833,"timestamp":64433553,"id":111,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"rsc"},"startTime":1767933655938,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":80643,"timestamp":64432533,"id":110,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/layout.tsx","layer":"rsc"},"startTime":1767933655937,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11847,"timestamp":64526958,"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":1767933656032,"traceId":"28dfff25676795b0"},{"name":"build-module-external","duration":390,"timestamp":64542879,"id":113,"parentId":60,"tags":{"name":"../../../shared/lib/no-fallback-error.external","layer":null},"startTime":1767933656048,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4097,"timestamp":64543813,"id":115,"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":1767933656048,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4861,"timestamp":64543911,"id":116,"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":1767933656049,"traceId":"28dfff25676795b0"}]
|
|
2
|
-
[{"name":"build-module-js","duration":9292,"timestamp":64544215,"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":1767933656049,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15015,"timestamp":64543405,"id":114,"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/lib/cache-control.js","layer":"rsc"},"startTime":1767933656048,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15992,"timestamp":64543963,"id":117,"parentId":94,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933656049,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":17977,"timestamp":64544278,"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":1767933656049,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":16709,"timestamp":64546511,"id":120,"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/router/utils/is-bot.js","layer":"rsc"},"startTime":1767933656051,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":17244,"timestamp":64546857,"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":1767933656052,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":17660,"timestamp":64546949,"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":1767933656052,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":19604,"timestamp":64546757,"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":1767933656051,"traceId":"28dfff25676795b0"},{"name":"build-module-external","duration":56,"timestamp":64602179,"id":124,"parentId":82,"tags":{"name":"./work-async-storage.external","layer":null},"startTime":1767933656107,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6143,"timestamp":64602477,"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":1767933656107,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6970,"timestamp":64602720,"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":1767933656107,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7665,"timestamp":64602949,"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":1767933656108,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":17674,"timestamp":64603228,"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":1767933656108,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":18528,"timestamp":64603725,"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":1767933656108,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":25668,"timestamp":64602259,"id":125,"parentId":71,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933656107,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":26427,"timestamp":64602531,"id":127,"parentId":94,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933656107,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":29904,"timestamp":64602766,"id":129,"parentId":94,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933656107,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":36679,"timestamp":64602998,"id":131,"parentId":71,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933656108,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":37217,"timestamp":64603516,"id":135,"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/lib/etag.js","layer":"rsc"},"startTime":1767933656108,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":42582,"timestamp":64603312,"id":133,"parentId":71,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933656108,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":42905,"timestamp":64603435,"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":1767933656108,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":42910,"timestamp":64603857,"id":138,"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/client/components/layout-router.js","layer":"rsc"},"startTime":1767933656109,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":43217,"timestamp":64603981,"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":1767933656109,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":46839,"timestamp":64603779,"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":1767933656108,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1025,"timestamp":64684625,"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":1767933656189,"traceId":"28dfff25676795b0"},{"name":"build-module-external","duration":64,"timestamp":64693464,"id":141,"parentId":83,"tags":{"name":"./work-unit-async-storage.external","layer":null},"startTime":1767933656198,"traceId":"28dfff25676795b0"},{"name":"build-module-external","duration":16,"timestamp":64693556,"id":142,"parentId":83,"tags":{"name":"../app-render/action-async-storage.external","layer":null},"startTime":1767933656198,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":20014,"timestamp":64694126,"id":146,"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/request/search-params.js","layer":"rsc"},"startTime":1767933656199,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":28673,"timestamp":64694364,"id":147,"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/request/params.js","layer":"rsc"},"startTime":1767933656199,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":33566,"timestamp":64695755,"id":149,"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/app-render/collect-segment-data.js","layer":"rsc"},"startTime":1767933656200,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":46208,"timestamp":64695967,"id":150,"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/lib/patch-fetch.js","layer":"rsc"},"startTime":1767933656201,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":50389,"timestamp":64693592,"id":143,"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/client/components/client-page.js","layer":"rsc"},"startTime":1767933656198,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":50513,"timestamp":64693847,"id":144,"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/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1767933656199,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":50732,"timestamp":64693976,"id":145,"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/client/components/client-segment.js","layer":"rsc"},"startTime":1767933656199,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":54206,"timestamp":64694609,"id":148,"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/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1767933656199,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3558,"timestamp":64807215,"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":1767933656312,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8646,"timestamp":64806590,"id":152,"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/base-http/index.js","layer":"rsc"},"startTime":1767933656311,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8919,"timestamp":64806947,"id":153,"parentId":94,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933656312,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":19435,"timestamp":64801318,"id":151,"parentId":33,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"rsc"},"startTime":1767933656306,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":18475,"timestamp":64807408,"id":156,"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/shared/lib/router/utils/path-has-prefix.js","layer":"rsc"},"startTime":1767933656312,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":19531,"timestamp":64807280,"id":155,"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/shared/lib/router/utils/app-paths.js","layer":"rsc"},"startTime":1767933656312,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":19830,"timestamp":64807530,"id":157,"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/shared/lib/router/utils/remove-path-prefix.js","layer":"rsc"},"startTime":1767933656312,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":22920,"timestamp":64807639,"id":158,"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/shared/lib/router/utils/route-matcher.js","layer":"rsc"},"startTime":1767933656312,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":23270,"timestamp":64807845,"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":1767933656313,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":32929,"timestamp":64807742,"id":159,"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/shared/lib/router/utils/route-regex.js","layer":"rsc"},"startTime":1767933656312,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14929,"timestamp":64856336,"id":166,"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/lib/metadata/metadata.js","layer":"rsc"},"startTime":1767933656361,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15867,"timestamp":64856563,"id":167,"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/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1767933656361,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15978,"timestamp":64856792,"id":168,"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/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1767933656361,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":23604,"timestamp":64854270,"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":1767933656359,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":22834,"timestamp":64855616,"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":1767933656360,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":23070,"timestamp":64855798,"id":163,"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/client/components/http-access-fallback/error-boundary.js","layer":"rsc"},"startTime":1767933656360,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":26952,"timestamp":64855940,"id":164,"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/client/components/http-access-fallback/error-fallback.js","layer":"rsc"},"startTime":1767933656361,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":29386,"timestamp":64856105,"id":165,"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/lib/framework/boundary-components.js","layer":"rsc"},"startTime":1767933656361,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2338,"timestamp":64909324,"id":169,"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/app-render/rsc/taint.js","layer":"rsc"},"startTime":1767933656414,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1595,"timestamp":64934503,"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":1767933656439,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3323,"timestamp":64934188,"id":171,"parentId":90,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933656439,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3355,"timestamp":64934577,"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":1767933656439,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":10214,"timestamp":64928443,"id":170,"parentId":32,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"rsc"},"startTime":1767933656433,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6512,"timestamp":64939574,"id":181,"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/api-utils/index.js","layer":"rsc"},"startTime":1767933656444,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":18902,"timestamp":64934783,"id":174,"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":1767933656439,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":22700,"timestamp":64935078,"id":177,"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":1767933656440,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":23877,"timestamp":64934947,"id":176,"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":1767933656440,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":27331,"timestamp":64935152,"id":178,"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":1767933656440,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":27879,"timestamp":64935218,"id":179,"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":1767933656440,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":29715,"timestamp":64934871,"id":175,"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":1767933656440,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":30438,"timestamp":64935321,"id":180,"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":1767933656440,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7198,"timestamp":64995918,"id":182,"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":1767933656501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13943,"timestamp":64996393,"id":185,"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":1767933656501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":16077,"timestamp":64996031,"id":183,"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":1767933656501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":20703,"timestamp":64996436,"id":186,"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":1767933656501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":33218,"timestamp":64996296,"id":184,"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":1767933656501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":34322,"timestamp":64996622,"id":187,"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":1767933656501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1857,"timestamp":65042850,"id":188,"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/route-modules/app-page/vendored/rsc/react-server-dom-webpack-server.js","layer":"rsc"},"startTime":1767933656548,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1414,"timestamp":65043516,"id":189,"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/route-modules/app-page/vendored/rsc/react-server-dom-webpack-static.js","layer":"rsc"},"startTime":1767933656548,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3900,"timestamp":65046188,"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":1767933656551,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5152,"timestamp":65046390,"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":1767933656551,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7071,"timestamp":65046780,"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":1767933656551,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7558,"timestamp":65046832,"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":1767933656551,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8411,"timestamp":65046877,"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":1767933656552,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12114,"timestamp":65046949,"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":1767933656552,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12820,"timestamp":65046991,"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":1767933656552,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":16753,"timestamp":65046654,"id":193,"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":1767933656551,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":26369,"timestamp":65046528,"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":1767933656551,"traceId":"28dfff25676795b0"},{"name":"build-module-external","duration":52,"timestamp":65089368,"id":199,"parentId":147,"tags":{"name":"../app-render/dynamic-access-async-storage.external","layer":null},"startTime":1767933656594,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2217,"timestamp":65090755,"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":1767933656595,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12312,"timestamp":65089457,"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":1767933656594,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":18715,"timestamp":65089782,"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":1767933656594,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":19222,"timestamp":65090078,"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":1767933656595,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":26688,"timestamp":65090810,"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":1767933656595,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":31883,"timestamp":65090482,"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":1767933656595,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":33203,"timestamp":65090632,"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":1767933656595,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8985,"timestamp":65128237,"id":207,"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":1767933656633,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2289,"timestamp":65152099,"id":208,"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":1767933656657,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15635,"timestamp":65165958,"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":1767933656671,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":24933,"timestamp":65165604,"id":209,"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/compiled/fresh/index.js","layer":"rsc"},"startTime":1767933656670,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":25077,"timestamp":65166078,"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":1767933656671,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":25308,"timestamp":65166452,"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":1767933656671,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":35643,"timestamp":65166316,"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":1767933656671,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":39141,"timestamp":65166689,"id":214,"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":1767933656671,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14161,"timestamp":65206258,"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":1767933656711,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15110,"timestamp":65206665,"id":217,"parentId":175,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933656711,"traceId":"28dfff25676795b0"}]
|
|
3
|
-
[{"name":"build-module-js","duration":16756,"timestamp":65206511,"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":1767933656711,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13170,"timestamp":65211192,"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":1767933656716,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":19344,"timestamp":65229393,"id":219,"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/lib/metadata/resolve-metadata.js","layer":"rsc"},"startTime":1767933656734,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":20383,"timestamp":65229736,"id":220,"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/lib/framework/boundary-constants.js","layer":"rsc"},"startTime":1767933656734,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":21494,"timestamp":65229971,"id":221,"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/request/pathname.js","layer":"rsc"},"startTime":1767933656735,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":24817,"timestamp":65230217,"id":222,"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/client/components/http-access-fallback/http-access-fallback.js","layer":"rsc"},"startTime":1767933656735,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":26093,"timestamp":65230344,"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":1767933656735,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":29101,"timestamp":65230460,"id":224,"parentId":110,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"rsc"},"startTime":1767933656735,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7631,"timestamp":65267243,"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":1767933656772,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7726,"timestamp":65277900,"id":226,"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/lib/metadata/generate/basic.js","layer":"rsc"},"startTime":1767933656783,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7610,"timestamp":65312126,"id":228,"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/lib/metadata/generate/alternate.js","layer":"rsc"},"startTime":1767933656817,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":17462,"timestamp":65312407,"id":229,"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/lib/metadata/generate/opengraph.js","layer":"rsc"},"startTime":1767933656817,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":18660,"timestamp":65312638,"id":230,"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/lib/metadata/generate/icons.js","layer":"rsc"},"startTime":1767933656817,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":23214,"timestamp":65312881,"id":231,"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/lib/metadata/generate/meta.js","layer":"rsc"},"startTime":1767933656818,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":23312,"timestamp":65313271,"id":233,"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/lib/router-utils/is-postpone.js","layer":"rsc"},"startTime":1767933656818,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":29861,"timestamp":65313136,"id":232,"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/client/components/metadata/async-metadata.js","layer":"rsc"},"startTime":1767933656818,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":32920,"timestamp":65311915,"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":1767933656817,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":1925393,"timestamp":63424326,"id":29,"parentId":22,"tags":{"request":"next/dist/pages/_document"},"startTime":1767933654929,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13229,"timestamp":65349456,"id":234,"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":1767933656854,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":902,"timestamp":65363027,"id":235,"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":1767933656868,"traceId":"28dfff25676795b0"},{"name":"build-module-cjs","duration":2062,"timestamp":65385501,"id":236,"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":1767933656890,"traceId":"28dfff25676795b0"},{"name":"build-module-css","duration":1925,"timestamp":65385906,"id":238,"parentId":110,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":"rsc"},"startTime":1767933656891,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7357,"timestamp":65385624,"id":237,"parentId":181,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933656890,"traceId":"28dfff25676795b0"},{"name":"build-module-external","duration":31,"timestamp":65397315,"id":241,"parentId":193,"tags":{"name":"../app-render/after-task-async-storage.external","layer":null},"startTime":1767933656902,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":651,"timestamp":65397153,"id":239,"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":1767933656902,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":772,"timestamp":65397258,"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/amp-context.js","layer":"pages-dir-node"},"startTime":1767933656902,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7277,"timestamp":65397365,"id":242,"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":1767933656902,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3275,"timestamp":65412475,"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/lib/error-telemetry-utils.js","layer":"rsc"},"startTime":1767933656917,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3344,"timestamp":65412884,"id":246,"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":1767933656918,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3068,"timestamp":65416428,"id":248,"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":1767933656921,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6811,"timestamp":65416732,"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":1767933656921,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11400,"timestamp":65416980,"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":1767933656922,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":20585,"timestamp":65416500,"id":249,"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":1767933656921,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":21184,"timestamp":65416783,"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":1767933656921,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":28894,"timestamp":65417060,"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":1767933656922,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":34988,"timestamp":65412731,"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":1767933656917,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":41613,"timestamp":65413137,"id":247,"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":1767933656918,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":43914,"timestamp":65412147,"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/format-server-error.js","layer":"rsc"},"startTime":1767933656917,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":96245,"timestamp":65482174,"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":1767933656987,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":97773,"timestamp":65482504,"id":255,"parentId":214,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933656987,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1827,"timestamp":65581694,"id":262,"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":1767933657086,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2265,"timestamp":65582052,"id":263,"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":1767933657087,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3161,"timestamp":65582286,"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/server/lib/app-dir-module.js","layer":"rsc"},"startTime":1767933657087,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3725,"timestamp":65582490,"id":265,"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":1767933657087,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10508,"timestamp":65602124,"id":266,"parentId":181,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933657107,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13872,"timestamp":65602440,"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":1767933657107,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14393,"timestamp":65602713,"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":1767933657107,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":18122,"timestamp":65602942,"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":1767933657108,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6457,"timestamp":65640444,"id":270,"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":1767933657145,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6717,"timestamp":65640801,"id":271,"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":1767933657145,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13676,"timestamp":65641084,"id":272,"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":1767933657146,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15459,"timestamp":65641303,"id":273,"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":1767933657146,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7741,"timestamp":65697607,"id":274,"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":1767933657202,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13101,"timestamp":65715643,"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":1767933657220,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15664,"timestamp":65715124,"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":1767933657220,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":18633,"timestamp":65715714,"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":1767933657220,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":84235,"timestamp":65701279,"id":275,"parentId":235,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933657206,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":71214,"timestamp":65715466,"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":1767933657220,"traceId":"28dfff25676795b0"},{"name":"font-loader","duration":263741,"timestamp":65545128,"id":259,"parentId":258,"tags":{},"startTime":1767933657050,"traceId":"28dfff25676795b0"},{"name":"font-loader","duration":240217,"timestamp":65573541,"id":261,"parentId":260,"tags":{},"startTime":1767933657078,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1462,"timestamp":65814245,"id":281,"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":1767933657319,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1693,"timestamp":65814584,"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":1767933657319,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9765,"timestamp":65813876,"id":280,"parentId":214,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933657319,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10109,"timestamp":65814333,"id":282,"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":1767933657319,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10297,"timestamp":65814650,"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":1767933657319,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":49,"timestamp":65828316,"id":285,"parentId":275,"tags":{"name":"util","layer":null},"startTime":1767933657333,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4798,"timestamp":65828389,"id":286,"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":1767933657333,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6866,"timestamp":65828726,"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/metadata/resolvers/resolve-url.js","layer":"rsc"},"startTime":1767933657333,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2721,"timestamp":65838371,"id":288,"parentId":273,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933657343,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2242,"timestamp":65845857,"id":289,"parentId":273,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933657351,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":835,"timestamp":65851129,"id":290,"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":1767933657356,"traceId":"28dfff25676795b0"},{"name":"postcss","duration":5684,"timestamp":66154423,"id":291,"parentId":258,"tags":{},"startTime":1767933657659,"traceId":"28dfff25676795b0"},{"name":"postcss","duration":2649,"timestamp":66157471,"id":292,"parentId":260,"tags":{},"startTime":1767933657662,"traceId":"28dfff25676795b0"},{"name":"next-font-loader","duration":674147,"timestamp":65486740,"id":258,"parentId":256,"tags":{},"startTime":1767933656991,"traceId":"28dfff25676795b0"},{"name":"next-font-loader","duration":587422,"timestamp":65573473,"id":260,"parentId":257,"tags":{},"startTime":1767933657078,"traceId":"28dfff25676795b0"},{"name":"css-loader","duration":37735,"timestamp":66160382,"id":293,"parentId":256,"tags":{"astUsed":"true"},"startTime":1767933657665,"traceId":"28dfff25676795b0"},{"name":"css-loader","duration":37258,"timestamp":66160869,"id":294,"parentId":257,"tags":{"astUsed":"true"},"startTime":1767933657666,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":715790,"timestamp":65482742,"id":256,"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":1767933656987,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":712294,"timestamp":65486424,"id":257,"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":1767933656991,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5636,"timestamp":66209573,"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":1767933657714,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6159,"timestamp":66209755,"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":1767933657714,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6976,"timestamp":66209913,"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":1767933657715,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11246,"timestamp":66210161,"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":1767933657715,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":21904,"timestamp":66210240,"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":1767933657715,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":31328,"timestamp":66210035,"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":1767933657715,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":28628,"timestamp":66255709,"id":302,"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":1767933657760,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":29208,"timestamp":66255822,"id":303,"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":1767933657760,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":31341,"timestamp":66255521,"id":301,"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":1767933657760,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8267,"timestamp":66279109,"id":304,"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":1767933657784,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":953,"timestamp":66288410,"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":1767933657793,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5089,"timestamp":66288713,"id":306,"parentId":287,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933657793,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6277,"timestamp":66296970,"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":1767933657802,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7406,"timestamp":66297156,"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":1767933657802,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8308,"timestamp":66297684,"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-path-suffix.js","layer":"pages-dir-node"},"startTime":1767933657802,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8729,"timestamp":66297777,"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-path-suffix.js","layer":"rsc"},"startTime":1767933657802,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9144,"timestamp":66297927,"id":311,"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":1767933657803,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9551,"timestamp":66298042,"id":312,"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":1767933657803,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9215,"timestamp":66316581,"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":1767933657821,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14081,"timestamp":66316649,"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":1767933657821,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":2906694,"timestamp":63424234,"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":1767933654929,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":2907446,"timestamp":63423492,"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":1767933654928,"traceId":"28dfff25676795b0"}]
|
|
4
|
-
[{"name":"add-entry","duration":2906677,"timestamp":63424267,"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":1767933654929,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":2906638,"timestamp":63424309,"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":1767933654929,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":2906660,"timestamp":63424291,"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":1767933654929,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":2418,"timestamp":66424227,"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":1767933657929,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":444,"timestamp":66426687,"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":1767933657931,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":884,"timestamp":66427155,"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":1767933657932,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":709,"timestamp":66428064,"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":1767933657933,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":278,"timestamp":66428793,"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":1767933657933,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":255,"timestamp":66429091,"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":1767933657934,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":217,"timestamp":66429359,"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":1767933657934,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":239,"timestamp":66429593,"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":1767933657934,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":346,"timestamp":66429850,"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":1767933657935,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":201,"timestamp":66430210,"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":1767933657935,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":7871,"timestamp":66453763,"id":347,"parentId":341,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"ssr"},"startTime":1767933657958,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":15312,"timestamp":66455484,"id":349,"parentId":343,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"ssr"},"startTime":1767933657960,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":17268,"timestamp":66455264,"id":348,"parentId":345,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"ssr"},"startTime":1767933657960,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":17041,"timestamp":66456618,"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":1767933657961,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":19423,"timestamp":66456416,"id":351,"parentId":337,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"ssr"},"startTime":1767933657961,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":20154,"timestamp":66456726,"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":1767933657961,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":20755,"timestamp":66456927,"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":1767933657962,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":20310,"timestamp":66458873,"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":1767933657964,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":22386,"timestamp":66458774,"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":1767933657963,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":23388,"timestamp":66458522,"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":1767933657963,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":27281,"timestamp":66455680,"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":1767933657960,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":37898,"timestamp":66456830,"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":1767933657961,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9047,"timestamp":66529652,"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":1767933658034,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13833,"timestamp":66529852,"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":1767933658035,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14182,"timestamp":66530074,"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":1767933658035,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":23711,"timestamp":66522428,"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":1767933658027,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":22757,"timestamp":66529457,"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":1767933658034,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":23373,"timestamp":66530248,"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":1767933658035,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":23785,"timestamp":66530331,"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":1767933658035,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":24557,"timestamp":66530404,"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":1767933658035,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5466,"timestamp":66578933,"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":1767933658084,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6460,"timestamp":66579257,"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":1767933658084,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5760,"timestamp":66580341,"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":1767933658085,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13822,"timestamp":66580146,"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":1767933658085,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14421,"timestamp":66580251,"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":1767933658085,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14523,"timestamp":66580521,"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":1767933658085,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15930,"timestamp":66579937,"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":1767933658085,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":22162,"timestamp":66579628,"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":1767933658084,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2495,"timestamp":66628805,"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":1767933658133,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8317,"timestamp":66629334,"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":1767933658134,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9093,"timestamp":66629235,"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":1767933658134,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11396,"timestamp":66629093,"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":1767933658134,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3446,"timestamp":66638705,"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/match-segments.js","layer":"ssr"},"startTime":1767933658143,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3759,"timestamp":66638837,"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/unresolved-thenable.js","layer":"ssr"},"startTime":1767933658144,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5558,"timestamp":66638528,"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/error-boundary.js","layer":"ssr"},"startTime":1767933658143,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6467,"timestamp":66638779,"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":1767933658143,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11200,"timestamp":66638944,"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":1767933658144,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12195,"timestamp":66638894,"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":1767933658144,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13481,"timestamp":66639031,"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":1767933658144,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14069,"timestamp":66639099,"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":1767933658144,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12443,"timestamp":66641320,"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":1767933658146,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3440,"timestamp":66661744,"id":388,"parentId":379,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658166,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3899,"timestamp":66661865,"id":389,"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":1767933658167,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9222,"timestamp":66661928,"id":390,"parentId":379,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658167,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10958,"timestamp":66663695,"id":391,"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":1767933658168,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11740,"timestamp":66663807,"id":392,"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":1767933658168,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14519,"timestamp":66663902,"id":393,"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":1767933658169,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8502,"timestamp":66671689,"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/create-router-cache-key.js","layer":"ssr"},"startTime":1767933658176,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4995,"timestamp":66681138,"id":396,"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":1767933658186,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4307,"timestamp":66682093,"id":397,"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":1767933658187,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8123,"timestamp":66680951,"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/reducers/has-interception-route-in-current-tree.js","layer":"ssr"},"startTime":1767933658186,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6069,"timestamp":66701747,"id":399,"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/shared/lib/router/utils/html-bots.js","layer":"ssr"},"startTime":1767933658206,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1170,"timestamp":66708053,"id":401,"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":1767933658213,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1052,"timestamp":66708345,"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.js","layer":"ssr"},"startTime":1767933658213,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8646,"timestamp":66701475,"id":398,"parentId":389,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658206,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8144,"timestamp":66707887,"id":400,"parentId":393,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658213,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6534,"timestamp":66712346,"id":403,"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/shared/lib/router/utils/interception-routes.js","layer":"ssr"},"startTime":1767933658217,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1729,"timestamp":66721571,"id":404,"parentId":401,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933658226,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3596,"timestamp":66721845,"id":405,"parentId":379,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658227,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5130,"timestamp":66722080,"id":407,"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":1767933658227,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9867,"timestamp":66721956,"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/navigation.js","layer":"ssr"},"startTime":1767933658227,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10163,"timestamp":66733948,"id":408,"parentId":393,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933658239,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":6383,"timestamp":66745415,"id":409,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectList.tsx","layer":"ssr"},"startTime":1767933658250,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":7880,"timestamp":66745677,"id":410,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectModal.tsx","layer":"ssr"},"startTime":1767933658250,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":8506,"timestamp":66745872,"id":411,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/Header.tsx","layer":"ssr"},"startTime":1767933658251,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4904,"timestamp":66757281,"id":413,"parentId":393,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933658262,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6645,"timestamp":66757102,"id":412,"parentId":393,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933658262,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9314,"timestamp":66757389,"id":414,"parentId":393,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933658262,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1285,"timestamp":66767208,"id":416,"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":1767933658272,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":20284,"timestamp":66767482,"id":417,"parentId":393,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933658272,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1200,"timestamp":66797530,"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":1767933658302,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":41380,"timestamp":66757476,"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":1767933658262,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":9366,"timestamp":66792430,"id":419,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/input.tsx","layer":"ssr"},"startTime":1767933658297,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11244,"timestamp":66792257,"id":418,"parentId":393,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658297,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":7393,"timestamp":66797142,"id":421,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/button.tsx","layer":"ssr"},"startTime":1767933658302,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8821,"timestamp":66796938,"id":420,"parentId":417,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658302,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":9955,"timestamp":66797356,"id":422,"parentId":349,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/workspace/WorkspaceLayout.tsx","layer":"ssr"},"startTime":1767933658302,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":5834,"timestamp":66845760,"id":424,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useProjectStore.ts","layer":"ssr"},"startTime":1767933658350,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":6825,"timestamp":66846087,"id":425,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/api.ts","layer":"ssr"},"startTime":1767933658351,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":897,"timestamp":66862746,"id":426,"parentId":393,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933658367,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2290,"timestamp":66873297,"id":427,"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":1767933658378,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5361,"timestamp":66873580,"id":428,"parentId":406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658378,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5942,"timestamp":66873711,"id":429,"parentId":406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658378,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6224,"timestamp":66873925,"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/create-href-from-url.js","layer":"ssr"},"startTime":1767933658379,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7042,"timestamp":66873814,"id":430,"parentId":406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658378,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9088,"timestamp":66874041,"id":432,"parentId":406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658379,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":15487,"timestamp":66876534,"id":433,"parentId":409,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectCard.tsx","layer":"ssr"},"startTime":1767933658381,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":7600,"timestamp":66896476,"id":435,"parentId":411,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/LanguageSwitcher.tsx","layer":"ssr"},"startTime":1767933658401,"traceId":"28dfff25676795b0"}]
|
|
5
|
-
[{"name":"build-module-tsx","duration":8307,"timestamp":66896292,"id":434,"parentId":409,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectCard.tsx","layer":"ssr"},"startTime":1767933658401,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6013,"timestamp":66905232,"id":437,"parentId":418,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658410,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":7149,"timestamp":66905027,"id":436,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/index.ts","layer":"ssr"},"startTime":1767933658410,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":36894,"timestamp":66928821,"id":444,"parentId":410,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/dialog.tsx","layer":"ssr"},"startTime":1767933658433,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":61315,"timestamp":66916841,"id":438,"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":1767933658422,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":61376,"timestamp":66917045,"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":1767933658422,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":33409,"timestamp":66950878,"id":445,"parentId":428,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658456,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":67670,"timestamp":66917135,"id":440,"parentId":411,"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":1767933658422,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":68853,"timestamp":66917200,"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":1767933658422,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":69003,"timestamp":66917317,"id":443,"parentId":434,"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":1767933658422,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":69366,"timestamp":66917262,"id":442,"parentId":433,"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":1767933658422,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8656,"timestamp":66978809,"id":446,"parentId":428,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658483,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11591,"timestamp":66978938,"id":447,"parentId":428,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658484,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14158,"timestamp":66979041,"id":448,"parentId":428,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658484,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12833,"timestamp":66991454,"id":449,"parentId":411,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933658496,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8965,"timestamp":67001880,"id":450,"parentId":411,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933658507,"traceId":"28dfff25676795b0"},{"name":"build-module-json","duration":1012,"timestamp":67012972,"id":454,"parentId":436,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/en.json","layer":"ssr"},"startTime":1767933658518,"traceId":"28dfff25676795b0"},{"name":"build-module-json","duration":706,"timestamp":67013415,"id":455,"parentId":436,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/ko.json","layer":"ssr"},"startTime":1767933658518,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4629,"timestamp":67012605,"id":451,"parentId":406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933658517,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":7858,"timestamp":67012786,"id":452,"parentId":419,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/utils.ts","layer":"ssr"},"startTime":1767933658517,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8491,"timestamp":67012914,"id":453,"parentId":437,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658518,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2976,"timestamp":67023296,"id":457,"parentId":450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658528,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4711,"timestamp":67023189,"id":456,"parentId":450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658528,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4980,"timestamp":67031956,"id":458,"parentId":457,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658537,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":6871,"timestamp":67032500,"id":461,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileExplorer.tsx","layer":"ssr"},"startTime":1767933658537,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":10533,"timestamp":67032669,"id":462,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileViewer.tsx","layer":"ssr"},"startTime":1767933658537,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":12082,"timestamp":67032140,"id":459,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ChatPanel.tsx","layer":"ssr"},"startTime":1767933658537,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":17296,"timestamp":67032330,"id":460,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/PreviewPanel.tsx","layer":"ssr"},"startTime":1767933658537,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":23225,"timestamp":67056745,"id":463,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/database/DatabasePanel.tsx","layer":"ssr"},"startTime":1767933658561,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":21058,"timestamp":67080372,"id":464,"parentId":448,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658585,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":24988,"timestamp":67080573,"id":465,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/testing/TestRunner.tsx","layer":"ssr"},"startTime":1767933658585,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":28036,"timestamp":67080778,"id":466,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/checkpoint/CheckpointPanel.tsx","layer":"ssr"},"startTime":1767933658585,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":32191,"timestamp":67080968,"id":467,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/env/EnvPanel.tsx","layer":"ssr"},"startTime":1767933658586,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":26705,"timestamp":67114815,"id":469,"parentId":462,"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":1767933658619,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":27263,"timestamp":67114624,"id":468,"parentId":461,"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":1767933658619,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":3256,"timestamp":67142306,"id":470,"parentId":421,"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":1767933658647,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":32415,"timestamp":67142545,"id":471,"parentId":459,"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":1767933658647,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":35500,"timestamp":67142639,"id":472,"parentId":460,"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":1767933658647,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2064,"timestamp":67179295,"id":473,"parentId":464,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933658684,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8624,"timestamp":67179467,"id":474,"parentId":463,"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":1767933658684,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":12172,"timestamp":67189348,"id":481,"parentId":436,"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":1767933658694,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14818,"timestamp":67189173,"id":479,"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":1767933658694,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15092,"timestamp":67189260,"id":480,"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":1767933658694,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":16776,"timestamp":67188613,"id":475,"parentId":433,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/card.tsx","layer":"ssr"},"startTime":1767933658693,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":23528,"timestamp":67188843,"id":476,"parentId":465,"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":1767933658694,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":24595,"timestamp":67188956,"id":477,"parentId":466,"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":1767933658694,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":24880,"timestamp":67189082,"id":478,"parentId":467,"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":1767933658694,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6446,"timestamp":67208285,"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/folder-open.js","layer":"ssr"},"startTime":1767933658713,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6944,"timestamp":67221338,"id":483,"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":1767933658726,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9399,"timestamp":67221518,"id":484,"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":1767933658726,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3562,"timestamp":67228426,"id":485,"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/database.js","layer":"ssr"},"startTime":1767933658733,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6029,"timestamp":67228593,"id":486,"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":1767933658733,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6262,"timestamp":67228704,"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":1767933658733,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6576,"timestamp":67228800,"id":488,"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":1767933658733,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6789,"timestamp":67228904,"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":1767933658734,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6919,"timestamp":67229123,"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/settings-2.js","layer":"ssr"},"startTime":1767933658734,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7870,"timestamp":67228999,"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/git-branch.js","layer":"ssr"},"startTime":1767933658734,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5018,"timestamp":67232174,"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/x.js","layer":"ssr"},"startTime":1767933658737,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":891,"timestamp":67237498,"id":493,"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":1767933658742,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13062,"timestamp":67244726,"id":494,"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/sparkles.js","layer":"ssr"},"startTime":1767933658749,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13363,"timestamp":67244889,"id":495,"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/plus.js","layer":"ssr"},"startTime":1767933658750,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13876,"timestamp":67248858,"id":496,"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/globe.js","layer":"ssr"},"startTime":1767933658754,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14234,"timestamp":67248992,"id":497,"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/server.js","layer":"ssr"},"startTime":1767933658754,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14512,"timestamp":67249123,"id":498,"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/trash-2.js","layer":"ssr"},"startTime":1767933658754,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15527,"timestamp":67249310,"id":500,"parentId":450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933658754,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":16309,"timestamp":67249217,"id":499,"parentId":450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933658754,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":16377,"timestamp":67249407,"id":501,"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/smartphone.js","layer":"ssr"},"startTime":1767933658754,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":18379,"timestamp":67249509,"id":502,"parentId":450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658754,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7723,"timestamp":67273605,"id":503,"parentId":450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658778,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4076,"timestamp":67281910,"id":504,"parentId":500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658787,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9474,"timestamp":67282138,"id":506,"parentId":450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658787,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11653,"timestamp":67282067,"id":505,"parentId":450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658787,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5263,"timestamp":67288731,"id":508,"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/chevron-down.js","layer":"ssr"},"startTime":1767933658793,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5621,"timestamp":67288617,"id":507,"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/copy.js","layer":"ssr"},"startTime":1767933658793,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5572,"timestamp":67288858,"id":510,"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/file.js","layer":"ssr"},"startTime":1767933658794,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5821,"timestamp":67288801,"id":509,"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/chevron-right.js","layer":"ssr"},"startTime":1767933658793,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5904,"timestamp":67288908,"id":511,"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/folder.js","layer":"ssr"},"startTime":1767933658794,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6366,"timestamp":67288962,"id":512,"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":1767933658794,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6612,"timestamp":67289044,"id":513,"parentId":450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658794,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3647,"timestamp":67299032,"id":514,"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/parse-path.js","layer":"ssr"},"startTime":1767933658804,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3805,"timestamp":67299145,"id":515,"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/refresh-cw.js","layer":"ssr"},"startTime":1767933658804,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":3914,"timestamp":67303189,"id":516,"parentId":410,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/index.ts","layer":"ssr"},"startTime":1767933658808,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5636,"timestamp":67304553,"id":517,"parentId":472,"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":1767933658809,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5806,"timestamp":67304689,"id":518,"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/message-square-plus.js","layer":"ssr"},"startTime":1767933658809,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5969,"timestamp":67304795,"id":519,"parentId":472,"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":1767933658809,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6210,"timestamp":67304896,"id":520,"parentId":472,"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":1767933658810,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6411,"timestamp":67304997,"id":521,"parentId":472,"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":1767933658810,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6563,"timestamp":67305115,"id":522,"parentId":472,"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":1767933658810,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6778,"timestamp":67305196,"id":523,"parentId":472,"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":1767933658810,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14224,"timestamp":67305285,"id":524,"parentId":472,"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":1767933658810,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":24581,"timestamp":67305365,"id":525,"parentId":472,"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":1767933658810,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":22875,"timestamp":67307544,"id":526,"parentId":472,"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":1767933658812,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":4822,"timestamp":67333049,"id":527,"parentId":459,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageList.tsx","layer":"ssr"},"startTime":1767933658838,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":10877,"timestamp":67333547,"id":529,"parentId":460,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ConsoleViewer.tsx","layer":"ssr"},"startTime":1767933658838,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11141,"timestamp":67333955,"id":531,"parentId":479,"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":1767933658839,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":13494,"timestamp":67333752,"id":530,"parentId":460,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ErrorOverlay.tsx","layer":"ssr"},"startTime":1767933658838,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13466,"timestamp":67334098,"id":532,"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/chevron-left.js","layer":"ssr"},"startTime":1767933658839,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13536,"timestamp":67334321,"id":534,"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/circle-check-big.js","layer":"ssr"},"startTime":1767933658839,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13976,"timestamp":67334210,"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/table.js","layer":"ssr"},"startTime":1767933658839,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14520,"timestamp":67334421,"id":535,"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/clock.js","layer":"ssr"},"startTime":1767933658839,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":19625,"timestamp":67338864,"id":536,"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/circle-x.js","layer":"ssr"},"startTime":1767933658844,"traceId":"28dfff25676795b0"}]
|
|
6
|
-
[{"name":"build-module-tsx","duration":27412,"timestamp":67333322,"id":528,"parentId":459,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageInput.tsx","layer":"ssr"},"startTime":1767933658838,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4975,"timestamp":67373294,"id":540,"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/file-text.js","layer":"ssr"},"startTime":1767933658878,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5499,"timestamp":67373175,"id":539,"parentId":478,"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":1767933658878,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5635,"timestamp":67373401,"id":541,"parentId":478,"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":1767933658878,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6517,"timestamp":67372823,"id":537,"parentId":529,"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":1767933658877,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6595,"timestamp":67373034,"id":538,"parentId":530,"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":1767933658878,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6565,"timestamp":67380182,"id":542,"parentId":528,"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":1767933658885,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":3584,"timestamp":67391080,"id":544,"parentId":460,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/usePreviewStore.ts","layer":"ssr"},"startTime":1767933658896,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":3756,"timestamp":67394840,"id":547,"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":1767933658900,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8259,"timestamp":67391294,"id":545,"parentId":500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933658896,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":12307,"timestamp":67390813,"id":543,"parentId":459,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useChatStore.ts","layer":"ssr"},"startTime":1767933658895,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":18244,"timestamp":67391394,"id":546,"parentId":502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658896,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4296,"timestamp":67425664,"id":548,"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":1767933658930,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5009,"timestamp":67426028,"id":551,"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/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1767933658931,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":18667,"timestamp":67431537,"id":554,"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":1767933658936,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":19243,"timestamp":67431724,"id":555,"parentId":493,"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":1767933658936,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":20389,"timestamp":67431883,"id":556,"parentId":493,"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":1767933658937,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":27779,"timestamp":67426119,"id":552,"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/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1767933658931,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":25563,"timestamp":67429122,"id":553,"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/client/has-base-path.js","layer":"ssr"},"startTime":1767933658934,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":32978,"timestamp":67425913,"id":550,"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/shared/lib/get-img-props.js","layer":"ssr"},"startTime":1767933658931,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":39556,"timestamp":67425818,"id":549,"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/image-component.js","layer":"ssr"},"startTime":1767933658930,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2644,"timestamp":67478154,"id":558,"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/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1767933658983,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3324,"timestamp":67478339,"id":560,"parentId":531,"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":1767933658983,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4516,"timestamp":67478248,"id":559,"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/shared/lib/image-loader.js","layer":"ssr"},"startTime":1767933658983,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5042,"timestamp":67478425,"id":561,"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/icons/download.js","layer":"ssr"},"startTime":1767933658983,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6749,"timestamp":67477965,"id":557,"parentId":549,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658983,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5244,"timestamp":67479858,"id":562,"parentId":531,"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":1767933658985,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3924,"timestamp":67491424,"id":564,"parentId":557,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658996,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5000,"timestamp":67491300,"id":563,"parentId":557,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933658996,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4969,"timestamp":67491694,"id":567,"parentId":542,"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":1767933658996,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":6609,"timestamp":67491486,"id":565,"parentId":527,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageItem.tsx","layer":"ssr"},"startTime":1767933658996,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6641,"timestamp":67491754,"id":568,"parentId":542,"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":1767933658996,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":10938,"timestamp":67491806,"id":569,"parentId":516,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/chat.ts","layer":"ssr"},"startTime":1767933658996,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":11390,"timestamp":67491895,"id":570,"parentId":516,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/project.ts","layer":"ssr"},"startTime":1767933658997,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":11768,"timestamp":67491993,"id":571,"parentId":516,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/preview.ts","layer":"ssr"},"startTime":1767933658997,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":10826,"timestamp":67493957,"id":574,"parentId":528,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/QueuePreview.tsx","layer":"ssr"},"startTime":1767933658999,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":16368,"timestamp":67491588,"id":566,"parentId":527,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/StreamingMessage.tsx","layer":"ssr"},"startTime":1767933658996,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":15173,"timestamp":67493579,"id":572,"parentId":528,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ModeToggle.tsx","layer":"ssr"},"startTime":1767933658998,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":15842,"timestamp":67493762,"id":573,"parentId":528,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/FilePreview.tsx","layer":"ssr"},"startTime":1767933658998,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4061,"timestamp":67527996,"id":575,"parentId":565,"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":1767933659033,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9238,"timestamp":67532789,"id":581,"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/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1767933659037,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9720,"timestamp":67532920,"id":583,"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/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"ssr"},"startTime":1767933659038,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10891,"timestamp":67532867,"id":582,"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/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1767933659038,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11593,"timestamp":67533065,"id":585,"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/client/components/errors/root-error-boundary.js","layer":"ssr"},"startTime":1767933659038,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12554,"timestamp":67532709,"id":580,"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/client/remove-base-path.js","layer":"ssr"},"startTime":1767933659037,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14489,"timestamp":67532972,"id":584,"parentId":551,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933659038,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":32649,"timestamp":67532384,"id":576,"parentId":574,"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":1767933659037,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":33088,"timestamp":67532509,"id":577,"parentId":566,"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":1767933659037,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":33259,"timestamp":67532582,"id":578,"parentId":572,"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":1767933659037,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":34051,"timestamp":67532649,"id":579,"parentId":573,"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":1767933659037,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":17036,"timestamp":67551347,"id":586,"parentId":551,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933659056,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":18556,"timestamp":67551593,"id":588,"parentId":551,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933659056,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":20077,"timestamp":67551514,"id":587,"parentId":551,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933659056,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3977,"timestamp":67585399,"id":590,"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/image-blur-svg.js","layer":"ssr"},"startTime":1767933659090,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4701,"timestamp":67585245,"id":589,"parentId":549,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933659090,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5868,"timestamp":67585459,"id":591,"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/client/components/promise-queue.js","layer":"ssr"},"startTime":1767933659090,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7016,"timestamp":67585520,"id":592,"parentId":551,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933659090,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12461,"timestamp":67587052,"id":594,"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/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1767933659092,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":16645,"timestamp":67585572,"id":593,"parentId":551,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933659090,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":74703,"timestamp":67610880,"id":601,"parentId":462,"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":1767933659116,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":75953,"timestamp":67610596,"id":596,"parentId":575,"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":1767933659115,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":76373,"timestamp":67610460,"id":595,"parentId":560,"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":1767933659115,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":76738,"timestamp":67610669,"id":597,"parentId":575,"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":1767933659115,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":77016,"timestamp":67610725,"id":598,"parentId":575,"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":1767933659115,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":77280,"timestamp":67610775,"id":599,"parentId":575,"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":1767933659115,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":77572,"timestamp":67610830,"id":600,"parentId":575,"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":1767933659115,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11134,"timestamp":67688806,"id":602,"parentId":575,"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":1767933659193,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4077,"timestamp":67704465,"id":603,"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/errors/graceful-degrade-boundary.js","layer":"ssr"},"startTime":1767933659209,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5281,"timestamp":67705602,"id":606,"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":1767933659210,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6529,"timestamp":67705543,"id":605,"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/apply-router-state-patch-to-tree.js","layer":"ssr"},"startTime":1767933659210,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7146,"timestamp":67705654,"id":607,"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/is-navigating-to-new-root-layout.js","layer":"ssr"},"startTime":1767933659210,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9124,"timestamp":67705711,"id":608,"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/handle-mutable.js","layer":"ssr"},"startTime":1767933659210,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9875,"timestamp":67705763,"id":609,"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/apply-flight-data.js","layer":"ssr"},"startTime":1767933659210,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10819,"timestamp":67705863,"id":611,"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":1767933659211,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12866,"timestamp":67705440,"id":604,"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":1767933659210,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":19049,"timestamp":67708846,"id":612,"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":1767933659214,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":33774,"timestamp":67705809,"id":610,"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":1767933659210,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5721,"timestamp":67741095,"id":613,"parentId":576,"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":1767933659246,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2255,"timestamp":67747165,"id":615,"parentId":557,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933659252,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2302,"timestamp":67747282,"id":616,"parentId":557,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933659252,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6195,"timestamp":67747461,"id":617,"parentId":578,"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":1767933659252,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6406,"timestamp":67747569,"id":618,"parentId":578,"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":1767933659252,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":8786,"timestamp":67746943,"id":614,"parentId":565,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MarkdownRenderer.tsx","layer":"ssr"},"startTime":1767933659252,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8533,"timestamp":67747859,"id":621,"parentId":588,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933659253,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10521,"timestamp":67747667,"id":619,"parentId":609,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933659252,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":17106,"timestamp":67747769,"id":620,"parentId":605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933659252,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":15793,"timestamp":67750125,"id":622,"parentId":566,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/AskUserQuestionBlock.tsx","layer":"ssr"},"startTime":1767933659255,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1211,"timestamp":67770892,"id":623,"parentId":549,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933659276,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1164,"timestamp":67771103,"id":624,"parentId":549,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933659276,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3598,"timestamp":67771221,"id":625,"parentId":593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933659276,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4208,"timestamp":67771289,"id":626,"parentId":593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933659276,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7945,"timestamp":67784605,"id":627,"parentId":622,"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":1767933659289,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9866,"timestamp":67793188,"id":628,"parentId":609,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933659298,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1673,"timestamp":67820945,"id":629,"parentId":591,"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":1767933659326,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1794,"timestamp":67821238,"id":630,"parentId":591,"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":1767933659326,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3101,"timestamp":67821437,"id":631,"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":1767933659326,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":4455,"timestamp":67830115,"id":632,"parentId":622,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/radio-group.tsx","layer":"ssr"},"startTime":1767933659335,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":4734,"timestamp":67830377,"id":633,"parentId":622,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/checkbox.tsx","layer":"ssr"},"startTime":1767933659335,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":7156,"timestamp":67835498,"id":634,"parentId":622,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/label.tsx","layer":"ssr"},"startTime":1767933659340,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2983,"timestamp":67845732,"id":637,"parentId":614,"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":1767933659350,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7368,"timestamp":67845598,"id":636,"parentId":633,"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":1767933659350,"traceId":"28dfff25676795b0"}]
|
|
7
|
-
[{"name":"build-module-js","duration":7945,"timestamp":67845408,"id":635,"parentId":632,"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":1767933659350,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":617,"timestamp":67854124,"id":638,"parentId":614,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/index.js","layer":"ssr"},"startTime":1767933659359,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1685,"timestamp":67857271,"id":639,"parentId":635,"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":1767933659362,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3427,"timestamp":67859959,"id":640,"parentId":637,"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":1767933659365,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":942,"timestamp":67865693,"id":641,"parentId":638,"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":1767933659370,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":7872,"timestamp":67882156,"id":642,"parentId":632,"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":1767933659387,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":2407,"timestamp":67890822,"id":643,"parentId":634,"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":1767933659395,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":4869,"timestamp":67890985,"id":644,"parentId":633,"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":1767933659396,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":569,"timestamp":67925790,"id":645,"parentId":640,"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":1767933659430,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":485,"timestamp":67932205,"id":646,"parentId":640,"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":1767933659437,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":528,"timestamp":67935716,"id":647,"parentId":640,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.js","layer":"ssr"},"startTime":1767933659440,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":564,"timestamp":67943555,"id":648,"parentId":640,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/index.js","layer":"ssr"},"startTime":1767933659448,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":606,"timestamp":67947959,"id":649,"parentId":640,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.js","layer":"ssr"},"startTime":1767933659453,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":581,"timestamp":67948136,"id":650,"parentId":640,"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":1767933659453,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":653,"timestamp":67955651,"id":651,"parentId":640,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.js","layer":"ssr"},"startTime":1767933659460,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":677,"timestamp":67959178,"id":652,"parentId":641,"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":1767933659464,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":527,"timestamp":67961818,"id":653,"parentId":641,"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":1767933659466,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":521,"timestamp":67966132,"id":654,"parentId":640,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/devlop@1.1.0/node_modules/devlop/lib/default.js","layer":"ssr"},"startTime":1767933659471,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":939,"timestamp":68007684,"id":655,"parentId":645,"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":1767933659512,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4943,"timestamp":68011944,"id":656,"parentId":646,"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":1767933659517,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1815,"timestamp":68022540,"id":657,"parentId":647,"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":1767933659527,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3260,"timestamp":68022772,"id":658,"parentId":648,"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":1767933659527,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6998,"timestamp":68023040,"id":659,"parentId":649,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.js","layer":"ssr"},"startTime":1767933659528,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1762,"timestamp":68033355,"id":660,"parentId":650,"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":1767933659538,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3254,"timestamp":68036101,"id":661,"parentId":651,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.js","layer":"ssr"},"startTime":1767933659541,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":841,"timestamp":68044051,"id":662,"parentId":653,"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":1767933659549,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1329,"timestamp":68053596,"id":663,"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":1767933659558,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1529,"timestamp":68064906,"id":664,"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":1767933659570,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":2032,"timestamp":68065102,"id":665,"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":1767933659570,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":689,"timestamp":68089416,"id":666,"parentId":648,"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":1767933659594,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":666,"timestamp":68096949,"id":667,"parentId":652,"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":1767933659602,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":725,"timestamp":68106327,"id":668,"parentId":652,"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":1767933659611,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":823,"timestamp":68114424,"id":669,"parentId":652,"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":1767933659619,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1625,"timestamp":68124724,"id":670,"parentId":652,"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":1767933659629,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":11196,"timestamp":68131219,"id":671,"parentId":642,"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":1767933659636,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1968,"timestamp":68142876,"id":672,"parentId":644,"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":1767933659648,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":3585,"timestamp":68143178,"id":673,"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":1767933659648,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1560,"timestamp":68150950,"id":674,"parentId":652,"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":1767933659656,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1774,"timestamp":68151205,"id":675,"parentId":659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.js","layer":"ssr"},"startTime":1767933659656,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1785,"timestamp":68151421,"id":676,"parentId":661,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minpath.js","layer":"ssr"},"startTime":1767933659656,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1825,"timestamp":68154955,"id":677,"parentId":642,"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":1767933659660,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1797,"timestamp":68155197,"id":678,"parentId":661,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minproc.js","layer":"ssr"},"startTime":1767933659660,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1852,"timestamp":68155382,"id":679,"parentId":661,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.js","layer":"ssr"},"startTime":1767933659660,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1654,"timestamp":68165202,"id":680,"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":1767933659670,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1009,"timestamp":68168913,"id":681,"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":1767933659674,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":698,"timestamp":68172293,"id":682,"parentId":652,"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":1767933659677,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1951,"timestamp":68174227,"id":683,"parentId":643,"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":1767933659679,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1808,"timestamp":68174622,"id":685,"parentId":652,"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":1767933659679,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":8108,"timestamp":68174427,"id":684,"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":1767933659679,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":62,"timestamp":68221568,"id":686,"parentId":676,"tags":{"name":"node:path","layer":null},"startTime":1767933659726,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":13,"timestamp":68221659,"id":687,"parentId":679,"tags":{"name":"node:url","layer":null},"startTime":1767933659726,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":7,"timestamp":68221680,"id":688,"parentId":678,"tags":{"name":"node:process","layer":null},"startTime":1767933659726,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1160,"timestamp":68230609,"id":689,"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":1767933659735,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3684,"timestamp":68232686,"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":1767933659737,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":707,"timestamp":68252903,"id":691,"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":1767933659758,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":736,"timestamp":68258189,"id":692,"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":1767933659763,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":814,"timestamp":68265601,"id":693,"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":1767933659770,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":814,"timestamp":68275801,"id":694,"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":1767933659780,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":767,"timestamp":68282647,"id":695,"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":1767933659787,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1302,"timestamp":68297809,"id":696,"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":1767933659802,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":573,"timestamp":68306546,"id":697,"parentId":659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/bail@2.0.2/node_modules/bail/index.js","layer":"ssr"},"startTime":1767933659811,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":437,"timestamp":68308280,"id":698,"parentId":657,"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":1767933659813,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":723,"timestamp":68317954,"id":699,"parentId":659,"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":1767933659823,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":437,"timestamp":68321412,"id":700,"parentId":659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.js","layer":"ssr"},"startTime":1767933659826,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1127,"timestamp":68324355,"id":701,"parentId":659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/extend@3.0.2/node_modules/extend/index.js","layer":"ssr"},"startTime":1767933659829,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2087,"timestamp":68337765,"id":702,"parentId":666,"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":1767933659842,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3356,"timestamp":68338108,"id":703,"parentId":666,"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":1767933659843,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3574,"timestamp":68338341,"id":704,"parentId":666,"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":1767933659843,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3175,"timestamp":68343287,"id":705,"parentId":660,"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":1767933659848,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3173,"timestamp":68343508,"id":706,"parentId":662,"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":1767933659848,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4289,"timestamp":68358660,"id":707,"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":1767933659863,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1769,"timestamp":68364320,"id":708,"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":1767933659869,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4195,"timestamp":68364557,"id":709,"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":1767933659869,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5698,"timestamp":68364727,"id":710,"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":1767933659869,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":641,"timestamp":68372102,"id":711,"parentId":662,"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":1767933659877,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1691,"timestamp":68377357,"id":712,"parentId":662,"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":1767933659882,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1814,"timestamp":68377581,"id":713,"parentId":679,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.shared.js","layer":"ssr"},"startTime":1767933659882,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1866,"timestamp":68377781,"id":714,"parentId":669,"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":1767933659882,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2931,"timestamp":68378036,"id":715,"parentId":669,"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":1767933659883,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4805,"timestamp":68388366,"id":716,"parentId":674,"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":1767933659893,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5545,"timestamp":68388627,"id":717,"parentId":674,"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":1767933659893,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":944,"timestamp":68395926,"id":718,"parentId":682,"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":1767933659901,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":934,"timestamp":68398780,"id":719,"parentId":662,"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":1767933659903,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":979,"timestamp":68399044,"id":720,"parentId":685,"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":1767933659904,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":816,"timestamp":68402542,"id":721,"parentId":685,"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":1767933659907,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":364,"timestamp":68407090,"id":722,"parentId":662,"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":1767933659912,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":986,"timestamp":68452160,"id":723,"parentId":670,"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":1767933659957,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":670,"timestamp":68467570,"id":724,"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":1767933659972,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1828,"timestamp":68478318,"id":725,"parentId":692,"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":1767933659983,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2969,"timestamp":68478581,"id":726,"parentId":692,"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":1767933659983,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5753,"timestamp":68478781,"id":727,"parentId":691,"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":1767933659983,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3056,"timestamp":68487815,"id":728,"parentId":692,"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":1767933659992,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3178,"timestamp":68488075,"id":729,"parentId":692,"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":1767933659993,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3331,"timestamp":68488268,"id":730,"parentId":692,"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":1767933659993,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1920,"timestamp":68495170,"id":731,"parentId":692,"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":1767933660000,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2566,"timestamp":68495400,"id":732,"parentId":692,"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":1767933660000,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3202,"timestamp":68495604,"id":733,"parentId":692,"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":1767933660000,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3271,"timestamp":68495772,"id":734,"parentId":692,"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":1767933660000,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3460,"timestamp":68495927,"id":735,"parentId":692,"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":1767933660001,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1022,"timestamp":68506921,"id":736,"parentId":694,"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":1767933660012,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4497,"timestamp":68511389,"id":737,"parentId":696,"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":1767933660016,"traceId":"28dfff25676795b0"}]
|
|
8
|
-
[{"name":"build-module-js","duration":5549,"timestamp":68511615,"id":738,"parentId":695,"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":1767933660016,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14044,"timestamp":68511804,"id":739,"parentId":698,"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":1767933660016,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5551,"timestamp":68527603,"id":740,"parentId":702,"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":1767933660032,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5582,"timestamp":68527862,"id":741,"parentId":704,"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":1767933660033,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6410,"timestamp":68528063,"id":742,"parentId":700,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.js","layer":"ssr"},"startTime":1767933660033,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1360,"timestamp":68537453,"id":743,"parentId":704,"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":1767933660042,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1247,"timestamp":68537929,"id":744,"parentId":704,"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":1767933660043,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":671,"timestamp":68541127,"id":745,"parentId":704,"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":1767933660046,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":811,"timestamp":68543646,"id":746,"parentId":704,"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":1767933660048,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":844,"timestamp":68543787,"id":747,"parentId":704,"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":1767933660048,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1350,"timestamp":68543895,"id":748,"parentId":704,"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":1767933660049,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1106,"timestamp":68546282,"id":749,"parentId":704,"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":1767933660051,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1312,"timestamp":68546425,"id":750,"parentId":704,"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":1767933660051,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1456,"timestamp":68546543,"id":751,"parentId":704,"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":1767933660051,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1611,"timestamp":68546645,"id":752,"parentId":704,"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":1767933660051,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":803,"timestamp":68549431,"id":753,"parentId":704,"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":1767933660054,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":885,"timestamp":68549581,"id":754,"parentId":704,"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":1767933660054,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":796,"timestamp":68551729,"id":755,"parentId":704,"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":1767933660056,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1268,"timestamp":68556515,"id":756,"parentId":704,"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":1767933660061,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1256,"timestamp":68556718,"id":757,"parentId":704,"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":1767933660061,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1296,"timestamp":68556904,"id":758,"parentId":704,"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":1767933660062,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1842,"timestamp":68561428,"id":759,"parentId":704,"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":1767933660066,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2111,"timestamp":68561654,"id":760,"parentId":704,"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":1767933660066,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2152,"timestamp":68561829,"id":761,"parentId":704,"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":1767933660066,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2228,"timestamp":68561993,"id":762,"parentId":704,"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":1767933660067,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1045,"timestamp":68565058,"id":763,"parentId":704,"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":1767933660070,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1082,"timestamp":68565255,"id":764,"parentId":704,"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":1767933660070,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1743,"timestamp":68569999,"id":765,"parentId":705,"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":1767933660075,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1433,"timestamp":68572871,"id":766,"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":1767933660078,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1514,"timestamp":68573118,"id":767,"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":1767933660078,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3750,"timestamp":68573247,"id":768,"parentId":706,"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":1767933660078,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1870,"timestamp":68583384,"id":769,"parentId":711,"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":1767933660088,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1114,"timestamp":68586336,"id":770,"parentId":712,"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":1767933660091,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2448,"timestamp":68592860,"id":771,"parentId":719,"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":1767933660098,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1731,"timestamp":68613578,"id":772,"parentId":722,"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":1767933660118,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1180,"timestamp":68643652,"id":773,"parentId":696,"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":1767933660148,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1573,"timestamp":68661244,"id":774,"parentId":703,"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":1767933660166,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2012,"timestamp":68698119,"id":775,"parentId":707,"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":1767933660203,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1801,"timestamp":68731026,"id":776,"parentId":709,"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":1767933660236,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1226,"timestamp":68744429,"id":777,"parentId":709,"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":1767933660249,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":893,"timestamp":68752696,"id":778,"parentId":709,"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":1767933660257,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1664,"timestamp":68787934,"id":780,"parentId":671,"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":1767933660293,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1810,"timestamp":68788229,"id":781,"parentId":725,"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":1767933660293,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2010,"timestamp":68788427,"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/types.js","layer":"ssr"},"startTime":1767933660293,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":17189,"timestamp":68782440,"id":779,"parentId":671,"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":1767933660287,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":2109,"timestamp":68800234,"id":783,"parentId":671,"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":1767933660305,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2085,"timestamp":68800489,"id":784,"parentId":726,"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":1767933660305,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2112,"timestamp":68800622,"id":785,"parentId":728,"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":1767933660305,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2248,"timestamp":68800728,"id":786,"parentId":732,"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":1767933660305,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2518,"timestamp":68800832,"id":787,"parentId":732,"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":1767933660305,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":3619,"timestamp":68806627,"id":788,"parentId":672,"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":1767933660311,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3765,"timestamp":68806846,"id":789,"parentId":715,"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":1767933660312,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4096,"timestamp":68807044,"id":790,"parentId":750,"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":1767933660312,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4252,"timestamp":68807221,"id":791,"parentId":735,"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":1767933660312,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1542,"timestamp":68815595,"id":792,"parentId":673,"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":1767933660320,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1670,"timestamp":68815847,"id":793,"parentId":673,"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":1767933660321,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1010,"timestamp":68825869,"id":794,"parentId":715,"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":1767933660331,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":2652,"timestamp":68827795,"id":795,"parentId":683,"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":1767933660332,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2663,"timestamp":68828035,"id":796,"parentId":765,"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":1767933660333,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":704,"timestamp":68854685,"id":797,"parentId":738,"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":1767933660359,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":669,"timestamp":68863357,"id":798,"parentId":739,"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":1767933660368,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1156,"timestamp":68870816,"id":799,"parentId":739,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/index.js","layer":"ssr"},"startTime":1767933660375,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1217,"timestamp":68877370,"id":800,"parentId":739,"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":1767933660382,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":761,"timestamp":68882228,"id":801,"parentId":739,"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":1767933660387,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":895,"timestamp":68891047,"id":802,"parentId":739,"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":1767933660396,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":789,"timestamp":68894926,"id":803,"parentId":763,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trim-lines@3.0.1/node_modules/trim-lines/index.js","layer":"ssr"},"startTime":1767933660400,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":657,"timestamp":68902167,"id":804,"parentId":765,"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":1767933660407,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":937,"timestamp":68906274,"id":805,"parentId":768,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/ccount@2.0.1/node_modules/ccount/index.js","layer":"ssr"},"startTime":1767933660411,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":467,"timestamp":68912100,"id":806,"parentId":768,"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":1767933660417,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3162,"timestamp":68921122,"id":807,"parentId":777,"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":1767933660426,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3898,"timestamp":68921322,"id":808,"parentId":777,"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":1767933660426,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4016,"timestamp":68921508,"id":809,"parentId":777,"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":1767933660426,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4358,"timestamp":68921621,"id":810,"parentId":777,"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":1767933660426,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4239,"timestamp":68930316,"id":811,"parentId":771,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/markdown-table@3.0.4/node_modules/markdown-table/index.js","layer":"ssr"},"startTime":1767933660435,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4469,"timestamp":68930558,"id":812,"parentId":777,"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":1767933660435,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6197,"timestamp":68930741,"id":813,"parentId":777,"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":1767933660435,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10372,"timestamp":68930900,"id":814,"parentId":777,"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":1767933660436,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11210,"timestamp":68931083,"id":815,"parentId":777,"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":1767933660436,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12325,"timestamp":68931257,"id":816,"parentId":777,"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":1767933660436,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13038,"timestamp":68931420,"id":817,"parentId":777,"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":1767933660436,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1447,"timestamp":68949353,"id":818,"parentId":771,"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":1767933660454,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1940,"timestamp":68949607,"id":819,"parentId":777,"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":1767933660454,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2407,"timestamp":68949787,"id":820,"parentId":777,"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":1767933660454,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5758,"timestamp":68949947,"id":821,"parentId":777,"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":1767933660455,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6188,"timestamp":68950087,"id":822,"parentId":777,"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":1767933660455,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2569,"timestamp":68966390,"id":823,"parentId":777,"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":1767933660471,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3685,"timestamp":68966561,"id":824,"parentId":777,"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":1767933660471,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3885,"timestamp":68966668,"id":825,"parentId":777,"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":1767933660471,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4048,"timestamp":68966765,"id":826,"parentId":777,"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":1767933660471,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4203,"timestamp":68966858,"id":827,"parentId":777,"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":1767933660472,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5049,"timestamp":68966948,"id":828,"parentId":777,"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":1767933660472,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1464,"timestamp":68973070,"id":829,"parentId":777,"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":1767933660478,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1630,"timestamp":68973242,"id":830,"parentId":777,"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":1767933660478,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2041,"timestamp":68983217,"id":831,"parentId":773,"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":1767933660488,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":940,"timestamp":68996867,"id":832,"parentId":774,"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":1767933660502,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1147,"timestamp":69006433,"id":833,"parentId":703,"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":1767933660511,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4874,"timestamp":69035626,"id":834,"parentId":798,"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":1767933660540,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5056,"timestamp":69035900,"id":835,"parentId":797,"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":1767933660541,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3952,"timestamp":69044315,"id":836,"parentId":799,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/compile.js","layer":"ssr"},"startTime":1767933660549,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1571,"timestamp":69049353,"id":837,"parentId":799,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/parse.js","layer":"ssr"},"startTime":1767933660554,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1639,"timestamp":69049580,"id":838,"parentId":799,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/postprocess.js","layer":"ssr"},"startTime":1767933660554,"traceId":"28dfff25676795b0"}]
|
|
9
|
-
[{"name":"build-module-js","duration":1583,"timestamp":69053194,"id":839,"parentId":799,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/preprocess.js","layer":"ssr"},"startTime":1767933660558,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":998,"timestamp":69060127,"id":840,"parentId":804,"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":1767933660565,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":945,"timestamp":69061457,"id":841,"parentId":806,"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":1767933660566,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1630,"timestamp":69066574,"id":842,"parentId":818,"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":1767933660571,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1928,"timestamp":69066777,"id":843,"parentId":818,"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":1767933660571,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3004,"timestamp":69117853,"id":844,"parentId":801,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/character-entities@2.0.2/node_modules/character-entities/index.js","layer":"ssr"},"startTime":1767933660623,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1221,"timestamp":69132255,"id":845,"parentId":833,"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":1767933660637,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1465,"timestamp":69134183,"id":846,"parentId":833,"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":1767933660639,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1780,"timestamp":69143352,"id":847,"parentId":817,"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":1767933660648,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2587,"timestamp":69143537,"id":848,"parentId":837,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/constructs.js","layer":"ssr"},"startTime":1767933660648,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2108,"timestamp":69149593,"id":849,"parentId":819,"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":1767933660654,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4574,"timestamp":69149740,"id":850,"parentId":837,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/create-tokenizer.js","layer":"ssr"},"startTime":1767933660654,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5031,"timestamp":69149861,"id":851,"parentId":837,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/content.js","layer":"ssr"},"startTime":1767933660655,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3398,"timestamp":69156736,"id":852,"parentId":837,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/document.js","layer":"ssr"},"startTime":1767933660661,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3686,"timestamp":69156977,"id":853,"parentId":837,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/flow.js","layer":"ssr"},"startTime":1767933660662,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4416,"timestamp":69157206,"id":854,"parentId":837,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/text.js","layer":"ssr"},"startTime":1767933660662,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2062,"timestamp":69164172,"id":855,"parentId":819,"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":1767933660669,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1192,"timestamp":69168031,"id":856,"parentId":842,"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":1767933660673,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1392,"timestamp":69168184,"id":857,"parentId":842,"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":1767933660673,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1653,"timestamp":69168307,"id":858,"parentId":842,"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":1767933660673,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1817,"timestamp":69168403,"id":859,"parentId":843,"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":1767933660673,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1297,"timestamp":69176203,"id":860,"parentId":843,"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":1767933660681,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2371,"timestamp":69178569,"id":861,"parentId":819,"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":1767933660683,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2895,"timestamp":69178791,"id":862,"parentId":843,"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":1767933660683,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3442,"timestamp":69178980,"id":863,"parentId":843,"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":1767933660684,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3879,"timestamp":69179177,"id":864,"parentId":843,"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":1767933660684,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4421,"timestamp":69179332,"id":865,"parentId":843,"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":1767933660684,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4496,"timestamp":69179496,"id":866,"parentId":843,"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":1767933660684,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1308,"timestamp":69185086,"id":867,"parentId":821,"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":1767933660690,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2019,"timestamp":69188672,"id":868,"parentId":843,"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":1767933660693,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2367,"timestamp":69188876,"id":869,"parentId":843,"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":1767933660694,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2840,"timestamp":69189068,"id":870,"parentId":843,"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":1767933660694,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3602,"timestamp":69189240,"id":871,"parentId":843,"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":1767933660694,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2036,"timestamp":69197208,"id":872,"parentId":842,"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":1767933660702,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2205,"timestamp":69197456,"id":873,"parentId":842,"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":1767933660702,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3007,"timestamp":69197647,"id":874,"parentId":842,"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":1767933660702,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3414,"timestamp":69197843,"id":875,"parentId":842,"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":1767933660703,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3628,"timestamp":69198046,"id":876,"parentId":842,"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":1767933660703,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1391,"timestamp":69209115,"id":877,"parentId":819,"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":1767933660714,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2462,"timestamp":69220064,"id":878,"parentId":842,"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":1767933660725,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2734,"timestamp":69220333,"id":879,"parentId":842,"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":1767933660725,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1116,"timestamp":69236116,"id":880,"parentId":843,"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":1767933660741,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1378,"timestamp":69238979,"id":881,"parentId":843,"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":1767933660744,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1659,"timestamp":69242832,"id":882,"parentId":843,"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":1767933660748,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1702,"timestamp":69243076,"id":883,"parentId":843,"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":1767933660748,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1550,"timestamp":69247677,"id":884,"parentId":843,"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":1767933660752,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1687,"timestamp":69247880,"id":885,"parentId":843,"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":1767933660753,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2121,"timestamp":69248079,"id":886,"parentId":843,"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":1767933660753,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2230,"timestamp":69248257,"id":887,"parentId":843,"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":1767933660753,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1677,"timestamp":69262940,"id":888,"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":1767933660768,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1846,"timestamp":69263174,"id":889,"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/format-code-as-indented.js","layer":"ssr"},"startTime":1767933660768,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2140,"timestamp":69263344,"id":890,"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/format-heading-as-setext.js","layer":"ssr"},"startTime":1767933660768,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2338,"timestamp":69263493,"id":891,"parentId":860,"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":1767933660768,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1297,"timestamp":69268163,"id":892,"parentId":862,"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":1767933660773,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1993,"timestamp":69268301,"id":893,"parentId":847,"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":1767933660773,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":630,"timestamp":69271799,"id":894,"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/check-fence.js","layer":"ssr"},"startTime":1767933660776,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":664,"timestamp":69271942,"id":895,"parentId":864,"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":1767933660777,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3913,"timestamp":69279958,"id":896,"parentId":864,"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":1767933660785,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1753,"timestamp":69282746,"id":897,"parentId":864,"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":1767933660787,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2285,"timestamp":69282945,"id":898,"parentId":871,"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":1767933660788,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":916,"timestamp":69309676,"id":899,"parentId":841,"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":1767933660814,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1014,"timestamp":69317151,"id":900,"parentId":842,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zwitch@2.0.4/node_modules/zwitch/index.js","layer":"ssr"},"startTime":1767933660822,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1969,"timestamp":69324649,"id":901,"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-bullet.js","layer":"ssr"},"startTime":1767933660829,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2295,"timestamp":69324823,"id":902,"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-bullet-other.js","layer":"ssr"},"startTime":1767933660829,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2445,"timestamp":69324942,"id":903,"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.js","layer":"ssr"},"startTime":1767933660830,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2506,"timestamp":69325127,"id":904,"parentId":882,"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":1767933660830,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2524,"timestamp":69325322,"id":905,"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-bullet-ordered.js","layer":"ssr"},"startTime":1767933660830,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1046,"timestamp":69328196,"id":906,"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":1767933660833,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1071,"timestamp":69328395,"id":907,"parentId":886,"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":1767933660833,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1035,"timestamp":69346950,"id":908,"parentId":863,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/longest-streak@3.1.0/node_modules/longest-streak/index.js","layer":"ssr"},"startTime":1767933660852,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":616,"timestamp":69357820,"id":909,"parentId":887,"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":1767933660862,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":865,"timestamp":69360651,"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":1767933660865,"traceId":"28dfff25676795b0"},{"name":"make","duration":5950269,"timestamp":63422984,"id":22,"parentId":20,"tags":{},"startTime":1767933654928,"traceId":"28dfff25676795b0"},{"name":"get-entries","duration":811,"timestamp":69375339,"id":912,"parentId":911,"tags":{},"startTime":1767933660880,"traceId":"28dfff25676795b0"},{"name":"node-file-trace-plugin","duration":109104,"timestamp":69381312,"id":913,"parentId":911,"tags":{"traceEntryCount":"10"},"startTime":1767933660886,"traceId":"28dfff25676795b0"},{"name":"collect-traced-files","duration":684,"timestamp":69490432,"id":914,"parentId":911,"tags":{},"startTime":1767933660995,"traceId":"28dfff25676795b0"},{"name":"finish-modules","duration":116150,"timestamp":69374977,"id":911,"parentId":21,"tags":{},"startTime":1767933660880,"traceId":"28dfff25676795b0"},{"name":"chunk-graph","duration":24115,"timestamp":69563191,"id":916,"parentId":915,"tags":{},"startTime":1767933661068,"traceId":"28dfff25676795b0"},{"name":"optimize-modules","duration":39,"timestamp":69587491,"id":918,"parentId":915,"tags":{},"startTime":1767933661092,"traceId":"28dfff25676795b0"},{"name":"optimize-chunks","duration":18317,"timestamp":69587650,"id":919,"parentId":915,"tags":{},"startTime":1767933661092,"traceId":"28dfff25676795b0"},{"name":"optimize-tree","duration":173,"timestamp":69606112,"id":920,"parentId":915,"tags":{},"startTime":1767933661111,"traceId":"28dfff25676795b0"},{"name":"optimize-chunk-modules","duration":69422,"timestamp":69606405,"id":921,"parentId":915,"tags":{},"startTime":1767933661111,"traceId":"28dfff25676795b0"},{"name":"optimize","duration":88521,"timestamp":69587414,"id":917,"parentId":915,"tags":{},"startTime":1767933661092,"traceId":"28dfff25676795b0"},{"name":"module-hash","duration":35438,"timestamp":69709091,"id":922,"parentId":915,"tags":{},"startTime":1767933661214,"traceId":"28dfff25676795b0"},{"name":"code-generation","duration":493472,"timestamp":69744597,"id":923,"parentId":915,"tags":{},"startTime":1767933661249,"traceId":"28dfff25676795b0"},{"name":"hash","duration":11495,"timestamp":70246188,"id":924,"parentId":915,"tags":{},"startTime":1767933661751,"traceId":"28dfff25676795b0"},{"name":"code-generation-jobs","duration":803,"timestamp":70257678,"id":925,"parentId":915,"tags":{},"startTime":1767933661762,"traceId":"28dfff25676795b0"},{"name":"module-assets","duration":547,"timestamp":70258418,"id":926,"parentId":915,"tags":{},"startTime":1767933661763,"traceId":"28dfff25676795b0"},{"name":"create-chunk-assets","duration":12359,"timestamp":70258985,"id":927,"parentId":915,"tags":{},"startTime":1767933661764,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":131699,"timestamp":70334663,"id":930,"parentId":928,"tags":{"name":"../pages/_app.js","cache":"MISS"},"startTime":1767933661839,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":122332,"timestamp":70344154,"id":932,"parentId":928,"tags":{"name":"../app/page.js","cache":"MISS"},"startTime":1767933661849,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":140312,"timestamp":70326219,"id":929,"parentId":928,"tags":{"name":"../app/_not-found/page.js","cache":"MISS"},"startTime":1767933661831,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":74365,"timestamp":70392201,"id":935,"parentId":928,"tags":{"name":"../pages/_document.js","cache":"MISS"},"startTime":1767933661897,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":75441,"timestamp":70391164,"id":934,"parentId":928,"tags":{"name":"../app/settings/page.js","cache":"MISS"},"startTime":1767933661896,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":74387,"timestamp":70392274,"id":936,"parentId":928,"tags":{"name":"../webpack-runtime.js","cache":"MISS"},"startTime":1767933661897,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":174748,"timestamp":70335288,"id":931,"parentId":928,"tags":{"name":"../pages/_error.js","cache":"MISS"},"startTime":1767933661840,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":142455,"timestamp":70411814,"id":939,"parentId":928,"tags":{"name":"799.js","cache":"MISS"},"startTime":1767933661916,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":146369,"timestamp":70413657,"id":940,"parentId":928,"tags":{"name":"392.js","cache":"MISS"},"startTime":1767933661918,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":207068,"timestamp":70406061,"id":938,"parentId":928,"tags":{"name":"811.js","cache":"MISS"},"startTime":1767933661911,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":400137,"timestamp":70392660,"id":937,"parentId":928,"tags":{"name":"673.js","cache":"MISS"},"startTime":1767933661897,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":485033,"timestamp":70349295,"id":933,"parentId":928,"tags":{"name":"../app/project/[id]/page.js","cache":"MISS"},"startTime":1767933661854,"traceId":"28dfff25676795b0"}]
|
|
10
|
-
[{"name":"minify-webpack-plugin-optimize","duration":534036,"timestamp":70300314,"id":928,"parentId":20,"tags":{"compilationName":"server","mangle":"[object Object]"},"startTime":1767933661805,"traceId":"28dfff25676795b0"},{"name":"css-minimizer-plugin","duration":157,"timestamp":70834520,"id":941,"parentId":20,"tags":{},"startTime":1767933662339,"traceId":"28dfff25676795b0"},{"name":"create-trace-assets","duration":1482,"timestamp":70834871,"id":942,"parentId":21,"tags":{},"startTime":1767933662340,"traceId":"28dfff25676795b0"},{"name":"seal","duration":1317905,"timestamp":69526745,"id":915,"parentId":20,"tags":{},"startTime":1767933661031,"traceId":"28dfff25676795b0"},{"name":"webpack-compilation","duration":7462579,"timestamp":63392988,"id":20,"parentId":17,"tags":{"name":"server"},"startTime":1767933654898,"traceId":"28dfff25676795b0"},{"name":"emit","duration":7033,"timestamp":70856041,"id":943,"parentId":17,"tags":{},"startTime":1767933662361,"traceId":"28dfff25676795b0"},{"name":"webpack-close","duration":540677,"timestamp":70864655,"id":944,"parentId":17,"tags":{"name":"server"},"startTime":1767933662369,"traceId":"28dfff25676795b0"},{"name":"webpack-generate-error-stats","duration":2587,"timestamp":71405401,"id":945,"parentId":944,"tags":{},"startTime":1767933662910,"traceId":"28dfff25676795b0"},{"name":"run-webpack-compiler","duration":8359312,"timestamp":63048990,"id":17,"parentId":16,"tags":{},"startTime":1767933654554,"traceId":"28dfff25676795b0"},{"name":"format-webpack-messages","duration":84,"timestamp":71408310,"id":946,"parentId":16,"tags":{},"startTime":1767933662913,"traceId":"28dfff25676795b0"},{"name":"worker-main-server","duration":8360025,"timestamp":63048516,"id":16,"parentId":1,"tags":{},"startTime":1767933654553,"traceId":"28dfff25676795b0"},{"name":"create-entrypoints","duration":23536,"timestamp":72245162,"id":949,"parentId":947,"tags":{},"startTime":1767933663750,"traceId":"28dfff25676795b0"},{"name":"generate-webpack-config","duration":121803,"timestamp":72268932,"id":950,"parentId":948,"tags":{},"startTime":1767933663774,"traceId":"28dfff25676795b0"},{"name":"make","duration":1204,"timestamp":72523025,"id":952,"parentId":951,"tags":{},"startTime":1767933664028,"traceId":"28dfff25676795b0"},{"name":"chunk-graph","duration":672,"timestamp":72527616,"id":954,"parentId":953,"tags":{},"startTime":1767933664032,"traceId":"28dfff25676795b0"},{"name":"optimize-modules","duration":44,"timestamp":72528450,"id":956,"parentId":953,"tags":{},"startTime":1767933664033,"traceId":"28dfff25676795b0"},{"name":"optimize-chunks","duration":963,"timestamp":72528603,"id":957,"parentId":953,"tags":{},"startTime":1767933664033,"traceId":"28dfff25676795b0"},{"name":"optimize-tree","duration":128,"timestamp":72529655,"id":958,"parentId":953,"tags":{},"startTime":1767933664034,"traceId":"28dfff25676795b0"},{"name":"optimize-chunk-modules","duration":561,"timestamp":72530037,"id":959,"parentId":953,"tags":{},"startTime":1767933664035,"traceId":"28dfff25676795b0"},{"name":"optimize","duration":2333,"timestamp":72528373,"id":955,"parentId":953,"tags":{},"startTime":1767933664033,"traceId":"28dfff25676795b0"},{"name":"module-hash","duration":128,"timestamp":72531960,"id":960,"parentId":953,"tags":{},"startTime":1767933664037,"traceId":"28dfff25676795b0"},{"name":"code-generation","duration":230,"timestamp":72532152,"id":961,"parentId":953,"tags":{},"startTime":1767933664037,"traceId":"28dfff25676795b0"},{"name":"hash","duration":480,"timestamp":72532674,"id":962,"parentId":953,"tags":{},"startTime":1767933664037,"traceId":"28dfff25676795b0"},{"name":"code-generation-jobs","duration":158,"timestamp":72533151,"id":963,"parentId":953,"tags":{},"startTime":1767933664038,"traceId":"28dfff25676795b0"},{"name":"module-assets","duration":103,"timestamp":72533268,"id":964,"parentId":953,"tags":{},"startTime":1767933664038,"traceId":"28dfff25676795b0"},{"name":"create-chunk-assets","duration":203,"timestamp":72533387,"id":965,"parentId":953,"tags":{},"startTime":1767933664038,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":1194,"timestamp":72543832,"id":967,"parentId":966,"tags":{"name":"interception-route-rewrite-manifest.js","cache":"MISS"},"startTime":1767933664049,"traceId":"28dfff25676795b0"},{"name":"minify-webpack-plugin-optimize","duration":2629,"timestamp":72542410,"id":966,"parentId":951,"tags":{"compilationName":"edge-server","mangle":"[object Object]"},"startTime":1767933664047,"traceId":"28dfff25676795b0"},{"name":"css-minimizer-plugin","duration":113,"timestamp":72545136,"id":968,"parentId":951,"tags":{},"startTime":1767933664050,"traceId":"28dfff25676795b0"},{"name":"seal","duration":22199,"timestamp":72526856,"id":953,"parentId":951,"tags":{},"startTime":1767933664032,"traceId":"28dfff25676795b0"},{"name":"webpack-compilation","duration":38032,"timestamp":72511470,"id":951,"parentId":948,"tags":{"name":"edge-server"},"startTime":1767933664016,"traceId":"28dfff25676795b0"},{"name":"emit","duration":2820,"timestamp":72549902,"id":969,"parentId":948,"tags":{},"startTime":1767933664055,"traceId":"28dfff25676795b0"},{"name":"webpack-close","duration":10624,"timestamp":72553682,"id":970,"parentId":948,"tags":{"name":"edge-server"},"startTime":1767933664058,"traceId":"28dfff25676795b0"},{"name":"webpack-generate-error-stats","duration":2790,"timestamp":72564363,"id":971,"parentId":970,"tags":{},"startTime":1767933664069,"traceId":"28dfff25676795b0"},{"name":"run-webpack-compiler","duration":322192,"timestamp":72245154,"id":948,"parentId":947,"tags":{},"startTime":1767933663750,"traceId":"28dfff25676795b0"},{"name":"format-webpack-messages","duration":115,"timestamp":72567356,"id":972,"parentId":947,"tags":{},"startTime":1767933664072,"traceId":"28dfff25676795b0"},{"name":"worker-main-edge-server","duration":323044,"timestamp":72244628,"id":947,"parentId":1,"tags":{},"startTime":1767933663749,"traceId":"28dfff25676795b0"},{"name":"create-entrypoints","duration":21233,"timestamp":73373271,"id":975,"parentId":973,"tags":{},"startTime":1767933664878,"traceId":"28dfff25676795b0"},{"name":"generate-webpack-config","duration":134290,"timestamp":73394770,"id":976,"parentId":974,"tags":{},"startTime":1767933664899,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":15980,"timestamp":73725464,"id":990,"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/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":1767933665230,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":2225,"timestamp":73741731,"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%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":1767933665246,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":676,"timestamp":73744028,"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%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767933665249,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":579,"timestamp":73744743,"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%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767933665249,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":462,"timestamp":73745431,"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%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767933665250,"traceId":"28dfff25676795b0"},{"name":"next-client-pages-loader","duration":372,"timestamp":73746739,"id":996,"parentId":995,"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":1767933665251,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":7307,"timestamp":73745929,"id":995,"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=%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":1767933665251,"traceId":"28dfff25676795b0"},{"name":"next-client-pages-loader","duration":71,"timestamp":73754207,"id":998,"parentId":997,"tags":{"absolutePagePath":"next/dist/pages/_app"},"startTime":1767933665259,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":2009,"timestamp":73753290,"id":997,"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=next%2Fdist%2Fpages%2F_app&page=%2F_app!","layer":"pages-dir-browser"},"startTime":1767933665258,"traceId":"28dfff25676795b0"},{"name":"next-client-pages-loader","duration":97,"timestamp":73755555,"id":1000,"parentId":999,"tags":{"absolutePagePath":"next/dist/pages/_error"},"startTime":1767933665260,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":1230,"timestamp":73755422,"id":999,"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-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!","layer":"pages-dir-browser"},"startTime":1767933665260,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15772,"timestamp":73775312,"id":1001,"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/client/next.js","layer":"pages-dir-browser"},"startTime":1767933665280,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":27225,"timestamp":73778202,"id":1002,"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/client/router.js","layer":"pages-dir-browser"},"startTime":1767933665283,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":34891,"timestamp":73781170,"id":1003,"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/app-next.js","layer":"app-pages-browser"},"startTime":1767933665286,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4976,"timestamp":73831639,"id":1004,"parentId":995,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933665336,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6571,"timestamp":73838951,"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/with-router.js","layer":"pages-dir-browser"},"startTime":1767933665344,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9863,"timestamp":73838709,"id":1005,"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/webpack.js","layer":"pages-dir-browser"},"startTime":1767933665343,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8029,"timestamp":73851449,"id":1008,"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/app-webpack.js","layer":"app-pages-browser"},"startTime":1767933665356,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11928,"timestamp":73851534,"id":1009,"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/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1767933665356,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14343,"timestamp":73851761,"id":1011,"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/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1767933665356,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":16401,"timestamp":73851845,"id":1012,"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/client/components/client-segment.js","layer":"app-pages-browser"},"startTime":1767933665357,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":17744,"timestamp":73851977,"id":1014,"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/client/components/render-from-template-context.js","layer":"app-pages-browser"},"startTime":1767933665357,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":32731,"timestamp":73851615,"id":1010,"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/app-index.js","layer":"app-pages-browser"},"startTime":1767933665356,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":48740,"timestamp":73851917,"id":1013,"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/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1767933665357,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":87449,"timestamp":73851310,"id":1007,"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/index.js","layer":"pages-dir-browser"},"startTime":1767933665356,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":81584,"timestamp":73859703,"id":1015,"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/client/components/builtin/global-error.js","layer":"app-pages-browser"},"startTime":1767933665364,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2146,"timestamp":73971531,"id":1016,"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/lib/require-instrumentation-client.js","layer":"pages-dir-browser"},"startTime":1767933665476,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2140,"timestamp":73976581,"id":1018,"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/is-error.js","layer":"pages-dir-browser"},"startTime":1767933665481,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4939,"timestamp":73976261,"id":1017,"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/require-instrumentation-client.js","layer":"app-pages-browser"},"startTime":1767933665481,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8004,"timestamp":73976756,"id":1020,"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/client/components/metadata/async-metadata.js","layer":"app-pages-browser"},"startTime":1767933665481,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":18231,"timestamp":73976644,"id":1019,"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/client/components/http-access-fallback/error-boundary.js","layer":"app-pages-browser"},"startTime":1767933665481,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3787,"timestamp":74018892,"id":1021,"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/router-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767933665524,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10147,"timestamp":74019145,"id":1023,"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/lib/framework/boundary-components.js","layer":"app-pages-browser"},"startTime":1767933665524,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":84910,"timestamp":74019051,"id":1022,"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/router/router.js","layer":"pages-dir-browser"},"startTime":1767933665524,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6006,"timestamp":74161187,"id":1025,"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/pages/_error.js","layer":"pages-dir-browser"},"startTime":1767933665666,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11170,"timestamp":74160958,"id":1024,"parentId":997,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933665666,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":17046,"timestamp":74161252,"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/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1767933665666,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1203,"timestamp":74194277,"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/build/deployment-id.js","layer":"pages-dir-browser"},"startTime":1767933665699,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2143,"timestamp":74194385,"id":1028,"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/deployment-id.js","layer":"app-pages-browser"},"startTime":1767933665699,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5519,"timestamp":74197754,"id":1029,"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/http-access-fallback/error-fallback.js","layer":"app-pages-browser"},"startTime":1767933665702,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5894,"timestamp":74197900,"id":1030,"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/lib/metadata/generate/icon-mark.js","layer":"app-pages-browser"},"startTime":1767933665703,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":9869,"timestamp":74204553,"id":1031,"parentId":991,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"app-pages-browser"},"startTime":1767933665709,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":6735,"timestamp":74216704,"id":1033,"parentId":993,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"app-pages-browser"},"startTime":1767933665721,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":8284,"timestamp":74216417,"id":1032,"parentId":992,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"app-pages-browser"},"startTime":1767933665721,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":18929,"timestamp":74216959,"id":1034,"parentId":994,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"app-pages-browser"},"startTime":1767933665722,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":19259,"timestamp":74217188,"id":1035,"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/encode-uri-path.js","layer":"app-pages-browser"},"startTime":1767933665722,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":25050,"timestamp":74217266,"id":1036,"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/set-attributes-from-props.js","layer":"app-pages-browser"},"startTime":1767933665722,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5580,"timestamp":74264407,"id":1038,"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/app-call-server.js","layer":"app-pages-browser"},"startTime":1767933665769,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6543,"timestamp":74264177,"id":1037,"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/app-globals.js","layer":"app-pages-browser"},"startTime":1767933665769,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7439,"timestamp":74264489,"id":1039,"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/app-find-source-map-url.js","layer":"app-pages-browser"},"startTime":1767933665769,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8414,"timestamp":74264548,"id":1040,"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/app-build-id.js","layer":"app-pages-browser"},"startTime":1767933665769,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11350,"timestamp":74264638,"id":1041,"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/shared/lib/head-manager-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767933665769,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11791,"timestamp":74264691,"id":1042,"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":1767933665769,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13813,"timestamp":74264788,"id":1044,"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/shared/lib/app-router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767933665769,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":19873,"timestamp":74264733,"id":1043,"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/components/app-router-instance.js","layer":"app-pages-browser"},"startTime":1767933665769,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11922,"timestamp":74273629,"id":1045,"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":1767933665778,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12268,"timestamp":74273771,"id":1046,"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/invariant-error.js","layer":"app-pages-browser"},"startTime":1767933665778,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8936,"timestamp":74299236,"id":1049,"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/match-segments.js","layer":"app-pages-browser"},"startTime":1767933665804,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10936,"timestamp":74298835,"id":1047,"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/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1767933665804,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12833,"timestamp":74299344,"id":1050,"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/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1767933665804,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14335,"timestamp":74299452,"id":1051,"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/use-action-queue.js","layer":"app-pages-browser"},"startTime":1767933665804,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15631,"timestamp":74299553,"id":1052,"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/bfcache.js","layer":"app-pages-browser"},"startTime":1767933665804,"traceId":"28dfff25676795b0"}]
|
|
11
|
-
[{"name":"build-module-js","duration":17996,"timestamp":74299102,"id":1048,"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/error-boundary.js","layer":"app-pages-browser"},"startTime":1767933665804,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":18111,"timestamp":74299816,"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/client/remove-base-path.js","layer":"pages-dir-browser"},"startTime":1767933665804,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":24644,"timestamp":74299892,"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/client/route-announcer.js","layer":"pages-dir-browser"},"startTime":1767933665805,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":25417,"timestamp":74299965,"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/mitt.js","layer":"pages-dir-browser"},"startTime":1767933665805,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":26216,"timestamp":74300064,"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/has-base-path.js","layer":"pages-dir-browser"},"startTime":1767933665805,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":28759,"timestamp":74300137,"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/runtime-config.external.js","layer":"pages-dir-browser"},"startTime":1767933665805,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":24667,"timestamp":74304839,"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/image-config-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767933665810,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":32773,"timestamp":74299649,"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/client/head-manager.js","layer":"pages-dir-browser"},"startTime":1767933665804,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":32168,"timestamp":74304668,"id":1060,"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":1767933665809,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":40056,"timestamp":74299734,"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/client/page-loader.js","layer":"pages-dir-browser"},"startTime":1767933665804,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3755,"timestamp":74350028,"id":1063,"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/react-client-callbacks/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1767933665855,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5565,"timestamp":74349889,"id":1062,"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":1767933665855,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7677,"timestamp":74350101,"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/client/react-client-callbacks/on-recoverable-error.js","layer":"pages-dir-browser"},"startTime":1767933665855,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11225,"timestamp":74352104,"id":1065,"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/react-client-callbacks/error-boundary-callbacks.js","layer":"app-pages-browser"},"startTime":1767933665857,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2363,"timestamp":74380700,"id":1084,"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":1767933665885,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2514,"timestamp":74380941,"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":1767933665886,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":16970,"timestamp":74378702,"id":1066,"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/components/router-reducer/create-initial-router-state.js","layer":"app-pages-browser"},"startTime":1767933665883,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":18337,"timestamp":74378882,"id":1067,"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/router-reducer/router-reducer-types.js","layer":"app-pages-browser"},"startTime":1767933665884,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":889,"timestamp":74401456,"id":1088,"parentId":1016,"tags":{"layer":null},"startTime":1767933665906,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":940,"timestamp":74402373,"id":1089,"parentId":1002,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/index.js","layer":"pages-dir-browser"},"startTime":1767933665907,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1171,"timestamp":74402785,"id":1093,"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":1767933665907,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":29235,"timestamp":74379230,"id":1069,"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/router-reducer/create-router-cache-key.js","layer":"app-pages-browser"},"startTime":1767933665884,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":30049,"timestamp":74379342,"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/client/request/search-params.browser.js","layer":"app-pages-browser"},"startTime":1767933665884,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":30514,"timestamp":74379449,"id":1071,"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/request/params.browser.js","layer":"app-pages-browser"},"startTime":1767933665884,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":31194,"timestamp":74379563,"id":1072,"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/shared/lib/router/utils/disable-smooth-scroll.js","layer":"app-pages-browser"},"startTime":1767933665884,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":32049,"timestamp":74379660,"id":1073,"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":1767933665884,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":36594,"timestamp":74379027,"id":1068,"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/router-reducer/fetch-server-response.js","layer":"app-pages-browser"},"startTime":1767933665884,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":36633,"timestamp":74379841,"id":1075,"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":1767933665885,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":37187,"timestamp":74380026,"id":1077,"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":1767933665885,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":38807,"timestamp":74379924,"id":1076,"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":1767933665885,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":39358,"timestamp":74380110,"id":1078,"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/hooks-client-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767933665885,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":39852,"timestamp":74380320,"id":1080,"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":1767933665885,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":40791,"timestamp":74380401,"id":1081,"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/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"app-pages-browser"},"startTime":1767933665885,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":41701,"timestamp":74380495,"id":1082,"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-base-path.js","layer":"app-pages-browser"},"startTime":1767933665885,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":42357,"timestamp":74380606,"id":1083,"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/has-base-path.js","layer":"app-pages-browser"},"startTime":1767933665885,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":45427,"timestamp":74380855,"id":1086,"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":1767933665886,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":54197,"timestamp":74380237,"id":1079,"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":1767933665885,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":55865,"timestamp":74379742,"id":1074,"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/shared/lib/router/utils/app-paths.js","layer":"app-pages-browser"},"startTime":1767933665884,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":55763,"timestamp":74380758,"id":1085,"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/client/components/handle-isr-error.js","layer":"app-pages-browser"},"startTime":1767933665885,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":34750,"timestamp":74402464,"id":1090,"parentId":1018,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933665907,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":36407,"timestamp":74402578,"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/client/components/navigation-untracked.js","layer":"app-pages-browser"},"startTime":1767933665907,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":42698,"timestamp":74402687,"id":1092,"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/components/http-access-fallback/http-access-fallback.js","layer":"app-pages-browser"},"startTime":1767933665907,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5026,"timestamp":74456099,"id":1095,"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/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1767933665961,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1715,"timestamp":74459915,"id":1100,"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/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1767933665965,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1876,"timestamp":74459962,"id":1101,"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/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1767933665965,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2130,"timestamp":74459993,"id":1102,"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/compiled/react-server-dom-webpack/client.browser.js","layer":"app-pages-browser"},"startTime":1767933665965,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2446,"timestamp":74460036,"id":1103,"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/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1767933665965,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7925,"timestamp":74456884,"id":1097,"parentId":1037,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933665962,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5394,"timestamp":74460064,"id":1104,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933665965,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11138,"timestamp":74456806,"id":1096,"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/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1767933665961,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8377,"timestamp":74460566,"id":1106,"parentId":1053,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933665965,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8992,"timestamp":74460631,"id":1107,"parentId":1048,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933665965,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14542,"timestamp":74455917,"id":1094,"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":1767933665961,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":27453,"timestamp":74460699,"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/client/route-loader.js","layer":"pages-dir-browser"},"startTime":1767933665965,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13380,"timestamp":74476904,"id":1109,"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/router/utils/remove-trailing-slash.js","layer":"pages-dir-browser"},"startTime":1767933665982,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3566,"timestamp":74491922,"id":1111,"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/client/detect-domain-locale.js","layer":"pages-dir-browser"},"startTime":1767933665997,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4493,"timestamp":74491806,"id":1110,"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/router/utils/parse-relative-url.js","layer":"pages-dir-browser"},"startTime":1767933665996,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3063,"timestamp":74496926,"id":1119,"parentId":1002,"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":1767933666002,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2520,"timestamp":74498777,"id":1122,"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":1767933666003,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8293,"timestamp":74496638,"id":1117,"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/lib/is-error.js","layer":"app-pages-browser"},"startTime":1767933666001,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8376,"timestamp":74497663,"id":1120,"parentId":1010,"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":1767933666002,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8340,"timestamp":74498542,"id":1121,"parentId":1010,"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":1767933666003,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":16202,"timestamp":74491986,"id":1112,"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/router/utils/route-matcher.js","layer":"pages-dir-browser"},"startTime":1767933665997,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":16821,"timestamp":74492169,"id":1115,"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/router/utils/parse-path.js","layer":"pages-dir-browser"},"startTime":1767933665997,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":24178,"timestamp":74492079,"id":1113,"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/router/utils/route-regex.js","layer":"pages-dir-browser"},"startTime":1767933665997,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":28172,"timestamp":74492127,"id":1114,"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/router/utils/format-url.js","layer":"pages-dir-browser"},"startTime":1767933665997,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":24219,"timestamp":74496837,"id":1118,"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/i18n/normalize-locale-path.js","layer":"pages-dir-browser"},"startTime":1767933666002,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":23137,"timestamp":74498834,"id":1123,"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/client/add-locale.js","layer":"pages-dir-browser"},"startTime":1767933666004,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":29002,"timestamp":74496535,"id":1116,"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/page-path/denormalize-page-path.js","layer":"pages-dir-browser"},"startTime":1767933666001,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9828,"timestamp":74527079,"id":1124,"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/client/remove-locale.js","layer":"pages-dir-browser"},"startTime":1767933666032,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10586,"timestamp":74527246,"id":1125,"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/client/add-base-path.js","layer":"pages-dir-browser"},"startTime":1767933666032,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11349,"timestamp":74527341,"id":1126,"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":"app-pages-browser"},"startTime":1767933666032,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12249,"timestamp":74527722,"id":1129,"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/components/http-access-fallback/http-access-fallback.js","layer":"pages-dir-browser"},"startTime":1767933666032,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14932,"timestamp":74527441,"id":1127,"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/client/resolve-href.js","layer":"pages-dir-browser"},"startTime":1767933666032,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1048,"timestamp":74553563,"id":1131,"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/is-api-route.js","layer":"pages-dir-browser"},"startTime":1767933666058,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5076,"timestamp":74553403,"id":1130,"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/utils/warn-once.js","layer":"pages-dir-browser"},"startTime":1767933666058,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6103,"timestamp":74553624,"id":1132,"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/router/utils/get-next-pathname-info.js","layer":"pages-dir-browser"},"startTime":1767933666058,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":61749,"timestamp":74564580,"id":1144,"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/constants.js","layer":"pages-dir-browser"},"startTime":1767933666069,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":78475,"timestamp":74553735,"id":1133,"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/router/utils/format-next-pathname-info.js","layer":"pages-dir-browser"},"startTime":1767933666058,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":79162,"timestamp":74553824,"id":1134,"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/router/utils/compare-states.js","layer":"pages-dir-browser"},"startTime":1767933666058,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":80884,"timestamp":74553911,"id":1135,"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/router/utils/is-local-url.js","layer":"pages-dir-browser"},"startTime":1767933666059,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":72033,"timestamp":74564297,"id":1139,"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/router/utils/is-bot.js","layer":"pages-dir-browser"},"startTime":1767933666069,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":72634,"timestamp":74564364,"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/is-bot.js","layer":"app-pages-browser"},"startTime":1767933666069,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":72932,"timestamp":74564436,"id":1141,"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/router/utils/omit.js","layer":"pages-dir-browser"},"startTime":1767933666069,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":73617,"timestamp":74564483,"id":1142,"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/router/utils/interpolate-as.js","layer":"pages-dir-browser"},"startTime":1767933666069,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":77110,"timestamp":74564532,"id":1143,"parentId":1108,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933666069,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":77459,"timestamp":74564664,"id":1146,"parentId":1117,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933666069,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":79875,"timestamp":74564609,"id":1145,"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/bloom-filter.js","layer":"pages-dir-browser"},"startTime":1767933666069,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":83206,"timestamp":74564716,"id":1147,"parentId":1025,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933666069,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10612,"timestamp":74638904,"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/client/components/router-reducer/create-href-from-url.js","layer":"app-pages-browser"},"startTime":1767933666144,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12710,"timestamp":74639076,"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/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1767933666144,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5790,"timestamp":74659368,"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/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"app-pages-browser"},"startTime":1767933666164,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6446,"timestamp":74659552,"id":1156,"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/components/nav-failure-handler.js","layer":"app-pages-browser"},"startTime":1767933666164,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8170,"timestamp":74659664,"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/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1767933666164,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7362,"timestamp":74669501,"id":1159,"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/components/redirect-error.js","layer":"pages-dir-browser"},"startTime":1767933666174,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11799,"timestamp":74669322,"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/client/components/redirect-error.js","layer":"app-pages-browser"},"startTime":1767933666174,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14067,"timestamp":74669701,"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/client/components/router-reducer/compute-changed-path.js","layer":"app-pages-browser"},"startTime":1767933666174,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":19099,"timestamp":74669600,"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/client/components/links.js","layer":"app-pages-browser"},"startTime":1767933666174,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9911,"timestamp":74690932,"id":1162,"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/components/segment-cache.js","layer":"app-pages-browser"},"startTime":1767933666196,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10178,"timestamp":74691327,"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/shared/lib/is-thenable.js","layer":"app-pages-browser"},"startTime":1767933666196,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11512,"timestamp":74691239,"id":1164,"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/components/router-reducer/reducers/prefetch-reducer.js","layer":"app-pages-browser"},"startTime":1767933666196,"traceId":"28dfff25676795b0"}]
|
|
12
|
-
[{"name":"build-module-js","duration":12304,"timestamp":74691458,"id":1166,"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/components/errors/root-error-boundary.js","layer":"app-pages-browser"},"startTime":1767933666196,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12923,"timestamp":74691551,"id":1167,"parentId":1029,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933666196,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":23327,"timestamp":74691137,"id":1163,"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/components/router-reducer/router-reducer.js","layer":"app-pages-browser"},"startTime":1767933666196,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":706453,"timestamp":74527525,"id":1128,"parentId":1033,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933666032,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":7127,"timestamp":75246337,"id":1169,"parentId":1033,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/Header.tsx","layer":"app-pages-browser"},"startTime":1767933666751,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15772,"timestamp":75250132,"id":1171,"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/image-config.js","layer":"pages-dir-browser"},"startTime":1767933666755,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":16327,"timestamp":75250200,"id":1172,"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/shared/lib/router/utils/path-has-prefix.js","layer":"pages-dir-browser"},"startTime":1767933666755,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":22290,"timestamp":75249965,"id":1170,"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/navigation.js","layer":"app-pages-browser"},"startTime":1767933666755,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":22658,"timestamp":75250248,"id":1173,"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/path-has-prefix.js","layer":"app-pages-browser"},"startTime":1767933666755,"traceId":"28dfff25676795b0"},{"name":"postcss-process","duration":837052,"timestamp":74986432,"id":1168,"parentId":1148,"tags":{},"startTime":1767933666491,"traceId":"28dfff25676795b0"},{"name":"postcss-loader","duration":1258736,"timestamp":74564894,"id":1148,"parentId":1136,"tags":{},"startTime":1767933666070,"traceId":"28dfff25676795b0"},{"name":"css-loader","duration":40686,"timestamp":75823916,"id":1177,"parentId":1136,"tags":{"astUsed":"true"},"startTime":1767933667329,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":619445,"timestamp":75250638,"id":1176,"parentId":1033,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useProjectStore.ts","layer":"app-pages-browser"},"startTime":1767933666755,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":620724,"timestamp":75250497,"id":1175,"parentId":1033,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/button.tsx","layer":"app-pages-browser"},"startTime":1767933666755,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":623819,"timestamp":75250299,"id":1174,"parentId":1033,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/workspace/WorkspaceLayout.tsx","layer":"app-pages-browser"},"startTime":1767933666755,"traceId":"28dfff25676795b0"},{"name":"font-loader","duration":1287221,"timestamp":74620745,"id":1152,"parentId":1151,"tags":{},"startTime":1767933666125,"traceId":"28dfff25676795b0"},{"name":"postcss","duration":1075,"timestamp":75908266,"id":1178,"parentId":1151,"tags":{},"startTime":1767933667413,"traceId":"28dfff25676795b0"},{"name":"next-font-loader","duration":1288707,"timestamp":74620693,"id":1151,"parentId":1138,"tags":{},"startTime":1767933666125,"traceId":"28dfff25676795b0"},{"name":"css-loader","duration":9765,"timestamp":75909372,"id":1179,"parentId":1138,"tags":{"astUsed":"true"},"startTime":1767933667414,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":1355490,"timestamp":74564224,"id":1138,"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_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}","layer":null},"startTime":1767933666069,"traceId":"28dfff25676795b0"},{"name":"font-loader","duration":1324541,"timestamp":74603126,"id":1150,"parentId":1149,"tags":{},"startTime":1767933666108,"traceId":"28dfff25676795b0"},{"name":"postcss","duration":473,"timestamp":75927724,"id":1180,"parentId":1149,"tags":{},"startTime":1767933667432,"traceId":"28dfff25676795b0"},{"name":"next-font-loader","duration":1362439,"timestamp":74565807,"id":1149,"parentId":1137,"tags":{},"startTime":1767933666070,"traceId":"28dfff25676795b0"},{"name":"css-loader","duration":1593,"timestamp":75928227,"id":1181,"parentId":1137,"tags":{"astUsed":"true"},"startTime":1767933667433,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":1367746,"timestamp":74562511,"id":1137,"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\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}","layer":null},"startTime":1767933666067,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":3318,"timestamp":75933766,"id":1182,"parentId":1032,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectList.tsx","layer":"app-pages-browser"},"startTime":1767933667438,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3293,"timestamp":75937331,"id":1183,"parentId":1173,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933667442,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3600,"timestamp":75937553,"id":1185,"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/shared/lib/router/utils/get-asset-path-from-route.js","layer":"pages-dir-browser"},"startTime":1767933667442,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":18062,"timestamp":75937438,"id":1184,"parentId":1032,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectModal.tsx","layer":"app-pages-browser"},"startTime":1767933667442,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":15181,"timestamp":75941194,"id":1186,"parentId":1034,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/input.tsx","layer":"app-pages-browser"},"startTime":1767933667446,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":19671,"timestamp":75941392,"id":1188,"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/client/react-client-callbacks/report-global-error.js","layer":"app-pages-browser"},"startTime":1767933667446,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":20350,"timestamp":75941447,"id":1189,"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/react-client-callbacks/report-global-error.js","layer":"pages-dir-browser"},"startTime":1767933667446,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":23917,"timestamp":75941336,"id":1187,"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/shared/lib/constants.js","layer":"pages-dir-browser"},"startTime":1767933667446,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":25096,"timestamp":75941498,"id":1190,"parentId":1034,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1767933667446,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":28339,"timestamp":75941595,"id":1191,"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/lazy-dynamic/bailout-to-csr.js","layer":"app-pages-browser"},"startTime":1767933667446,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":29045,"timestamp":75941646,"id":1192,"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/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"pages-dir-browser"},"startTime":1767933667446,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":34556,"timestamp":75941740,"id":1194,"parentId":1066,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933667446,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":38399,"timestamp":75941693,"id":1193,"parentId":1066,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933667446,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":47420,"timestamp":75941786,"id":1195,"parentId":1066,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933667446,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8715,"timestamp":75996267,"id":1197,"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":1767933667501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9896,"timestamp":75996148,"id":1196,"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-idle-callback.js","layer":"pages-dir-browser"},"startTime":1767933667501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10674,"timestamp":75996388,"id":1199,"parentId":1070,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933667501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12140,"timestamp":75996325,"id":1198,"parentId":1066,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933667501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12866,"timestamp":75996448,"id":1200,"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/request/params.browser.prod.js","layer":"app-pages-browser"},"startTime":1767933667501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6742,"timestamp":76010350,"id":1201,"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/segment.js","layer":"app-pages-browser"},"startTime":1767933667515,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11349,"timestamp":76010504,"id":1202,"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/client/route-params.js","layer":"app-pages-browser"},"startTime":1767933667515,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9310,"timestamp":76017477,"id":1203,"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/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1767933667522,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9440,"timestamp":76017745,"id":1205,"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/page-path/ensure-leading-slash.js","layer":"app-pages-browser"},"startTime":1767933667522,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10563,"timestamp":76017843,"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/router/utils/interception-routes.js","layer":"pages-dir-browser"},"startTime":1767933667523,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11649,"timestamp":76017923,"id":1207,"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/router/utils/interception-routes.js","layer":"app-pages-browser"},"startTime":1767933667523,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12193,"timestamp":76018037,"id":1208,"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":1767933667523,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13631,"timestamp":76017641,"id":1204,"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/client/components/router-reducer/set-cache-busting-search-param.js","layer":"app-pages-browser"},"startTime":1767933667522,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":18240,"timestamp":76018119,"id":1209,"parentId":1032,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/index.ts","layer":"app-pages-browser"},"startTime":1767933667523,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":689,"timestamp":76038444,"id":1211,"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/compiled/react/cjs/react-jsx-runtime.production.js","layer":"app-pages-browser"},"startTime":1767933667543,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6080,"timestamp":76038504,"id":1212,"parentId":1101,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933667543,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":2387437,"timestamp":73660483,"id":982,"parentId":978,"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":1767933665165,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10805,"timestamp":76038324,"id":1210,"parentId":1206,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933667543,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":167557,"timestamp":76060162,"id":1214,"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-dom/cjs/react-dom-client.production.js","layer":"app-pages-browser"},"startTime":1767933667565,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":169394,"timestamp":76060231,"id":1215,"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.production.js","layer":"app-pages-browser"},"startTime":1767933667565,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":224794,"timestamp":76060276,"id":1216,"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-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.production.js","layer":"app-pages-browser"},"startTime":1767933667565,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":234600,"timestamp":76057648,"id":1213,"parentId":1108,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933667562,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":687,"timestamp":76300876,"id":1219,"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":1767933667806,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7458,"timestamp":76300922,"id":1220,"parentId":1089,"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":1767933667806,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12256,"timestamp":76300806,"id":1218,"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/shared/lib/page-path/ensure-leading-slash.js","layer":"pages-dir-browser"},"startTime":1767933667805,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12793,"timestamp":76300642,"id":1217,"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/shared/lib/segment.js","layer":"pages-dir-browser"},"startTime":1767933667805,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":145244,"timestamp":76334391,"id":1225,"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":1767933667839,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":693,"timestamp":76481957,"id":1231,"parentId":1079,"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":1767933667987,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":150808,"timestamp":76333787,"id":1221,"parentId":1123,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933667838,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":151480,"timestamp":76333951,"id":1222,"parentId":1126,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933667839,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":151674,"timestamp":76334136,"id":1223,"parentId":1113,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933667839,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":151639,"timestamp":76334474,"id":1226,"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/page-path/normalize-path-sep.js","layer":"pages-dir-browser"},"startTime":1767933667839,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":154343,"timestamp":76334587,"id":1228,"parentId":1113,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933667839,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":154710,"timestamp":76334629,"id":1229,"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":"pages-dir-browser"},"startTime":1767933667839,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":155008,"timestamp":76334676,"id":1230,"parentId":1126,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933667839,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":163001,"timestamp":76334540,"id":1227,"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/route-match-utils.js","layer":"pages-dir-browser"},"startTime":1767933667839,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5893,"timestamp":76498346,"id":1232,"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/shared/lib/router/utils/remove-path-prefix.js","layer":"pages-dir-browser"},"startTime":1767933668003,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9377,"timestamp":76498505,"id":1233,"parentId":1133,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668003,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9693,"timestamp":76498585,"id":1234,"parentId":1133,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668003,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3886,"timestamp":76510458,"id":1238,"parentId":1140,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668015,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4821,"timestamp":76510349,"id":1237,"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/router/utils/html-bots.js","layer":"pages-dir-browser"},"startTime":1767933668015,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5871,"timestamp":76510623,"id":1240,"parentId":1147,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668015,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6117,"timestamp":76510687,"id":1241,"parentId":1147,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668015,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6946,"timestamp":76510555,"id":1239,"parentId":1147,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668015,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14035,"timestamp":76504547,"id":1235,"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/remove-trailing-slash.js","layer":"app-pages-browser"},"startTime":1767933668009,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9247,"timestamp":76515250,"id":1242,"parentId":1164,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668020,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10320,"timestamp":76522715,"id":1244,"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":"app-pages-browser"},"startTime":1767933668027,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12755,"timestamp":76522585,"id":1243,"parentId":1166,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668027,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13043,"timestamp":76522783,"id":1245,"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/redirect-status-code.js","layer":"pages-dir-browser"},"startTime":1767933668027,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10697,"timestamp":76527981,"id":1247,"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/router-reducer/reducers/server-patch-reducer.js","layer":"app-pages-browser"},"startTime":1767933668033,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11319,"timestamp":76528110,"id":1248,"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/router-reducer/reducers/restore-reducer.js","layer":"app-pages-browser"},"startTime":1767933668033,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15630,"timestamp":76526908,"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/router-reducer/reducers/navigate-reducer.js","layer":"app-pages-browser"},"startTime":1767933668032,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13056,"timestamp":76545336,"id":1249,"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/router-reducer/reducers/refresh-reducer.js","layer":"app-pages-browser"},"startTime":1767933668050,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14112,"timestamp":76545510,"id":1250,"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/router-reducer/reducers/hmr-refresh-reducer.js","layer":"app-pages-browser"},"startTime":1767933668050,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":16661,"timestamp":76545607,"id":1251,"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/router-reducer/reducers/server-action-reducer.js","layer":"app-pages-browser"},"startTime":1767933668050,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13505,"timestamp":76568319,"id":1252,"parentId":1170,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668073,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9385,"timestamp":76584382,"id":1254,"parentId":1170,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668089,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9775,"timestamp":76584475,"id":1255,"parentId":1170,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668089,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":10943,"timestamp":76584566,"id":1256,"parentId":1169,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/LanguageSwitcher.tsx","layer":"app-pages-browser"},"startTime":1767933668089,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14316,"timestamp":76582886,"id":1253,"parentId":1170,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668088,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":3466,"timestamp":76612624,"id":1257,"parentId":1182,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectCard.tsx","layer":"app-pages-browser"},"startTime":1767933668117,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":5380,"timestamp":76612827,"id":1258,"parentId":1182,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectCard.tsx","layer":"app-pages-browser"},"startTime":1767933668117,"traceId":"28dfff25676795b0"}]
|
|
13
|
-
[{"name":"build-module-tsx","duration":10610,"timestamp":76613999,"id":1259,"parentId":1184,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/dialog.tsx","layer":"app-pages-browser"},"startTime":1767933668119,"traceId":"28dfff25676795b0"},{"name":"build-module-css","duration":2066133,"timestamp":74559966,"id":1136,"parentId":1105,"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":1767933666065,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":297722,"timestamp":76334217,"id":1224,"parentId":1169,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933667839,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1239,"timestamp":76632748,"id":1264,"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/build/webpack/loaders/css-loader/src/runtime/api.js","layer":null},"startTime":1767933668137,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4918,"timestamp":76632262,"id":1260,"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":1767933668137,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5194,"timestamp":76632442,"id":1261,"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":1767933668137,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":2191884,"timestamp":74459718,"id":1099,"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/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":1767933665964,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":2197083,"timestamp":74457073,"id":1098,"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/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":1767933665962,"traceId":"28dfff25676795b0"},{"name":"build-module-css","duration":2202736,"timestamp":74460188,"id":1105,"parentId":991,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":"app-pages-browser"},"startTime":1767933665965,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":31297,"timestamp":76632652,"id":1263,"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/router/utils/cache-busting-search-param.js","layer":"app-pages-browser"},"startTime":1767933668137,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":32415,"timestamp":76632551,"id":1262,"parentId":1198,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668137,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":27592,"timestamp":76637855,"id":1266,"parentId":1175,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1767933668143,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":31914,"timestamp":76637757,"id":1265,"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/router/utils/sorted-routes.js","layer":"pages-dir-browser"},"startTime":1767933668142,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5635,"timestamp":76666740,"id":1267,"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/segment-cache/segment-value-encoding.js","layer":"app-pages-browser"},"startTime":1767933668171,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":178,"timestamp":76674459,"id":1268,"parentId":1099,"tags":{},"startTime":1767933668179,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":31,"timestamp":76674654,"id":1269,"parentId":1098,"tags":{},"startTime":1767933668179,"traceId":"28dfff25676795b0"},{"name":"build-module","duration":51,"timestamp":76674695,"id":1270,"parentId":1105,"tags":{},"startTime":1767933668179,"traceId":"28dfff25676795b0"},{"name":"build-module-json","duration":2345,"timestamp":76676043,"id":1271,"parentId":1209,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/en.json","layer":"app-pages-browser"},"startTime":1767933668181,"traceId":"28dfff25676795b0"},{"name":"build-module-json","duration":1715,"timestamp":76676837,"id":1272,"parentId":1209,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/ko.json","layer":"app-pages-browser"},"startTime":1767933668182,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":21345,"timestamp":76677301,"id":1275,"parentId":1174,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileExplorer.tsx","layer":"app-pages-browser"},"startTime":1767933668182,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":25912,"timestamp":76676881,"id":1273,"parentId":1174,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ChatPanel.tsx","layer":"app-pages-browser"},"startTime":1767933668182,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":30010,"timestamp":76677477,"id":1276,"parentId":1174,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileViewer.tsx","layer":"app-pages-browser"},"startTime":1767933668182,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":32443,"timestamp":76682447,"id":1283,"parentId":1174,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/database/DatabasePanel.tsx","layer":"app-pages-browser"},"startTime":1767933668187,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":35985,"timestamp":76682613,"id":1284,"parentId":1174,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/testing/TestRunner.tsx","layer":"app-pages-browser"},"startTime":1767933668187,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":37581,"timestamp":76682784,"id":1285,"parentId":1174,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/env/EnvPanel.tsx","layer":"app-pages-browser"},"startTime":1767933668187,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":228463,"timestamp":76504692,"id":1236,"parentId":1169,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933668009,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":58663,"timestamp":76677128,"id":1274,"parentId":1174,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/PreviewPanel.tsx","layer":"app-pages-browser"},"startTime":1767933668182,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":54370,"timestamp":76682949,"id":1286,"parentId":1174,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/checkpoint/CheckpointPanel.tsx","layer":"app-pages-browser"},"startTime":1767933668188,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":113355,"timestamp":76682097,"id":1279,"parentId":1169,"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":1767933668187,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":113907,"timestamp":76681961,"id":1278,"parentId":1034,"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":1767933668187,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":114475,"timestamp":76682187,"id":1280,"parentId":1174,"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":1767933668187,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":115203,"timestamp":76681830,"id":1277,"parentId":1033,"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":1767933668186,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":114985,"timestamp":76682269,"id":1281,"parentId":1257,"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":1767933668187,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":115211,"timestamp":76682365,"id":1282,"parentId":1258,"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":1767933668187,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":5084,"timestamp":76803248,"id":1287,"parentId":1257,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/card.tsx","layer":"app-pages-browser"},"startTime":1767933668308,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":31100,"timestamp":76818075,"id":1289,"parentId":1236,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668323,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":31480,"timestamp":76818186,"id":1290,"parentId":1236,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668323,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":33704,"timestamp":76817848,"id":1288,"parentId":1236,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668323,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":10835,"timestamp":76852325,"id":1299,"parentId":1176,"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":1767933668357,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":16752,"timestamp":76852530,"id":1300,"parentId":1209,"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":1767933668357,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":52976,"timestamp":76818286,"id":1291,"parentId":1275,"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":1767933668323,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":53068,"timestamp":76818408,"id":1292,"parentId":1276,"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":1767933668323,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":53109,"timestamp":76818523,"id":1293,"parentId":1273,"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":1767933668323,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":53253,"timestamp":76818626,"id":1294,"parentId":1283,"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":1767933668323,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":53490,"timestamp":76818729,"id":1295,"parentId":1284,"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":1767933668323,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":53651,"timestamp":76818836,"id":1296,"parentId":1285,"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":1767933668324,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":21501,"timestamp":76852038,"id":1297,"parentId":1274,"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":1767933668357,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":21585,"timestamp":76852215,"id":1298,"parentId":1286,"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":1767933668357,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2436,"timestamp":76899309,"id":1304,"parentId":1231,"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":1767933668404,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5441,"timestamp":76897383,"id":1301,"parentId":1289,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668402,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":7779,"timestamp":76897554,"id":1302,"parentId":1273,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageInput.tsx","layer":"app-pages-browser"},"startTime":1767933668402,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":9185,"timestamp":76899092,"id":1303,"parentId":1273,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageList.tsx","layer":"app-pages-browser"},"startTime":1767933668404,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1387,"timestamp":76915955,"id":1305,"parentId":1227,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933668421,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":2482,"timestamp":76918082,"id":1306,"parentId":1175,"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":1767933668423,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6602,"timestamp":76918548,"id":1310,"parentId":1247,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668423,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8392,"timestamp":76918494,"id":1309,"parentId":1247,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668423,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":11242,"timestamp":76918387,"id":1308,"parentId":1274,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ErrorOverlay.tsx","layer":"app-pages-browser"},"startTime":1767933668423,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12746,"timestamp":76918617,"id":1311,"parentId":1247,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668423,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11398,"timestamp":76921032,"id":1313,"parentId":1246,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668426,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12006,"timestamp":76921152,"id":1314,"parentId":1246,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668426,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":24417,"timestamp":76918267,"id":1307,"parentId":1274,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ConsoleViewer.tsx","layer":"app-pages-browser"},"startTime":1767933668423,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":22375,"timestamp":76921243,"id":1315,"parentId":1246,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668426,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":33739,"timestamp":76918667,"id":1312,"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/components/router-reducer/ppr-navigations.js","layer":"app-pages-browser"},"startTime":1767933668423,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":17101,"timestamp":76936510,"id":1317,"parentId":1251,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933668441,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1165,"timestamp":76957063,"id":1327,"parentId":1225,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/scheduler@0.27.0/node_modules/scheduler/index.js","layer":"pages-dir-browser"},"startTime":1767933668462,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7338,"timestamp":76957120,"id":1328,"parentId":1227,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933668462,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11570,"timestamp":76956769,"id":1325,"parentId":1214,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933668461,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14549,"timestamp":76957157,"id":1329,"parentId":1242,"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":1767933668462,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":40978,"timestamp":76936603,"id":1318,"parentId":1251,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668441,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":44612,"timestamp":76936344,"id":1316,"parentId":1246,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668441,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":44919,"timestamp":76936687,"id":1319,"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/handle-segment-mismatch.js","layer":"app-pages-browser"},"startTime":1767933668441,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":45606,"timestamp":76936777,"id":1320,"parentId":1252,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668441,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":46303,"timestamp":76936860,"id":1321,"parentId":1252,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668442,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":27852,"timestamp":76956415,"id":1323,"parentId":1252,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668461,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":28084,"timestamp":76956508,"id":1324,"parentId":1184,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/index.ts","layer":"app-pages-browser"},"startTime":1767933668461,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":27986,"timestamp":76957322,"id":1330,"parentId":1302,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ModeToggle.tsx","layer":"app-pages-browser"},"startTime":1767933668462,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":28658,"timestamp":76957488,"id":1331,"parentId":1302,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/FilePreview.tsx","layer":"app-pages-browser"},"startTime":1767933668462,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":29479,"timestamp":76957674,"id":1332,"parentId":1302,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/QueuePreview.tsx","layer":"app-pages-browser"},"startTime":1767933668462,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":31604,"timestamp":76956213,"id":1322,"parentId":1252,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668461,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":31153,"timestamp":76956947,"id":1326,"parentId":1302,"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":1767933668462,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8250,"timestamp":76993509,"id":1333,"parentId":1242,"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":1767933668498,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9540,"timestamp":76993858,"id":1335,"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":1767933668499,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10406,"timestamp":76993937,"id":1336,"parentId":1262,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668499,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8395,"timestamp":76996221,"id":1338,"parentId":1236,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8996,"timestamp":76996129,"id":1337,"parentId":1236,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933668501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9125,"timestamp":76996291,"id":1339,"parentId":1279,"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":1767933668501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9121,"timestamp":76996527,"id":1342,"parentId":1278,"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":1767933668501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9261,"timestamp":76996598,"id":1343,"parentId":1278,"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":1767933668501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9437,"timestamp":76996666,"id":1344,"parentId":1278,"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":1767933668501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9951,"timestamp":76996722,"id":1345,"parentId":1278,"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":1767933668501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10519,"timestamp":76996375,"id":1340,"parentId":1279,"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":1767933668501,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13635,"timestamp":76993762,"id":1334,"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/image-external.js","layer":"app-pages-browser"},"startTime":1767933668498,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":16513,"timestamp":76996454,"id":1341,"parentId":1308,"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":1767933668501,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":5673,"timestamp":77008802,"id":1346,"parentId":1303,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageItem.tsx","layer":"app-pages-browser"},"startTime":1767933668513,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5486,"timestamp":77009234,"id":1349,"parentId":1280,"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":1767933668514,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5634,"timestamp":77009297,"id":1350,"parentId":1280,"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":1767933668514,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":15266,"timestamp":77009074,"id":1348,"parentId":1303,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/StreamingMessage.tsx","layer":"app-pages-browser"},"startTime":1767933668514,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15902,"timestamp":77009349,"id":1351,"parentId":1280,"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":1767933668514,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":16705,"timestamp":77008982,"id":1347,"parentId":1307,"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":1767933668514,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12465,"timestamp":77015942,"id":1352,"parentId":1330,"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":1767933668521,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":12507,"timestamp":77016082,"id":1353,"parentId":1331,"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":1767933668521,"traceId":"28dfff25676795b0"}]
|
|
14
|
-
[{"name":"build-module-js","duration":12611,"timestamp":77016145,"id":1354,"parentId":1332,"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":1767933668521,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2819,"timestamp":77030516,"id":1355,"parentId":1280,"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":1767933668535,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4590,"timestamp":77033712,"id":1357,"parentId":1280,"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":1767933668538,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4643,"timestamp":77033892,"id":1360,"parentId":1281,"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":1767933668539,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4813,"timestamp":77033942,"id":1361,"parentId":1282,"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":1767933668539,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4982,"timestamp":77033998,"id":1362,"parentId":1281,"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":1767933668539,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5146,"timestamp":77034071,"id":1363,"parentId":1280,"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":1767933668539,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5849,"timestamp":77033606,"id":1356,"parentId":1280,"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":1767933668538,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7999,"timestamp":77033775,"id":1358,"parentId":1346,"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":1767933668538,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8249,"timestamp":77033840,"id":1359,"parentId":1348,"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":1767933668539,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3125,"timestamp":77039715,"id":1364,"parentId":1282,"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":1767933668544,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3239,"timestamp":77039907,"id":1366,"parentId":1282,"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":1767933668545,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5715,"timestamp":77039836,"id":1365,"parentId":1282,"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":1767933668545,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2886,"timestamp":77046933,"id":1367,"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/chevron-down.js","layer":"app-pages-browser"},"startTime":1767933668552,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4515,"timestamp":77047074,"id":1368,"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/chevron-right.js","layer":"app-pages-browser"},"startTime":1767933668552,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5078,"timestamp":77047139,"id":1369,"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/file.js","layer":"app-pages-browser"},"startTime":1767933668552,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":6911,"timestamp":77049934,"id":1370,"parentId":1346,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MarkdownRenderer.tsx","layer":"app-pages-browser"},"startTime":1767933668555,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8245,"timestamp":77050233,"id":1372,"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.js","layer":"app-pages-browser"},"startTime":1767933668555,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8497,"timestamp":77050293,"id":1373,"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/refresh-cw.js","layer":"app-pages-browser"},"startTime":1767933668555,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8732,"timestamp":77050404,"id":1375,"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/message-square-plus.js","layer":"app-pages-browser"},"startTime":1767933668555,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9225,"timestamp":77050347,"id":1374,"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/copy.js","layer":"app-pages-browser"},"startTime":1767933668555,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7710,"timestamp":77052508,"id":1377,"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/play.js","layer":"app-pages-browser"},"startTime":1767933668557,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8146,"timestamp":77052392,"id":1376,"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/chevron-left.js","layer":"app-pages-browser"},"startTime":1767933668557,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8261,"timestamp":77052600,"id":1378,"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/table.js","layer":"app-pages-browser"},"startTime":1767933668557,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":11816,"timestamp":77050117,"id":1371,"parentId":1348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/AskUserQuestionBlock.tsx","layer":"app-pages-browser"},"startTime":1767933668555,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4001,"timestamp":77067711,"id":1379,"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/circle-check-big.js","layer":"app-pages-browser"},"startTime":1767933668572,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4435,"timestamp":77067841,"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/circle-x.js","layer":"app-pages-browser"},"startTime":1767933668573,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4808,"timestamp":77067906,"id":1381,"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/clock.js","layer":"app-pages-browser"},"startTime":1767933668573,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3736,"timestamp":77069319,"id":1383,"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/eye-off.js","layer":"app-pages-browser"},"startTime":1767933668574,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3973,"timestamp":77069394,"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/file-text.js","layer":"app-pages-browser"},"startTime":1767933668574,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4421,"timestamp":77069220,"id":1382,"parentId":1371,"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":1767933668574,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2324,"timestamp":77074270,"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/save.js","layer":"app-pages-browser"},"startTime":1767933668579,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4081,"timestamp":77074413,"id":1386,"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":1767933668579,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2357,"timestamp":77076727,"id":1387,"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":1767933668581,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1080,"timestamp":77079211,"id":1390,"parentId":1299,"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":1767933668584,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1369,"timestamp":77079352,"id":1391,"parentId":1299,"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":1767933668584,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4117,"timestamp":77076846,"id":1388,"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":1767933668582,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4308,"timestamp":77076951,"id":1389,"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":1767933668582,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2533,"timestamp":77079455,"id":1392,"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":1767933668584,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2566,"timestamp":77082390,"id":1393,"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":1767933668587,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2762,"timestamp":77082483,"id":1394,"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":1767933668587,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1505,"timestamp":77086125,"id":1395,"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":1767933668591,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1264,"timestamp":77088638,"id":1398,"parentId":1266,"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":1767933668593,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":4604,"timestamp":77086344,"id":1397,"parentId":1274,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/usePreviewStore.ts","layer":"app-pages-browser"},"startTime":1767933668591,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":12300,"timestamp":77086227,"id":1396,"parentId":1273,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useChatStore.ts","layer":"app-pages-browser"},"startTime":1767933668591,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":17548,"timestamp":77099390,"id":1399,"parentId":1266,"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":1767933668604,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":5116,"timestamp":77123026,"id":1401,"parentId":1371,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/checkbox.tsx","layer":"app-pages-browser"},"startTime":1767933668628,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":6038,"timestamp":77122814,"id":1400,"parentId":1371,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/radio-group.tsx","layer":"app-pages-browser"},"startTime":1767933668627,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":75768,"timestamp":77130968,"id":1405,"parentId":1276,"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":1767933668636,"traceId":"28dfff25676795b0"},{"name":"build-module-tsx","duration":80848,"timestamp":77130542,"id":1402,"parentId":1371,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/label.tsx","layer":"app-pages-browser"},"startTime":1767933668635,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":81062,"timestamp":77130779,"id":1403,"parentId":1326,"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":1767933668635,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":81309,"timestamp":77130872,"id":1404,"parentId":1326,"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":1767933668636,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6893,"timestamp":77222435,"id":1409,"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":1767933668727,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10190,"timestamp":77222210,"id":1407,"parentId":1339,"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":1767933668727,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":11234,"timestamp":77221972,"id":1406,"parentId":1323,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668727,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":14142,"timestamp":77222331,"id":1408,"parentId":1334,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1767933668727,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7819,"timestamp":77238234,"id":1410,"parentId":1401,"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":1767933668743,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7898,"timestamp":77238358,"id":1411,"parentId":1400,"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":1767933668743,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3197,"timestamp":77248289,"id":1413,"parentId":1408,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668753,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4575,"timestamp":77251562,"id":1422,"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":1767933668756,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8355,"timestamp":77248376,"id":1414,"parentId":1408,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668753,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8669,"timestamp":77248460,"id":1415,"parentId":1408,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668753,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9145,"timestamp":77248613,"id":1417,"parentId":1336,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668753,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9491,"timestamp":77248693,"id":1418,"parentId":1347,"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":1767933668753,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9704,"timestamp":77248784,"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/hammer.js","layer":"app-pages-browser"},"startTime":1767933668753,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9963,"timestamp":77248861,"id":1420,"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/message-circle-question.js","layer":"app-pages-browser"},"startTime":1767933668754,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":10751,"timestamp":77250337,"id":1421,"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/chevron-up.js","layer":"app-pages-browser"},"startTime":1767933668755,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":15370,"timestamp":77248164,"id":1412,"parentId":1408,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668753,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":33667,"timestamp":77248536,"id":1416,"parentId":1334,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668753,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":4141,"timestamp":77289800,"id":1423,"parentId":1324,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/project.ts","layer":"app-pages-browser"},"startTime":1767933668794,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":20190,"timestamp":77294040,"id":1424,"parentId":1412,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668799,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":20514,"timestamp":77294172,"id":1425,"parentId":1412,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668799,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":20807,"timestamp":77294260,"id":1426,"parentId":1412,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668799,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":20922,"timestamp":77294349,"id":1427,"parentId":1324,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/preview.ts","layer":"app-pages-browser"},"startTime":1767933668799,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":20998,"timestamp":77294687,"id":1429,"parentId":1358,"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":1767933668799,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":21219,"timestamp":77294780,"id":1430,"parentId":1358,"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":1767933668799,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":18187,"timestamp":77298127,"id":1431,"parentId":1358,"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":1767933668803,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13046,"timestamp":77304205,"id":1432,"parentId":1358,"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":1767933668809,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13256,"timestamp":77304385,"id":1433,"parentId":1358,"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":1767933668809,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":13491,"timestamp":77304483,"id":1434,"parentId":1358,"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":1767933668809,"traceId":"28dfff25676795b0"},{"name":"build-module-ts","duration":26948,"timestamp":77294526,"id":1428,"parentId":1324,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/chat.ts","layer":"app-pages-browser"},"startTime":1767933668799,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":17791,"timestamp":77304580,"id":1435,"parentId":1334,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668809,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":632,"timestamp":77323942,"id":1436,"parentId":1370,"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":1767933668829,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2200,"timestamp":77328976,"id":1439,"parentId":1370,"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":1767933668834,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3597,"timestamp":77328736,"id":1437,"parentId":1407,"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":1767933668833,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3757,"timestamp":77328876,"id":1438,"parentId":1411,"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":1767933668834,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3507,"timestamp":77333390,"id":1440,"parentId":1416,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1767933668838,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4021,"timestamp":77333509,"id":1441,"parentId":1407,"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":1767933668838,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2359,"timestamp":77342465,"id":1442,"parentId":1437,"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":1767933668847,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3597,"timestamp":77345226,"id":1443,"parentId":1436,"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":1767933668850,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":5871,"timestamp":77366873,"id":1444,"parentId":1401,"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":1767933668872,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":2422,"timestamp":77376310,"id":1446,"parentId":1402,"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":1767933668881,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":6571,"timestamp":77375291,"id":1445,"parentId":1400,"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":1767933668880,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1025,"timestamp":77390723,"id":1448,"parentId":1220,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933668895,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2040,"timestamp":77390429,"id":1447,"parentId":1212,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933668895,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2151,"timestamp":77390789,"id":1449,"parentId":1439,"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":1767933668895,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":584,"timestamp":77413621,"id":1450,"parentId":1443,"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":1767933668918,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1077,"timestamp":77421344,"id":1451,"parentId":1443,"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":1767933668926,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1126,"timestamp":77421610,"id":1452,"parentId":1443,"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":1767933668926,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":701,"timestamp":77434225,"id":1453,"parentId":1443,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.js","layer":"app-pages-browser"},"startTime":1767933668939,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":701,"timestamp":77439798,"id":1454,"parentId":1443,"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":1767933668944,"traceId":"28dfff25676795b0"}]
|
|
15
|
-
[{"name":"build-module-js","duration":825,"timestamp":77461979,"id":1455,"parentId":1443,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.js","layer":"app-pages-browser"},"startTime":1767933668967,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":811,"timestamp":77470719,"id":1456,"parentId":1443,"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":1767933668975,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1027,"timestamp":77474228,"id":1457,"parentId":1443,"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":1767933668979,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1916,"timestamp":77475489,"id":1458,"parentId":1448,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933668980,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3431,"timestamp":77475558,"id":1459,"parentId":1447,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1767933668980,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":3819149,"timestamp":73660646,"id":984,"parentId":978,"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":1767933665165,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":3819130,"timestamp":73660680,"id":985,"parentId":978,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1767933665165,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":3819213,"timestamp":73660606,"id":983,"parentId":978,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1767933665165,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":3819938,"timestamp":73659905,"id":979,"parentId":978,"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":1767933665165,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":3819161,"timestamp":73660699,"id":986,"parentId":978,"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":1767933665165,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":3819148,"timestamp":73660719,"id":987,"parentId":978,"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":1767933665165,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":3818925,"timestamp":73660949,"id":989,"parentId":978,"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":1767933665166,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":3819465,"timestamp":73660443,"id":981,"parentId":978,"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":1767933665165,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":3819539,"timestamp":73660389,"id":980,"parentId":978,"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":1767933665165,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":497,"timestamp":77480450,"id":1460,"parentId":1449,"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":1767933668985,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":646,"timestamp":77482089,"id":1461,"parentId":1449,"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":1767933668987,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3692,"timestamp":77483578,"id":1462,"parentId":1450,"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":1767933668988,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":906,"timestamp":77490777,"id":1463,"parentId":1444,"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":1767933668995,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":2179,"timestamp":77497191,"id":1464,"parentId":1444,"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":1767933669002,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1681,"timestamp":77510078,"id":1465,"parentId":1444,"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":1767933669015,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":3013,"timestamp":77522478,"id":1466,"parentId":1444,"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":1767933669027,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1222,"timestamp":77533940,"id":1467,"parentId":1444,"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":1767933669039,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1387,"timestamp":77542386,"id":1468,"parentId":1444,"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":1767933669047,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":4660,"timestamp":77547211,"id":1469,"parentId":1444,"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":1767933669052,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":893,"timestamp":77553455,"id":1470,"parentId":1444,"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":1767933669058,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":715,"timestamp":77557188,"id":1471,"parentId":1451,"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":1767933669062,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1024,"timestamp":77557349,"id":1472,"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":1767933669062,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":999,"timestamp":77562803,"id":1473,"parentId":1446,"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":1767933669067,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5560,"timestamp":77564400,"id":1474,"parentId":1453,"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":1767933669069,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":11779,"timestamp":77580710,"id":1475,"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":1767933669085,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1083,"timestamp":77597192,"id":1476,"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":1767933669102,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1441,"timestamp":77597367,"id":1477,"parentId":1454,"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":1767933669102,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3051,"timestamp":77599939,"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":1767933669105,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":898,"timestamp":77607892,"id":1479,"parentId":1456,"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":1767933669113,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1093,"timestamp":77608095,"id":1480,"parentId":1460,"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":1767933669113,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":719,"timestamp":77615082,"id":1481,"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":1767933669120,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1391,"timestamp":77626161,"id":1482,"parentId":1462,"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":1767933669131,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":692,"timestamp":77636915,"id":1483,"parentId":1462,"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":1767933669142,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1107,"timestamp":77645952,"id":1484,"parentId":1462,"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":1767933669151,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1576,"timestamp":77646236,"id":1485,"parentId":1462,"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":1767933669151,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1321,"timestamp":77669663,"id":1486,"parentId":1462,"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":1767933669174,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1380,"timestamp":77669937,"id":1487,"parentId":1462,"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":1767933669175,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":688,"timestamp":77676699,"id":1488,"parentId":1462,"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":1767933669181,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1799,"timestamp":77686334,"id":1489,"parentId":1461,"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":1767933669191,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":588,"timestamp":77690356,"id":1490,"parentId":1461,"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":1767933669195,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":730,"timestamp":77698745,"id":1491,"parentId":1461,"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":1767933669203,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":677,"timestamp":77702402,"id":1492,"parentId":1461,"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":1767933669207,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":402,"timestamp":77707132,"id":1493,"parentId":1461,"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":1767933669212,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":379,"timestamp":77708765,"id":1494,"parentId":1461,"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":1767933669213,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1125,"timestamp":77710929,"id":1495,"parentId":1461,"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":1767933669216,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1053,"timestamp":77714591,"id":1496,"parentId":1462,"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":1767933669219,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1152,"timestamp":77714791,"id":1497,"parentId":1474,"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":1767933669219,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":814,"timestamp":77719789,"id":1498,"parentId":1466,"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":1767933669224,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3622,"timestamp":77722829,"id":1499,"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":1767933669227,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3679,"timestamp":77723058,"id":1500,"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":1767933669228,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1078,"timestamp":77732482,"id":1501,"parentId":1466,"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":1767933669237,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3930,"timestamp":77738338,"id":1502,"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":1767933669243,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1575,"timestamp":77753837,"id":1503,"parentId":1481,"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":1767933669259,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2692,"timestamp":77754118,"id":1504,"parentId":1481,"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":1767933669259,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1479,"timestamp":77757354,"id":1505,"parentId":1481,"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":1767933669262,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":806,"timestamp":77777660,"id":1506,"parentId":1474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/bail@2.0.2/node_modules/bail/index.js","layer":"app-pages-browser"},"startTime":1767933669282,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":760,"timestamp":77780456,"id":1507,"parentId":1474,"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":1767933669285,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":392,"timestamp":77782847,"id":1508,"parentId":1474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.js","layer":"app-pages-browser"},"startTime":1767933669288,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1323,"timestamp":77784573,"id":1509,"parentId":1474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/extend@3.0.2/node_modules/extend/index.js","layer":"app-pages-browser"},"startTime":1767933669289,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":2815,"timestamp":77791636,"id":1510,"parentId":1470,"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":1767933669296,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":907,"timestamp":77798597,"id":1511,"parentId":1483,"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":1767933669303,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":564,"timestamp":77803064,"id":1512,"parentId":1477,"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":1767933669308,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2696,"timestamp":77804187,"id":1513,"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":1767933669309,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1011,"timestamp":77810868,"id":1514,"parentId":1485,"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":1767933669316,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1646,"timestamp":77813451,"id":1515,"parentId":1485,"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":1767933669318,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1108,"timestamp":77816274,"id":1516,"parentId":1485,"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":1767933669321,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1262,"timestamp":77816409,"id":1517,"parentId":1485,"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":1767933669321,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1372,"timestamp":77816513,"id":1518,"parentId":1485,"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":1767933669321,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1497,"timestamp":77816606,"id":1519,"parentId":1485,"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":1767933669321,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4058,"timestamp":77819416,"id":1520,"parentId":1485,"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":1767933669324,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4799,"timestamp":77819626,"id":1521,"parentId":1485,"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":1767933669324,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4825,"timestamp":77819814,"id":1522,"parentId":1485,"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":1767933669324,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1762,"timestamp":77834887,"id":1523,"parentId":1485,"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":1767933669340,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":2495,"timestamp":77842950,"id":1524,"parentId":1473,"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":1767933669348,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":603,"timestamp":77847827,"id":1525,"parentId":1480,"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":1767933669352,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":584,"timestamp":77851564,"id":1526,"parentId":1480,"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":1767933669356,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":587,"timestamp":77852550,"id":1527,"parentId":1480,"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":1767933669357,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":501,"timestamp":77855145,"id":1528,"parentId":1480,"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":1767933669360,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":530,"timestamp":77856984,"id":1529,"parentId":1480,"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":1767933669362,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1019,"timestamp":77862438,"id":1530,"parentId":1479,"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":1767933669367,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1445,"timestamp":77862698,"id":1531,"parentId":1487,"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":1767933669367,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":1072,"timestamp":77872538,"id":1533,"parentId":1475,"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":1767933669377,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":15328,"timestamp":77866324,"id":1532,"parentId":1475,"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":1767933669371,"traceId":"28dfff25676795b0"},{"name":"build-module-mjs","duration":902,"timestamp":77885926,"id":1534,"parentId":1475,"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":1767933669391,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1458,"timestamp":77886107,"id":1535,"parentId":1488,"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":1767933669391,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2692,"timestamp":77888491,"id":1536,"parentId":1490,"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":1767933669393,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2886,"timestamp":77888623,"id":1537,"parentId":1490,"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":1767933669393,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2263,"timestamp":77896156,"id":1538,"parentId":1491,"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":1767933669401,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3198,"timestamp":77896303,"id":1539,"parentId":1491,"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":1767933669401,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2009,"timestamp":77905687,"id":1540,"parentId":1492,"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":1767933669410,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3138,"timestamp":77906093,"id":1541,"parentId":1492,"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":1767933669411,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4036,"timestamp":77906289,"id":1542,"parentId":1493,"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":1767933669411,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":8357,"timestamp":77906470,"id":1543,"parentId":1493,"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":1767933669411,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2051,"timestamp":77918344,"id":1544,"parentId":1494,"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":1767933669423,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1783,"timestamp":77921523,"id":1545,"parentId":1495,"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":1767933669426,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1868,"timestamp":77921756,"id":1546,"parentId":1495,"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":1767933669426,"traceId":"28dfff25676795b0"}]
|
|
16
|
-
[{"name":"build-module-js","duration":1411,"timestamp":77924800,"id":1547,"parentId":1496,"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":1767933669429,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":739,"timestamp":77928778,"id":1548,"parentId":1502,"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":1767933669433,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":986,"timestamp":77928933,"id":1549,"parentId":1489,"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":1767933669434,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1434,"timestamp":77931128,"id":1550,"parentId":1503,"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":1767933669436,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1023,"timestamp":77933706,"id":1551,"parentId":1505,"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":1767933669438,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1086,"timestamp":77933837,"id":1552,"parentId":1505,"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":1767933669439,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2911,"timestamp":77940405,"id":1553,"parentId":1505,"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":1767933669445,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2967,"timestamp":77940626,"id":1554,"parentId":1505,"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":1767933669445,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3033,"timestamp":77940822,"id":1555,"parentId":1505,"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":1767933669445,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3495,"timestamp":77941034,"id":1556,"parentId":1505,"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":1767933669446,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3620,"timestamp":77941236,"id":1557,"parentId":1505,"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":1767933669446,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3718,"timestamp":77941430,"id":1558,"parentId":1505,"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":1767933669446,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4008,"timestamp":77941615,"id":1559,"parentId":1505,"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":1767933669446,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":981,"timestamp":77947534,"id":1560,"parentId":1505,"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":1767933669452,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":940,"timestamp":77950039,"id":1561,"parentId":1505,"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":1767933669455,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1196,"timestamp":77950243,"id":1562,"parentId":1505,"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":1767933669455,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2766,"timestamp":77959204,"id":1563,"parentId":1505,"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":1767933669464,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3454,"timestamp":77959482,"id":1564,"parentId":1505,"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":1767933669464,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3754,"timestamp":77959655,"id":1565,"parentId":1505,"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":1767933669464,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3846,"timestamp":77959824,"id":1566,"parentId":1505,"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":1767933669464,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3914,"timestamp":77959994,"id":1567,"parentId":1505,"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":1767933669465,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4008,"timestamp":77960189,"id":1568,"parentId":1505,"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":1767933669465,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4575,"timestamp":77960351,"id":1569,"parentId":1505,"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":1767933669465,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2008,"timestamp":77970682,"id":1570,"parentId":1505,"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":1767933669475,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2056,"timestamp":77970967,"id":1571,"parentId":1505,"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":1767933669476,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2154,"timestamp":77971211,"id":1572,"parentId":1505,"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":1767933669476,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":805,"timestamp":77978283,"id":1573,"parentId":1505,"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":1767933669483,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1020,"timestamp":77984936,"id":1574,"parentId":1496,"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":1767933669490,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1320,"timestamp":77991301,"id":1575,"parentId":1508,"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":1767933669496,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1679,"timestamp":77998529,"id":1576,"parentId":1514,"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":1767933669503,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1859,"timestamp":77998693,"id":1577,"parentId":1514,"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":1767933669503,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2585,"timestamp":77998803,"id":1578,"parentId":1504,"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":1767933669503,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2753,"timestamp":77998902,"id":1579,"parentId":1515,"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":1767933669504,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2881,"timestamp":77998999,"id":1580,"parentId":1520,"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":1767933669504,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3314,"timestamp":77999133,"id":1581,"parentId":1521,"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":1767933669504,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3566,"timestamp":77999232,"id":1582,"parentId":1521,"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":1767933669504,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":658,"timestamp":78006098,"id":1583,"parentId":1523,"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":1767933669511,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1676,"timestamp":78007188,"id":1584,"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":1767933669512,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1068,"timestamp":78010857,"id":1585,"parentId":1504,"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":1767933669516,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3296,"timestamp":78014702,"id":1586,"parentId":1525,"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":1767933669519,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2557,"timestamp":78022066,"id":1587,"parentId":1526,"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":1767933669527,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2921,"timestamp":78022321,"id":1588,"parentId":1527,"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":1767933669527,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4457,"timestamp":78022517,"id":1589,"parentId":1528,"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":1767933669527,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2513,"timestamp":78028766,"id":1590,"parentId":1529,"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":1767933669533,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6387,"timestamp":78032519,"id":1591,"parentId":1530,"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":1767933669537,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1333,"timestamp":78044345,"id":1592,"parentId":1543,"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":1767933669549,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1661,"timestamp":78044522,"id":1593,"parentId":1543,"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":1767933669549,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2029,"timestamp":78044631,"id":1594,"parentId":1559,"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":1767933669549,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":690,"timestamp":78051820,"id":1595,"parentId":1532,"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":1767933669556,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":604,"timestamp":78053790,"id":1596,"parentId":1532,"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":1767933669558,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":526,"timestamp":78055514,"id":1597,"parentId":1532,"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":1767933669560,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":499,"timestamp":78059444,"id":1598,"parentId":1535,"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":1767933669564,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1709,"timestamp":78067177,"id":1599,"parentId":1536,"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":1767933669572,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":727,"timestamp":78076521,"id":1600,"parentId":1538,"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":1767933669581,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":670,"timestamp":78079978,"id":1601,"parentId":1538,"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":1767933669585,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":717,"timestamp":78082786,"id":1602,"parentId":1538,"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":1767933669587,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":763,"timestamp":78089553,"id":1603,"parentId":1541,"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":1767933669594,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":706,"timestamp":78090755,"id":1604,"parentId":1541,"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":1767933669595,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":451,"timestamp":78091497,"id":1605,"parentId":1584,"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":1767933669596,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1464,"timestamp":78095289,"id":1606,"parentId":1585,"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":1767933669600,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2286,"timestamp":78095428,"id":1607,"parentId":1585,"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":1767933669600,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2654,"timestamp":78095529,"id":1608,"parentId":1572,"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":1767933669600,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":748,"timestamp":78101920,"id":1609,"parentId":1595,"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":1767933669607,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":756,"timestamp":78102078,"id":1610,"parentId":1596,"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":1767933669607,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":794,"timestamp":78102189,"id":1611,"parentId":1595,"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":1767933669607,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":891,"timestamp":78107404,"id":1612,"parentId":1597,"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":1767933669612,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2314,"timestamp":78107602,"id":1613,"parentId":1574,"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":1767933669612,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":709,"timestamp":78113383,"id":1614,"parentId":1578,"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":1767933669618,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":524,"timestamp":78115472,"id":1615,"parentId":1584,"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":1767933669620,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":819,"timestamp":78118539,"id":1616,"parentId":1598,"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":1767933669623,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":757,"timestamp":78121826,"id":1617,"parentId":1586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/ccount@2.0.1/node_modules/ccount/index.js","layer":"app-pages-browser"},"startTime":1767933669626,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":537,"timestamp":78124542,"id":1618,"parentId":1586,"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":1767933669629,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":401,"timestamp":78128137,"id":1619,"parentId":1589,"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":1767933669633,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2027,"timestamp":78130117,"id":1620,"parentId":1589,"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":1767933669635,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":859,"timestamp":78133906,"id":1621,"parentId":1591,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/index.js","layer":"app-pages-browser"},"startTime":1767933669639,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":477,"timestamp":78136210,"id":1622,"parentId":1591,"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":1767933669641,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":798,"timestamp":78139831,"id":1623,"parentId":1591,"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":1767933669644,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":871,"timestamp":78141611,"id":1624,"parentId":1591,"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":1767933669646,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":446,"timestamp":78144089,"id":1625,"parentId":1591,"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":1767933669649,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2003,"timestamp":78146948,"id":1626,"parentId":1600,"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":1767933669652,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2622,"timestamp":78147104,"id":1627,"parentId":1600,"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":1767933669652,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2817,"timestamp":78147207,"id":1628,"parentId":1600,"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":1767933669652,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3122,"timestamp":78147298,"id":1629,"parentId":1600,"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":1767933669652,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3396,"timestamp":78147395,"id":1630,"parentId":1600,"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":1767933669652,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4782,"timestamp":78151676,"id":1631,"parentId":1600,"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":1767933669656,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5040,"timestamp":78151869,"id":1632,"parentId":1600,"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":1767933669657,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5390,"timestamp":78152047,"id":1633,"parentId":1600,"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":1767933669657,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5940,"timestamp":78152212,"id":1634,"parentId":1600,"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":1767933669657,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":975,"timestamp":78162100,"id":1635,"parentId":1600,"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":1767933669667,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1864,"timestamp":78165429,"id":1636,"parentId":1600,"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":1767933669670,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2057,"timestamp":78165566,"id":1637,"parentId":1600,"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":1767933669670,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5031,"timestamp":78165676,"id":1638,"parentId":1600,"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":1767933669670,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6372,"timestamp":78165768,"id":1639,"parentId":1600,"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":1767933669670,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7081,"timestamp":78165860,"id":1640,"parentId":1600,"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":1767933669671,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2544,"timestamp":78174070,"id":1641,"parentId":1600,"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":1767933669679,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2652,"timestamp":78174238,"id":1642,"parentId":1600,"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":1767933669679,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2820,"timestamp":78174342,"id":1643,"parentId":1600,"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":1767933669679,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3149,"timestamp":78174437,"id":1644,"parentId":1600,"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":1767933669679,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1550,"timestamp":78180676,"id":1645,"parentId":1600,"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":1767933669685,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1390,"timestamp":78183516,"id":1646,"parentId":1600,"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":1767933669688,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1766,"timestamp":78183653,"id":1647,"parentId":1600,"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":1767933669688,"traceId":"28dfff25676795b0"}]
|
|
17
|
-
[{"name":"build-module-js","duration":2133,"timestamp":78183755,"id":1648,"parentId":1606,"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":1767933669688,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1481,"timestamp":78191444,"id":1649,"parentId":1615,"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":1767933669696,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2595,"timestamp":78191584,"id":1650,"parentId":1618,"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":1767933669696,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3308,"timestamp":78191686,"id":1651,"parentId":1619,"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":1767933669696,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2969,"timestamp":78196816,"id":1652,"parentId":1619,"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":1767933669701,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9341,"timestamp":78206208,"id":1653,"parentId":1621,"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":1767933669711,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":9641,"timestamp":78206471,"id":1654,"parentId":1621,"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":1767933669711,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":906,"timestamp":78237534,"id":1655,"parentId":1621,"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":1767933669742,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2018,"timestamp":78248877,"id":1656,"parentId":1621,"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":1767933669754,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2432,"timestamp":78249162,"id":1657,"parentId":1622,"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":1767933669754,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3849,"timestamp":78253063,"id":1658,"parentId":1651,"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":1767933669758,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4199,"timestamp":78253306,"id":1659,"parentId":1651,"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":1767933669758,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4774,"timestamp":78253505,"id":1660,"parentId":1651,"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":1767933669758,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4913,"timestamp":78253701,"id":1661,"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":1767933669758,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5167,"timestamp":78253895,"id":1662,"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":1767933669759,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5802,"timestamp":78254129,"id":1663,"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":1767933669759,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6298,"timestamp":78254324,"id":1664,"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":1767933669759,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":6718,"timestamp":78254513,"id":1665,"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":1767933669759,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7232,"timestamp":78254693,"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/heading.js","layer":"app-pages-browser"},"startTime":1767933669759,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":7316,"timestamp":78254877,"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/html.js","layer":"app-pages-browser"},"startTime":1767933669760,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2246,"timestamp":78273450,"id":1668,"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":1767933669778,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2584,"timestamp":78273627,"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/image-reference.js","layer":"app-pages-browser"},"startTime":1767933669778,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3078,"timestamp":78273741,"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/inline-code.js","layer":"app-pages-browser"},"startTime":1767933669778,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3551,"timestamp":78273838,"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/link.js","layer":"app-pages-browser"},"startTime":1767933669779,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3772,"timestamp":78273931,"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/link-reference.js","layer":"app-pages-browser"},"startTime":1767933669779,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4132,"timestamp":78274092,"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/list.js","layer":"app-pages-browser"},"startTime":1767933669779,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4416,"timestamp":78274219,"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/list-item.js","layer":"app-pages-browser"},"startTime":1767933669779,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4492,"timestamp":78274314,"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/paragraph.js","layer":"app-pages-browser"},"startTime":1767933669779,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3370,"timestamp":78289309,"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/root.js","layer":"app-pages-browser"},"startTime":1767933669794,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3839,"timestamp":78289572,"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/strong.js","layer":"app-pages-browser"},"startTime":1767933669794,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4025,"timestamp":78289719,"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/thematic-break.js","layer":"app-pages-browser"},"startTime":1767933669794,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4063,"timestamp":78289891,"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/text.js","layer":"app-pages-browser"},"startTime":1767933669795,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4192,"timestamp":78290074,"id":1680,"parentId":1651,"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":1767933669795,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4413,"timestamp":78290259,"id":1681,"parentId":1651,"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":1767933669795,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":4811,"timestamp":78290465,"id":1682,"parentId":1651,"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":1767933669795,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":5577,"timestamp":78290661,"id":1683,"parentId":1651,"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":1767933669795,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1433,"timestamp":78300899,"id":1684,"parentId":1651,"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":1767933669806,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2562,"timestamp":78301182,"id":1685,"parentId":1651,"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":1767933669806,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1653,"timestamp":78305045,"id":1686,"parentId":1651,"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":1767933669810,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2393,"timestamp":78305277,"id":1687,"parentId":1654,"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":1767933669810,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2284,"timestamp":78314184,"id":1688,"parentId":1654,"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":1767933669819,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2513,"timestamp":78314369,"id":1689,"parentId":1654,"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":1767933669819,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":3375,"timestamp":78314483,"id":1690,"parentId":1654,"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":1767933669819,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1254,"timestamp":78331490,"id":1691,"parentId":1654,"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":1767933669836,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1260,"timestamp":78333775,"id":1692,"parentId":1654,"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":1767933669838,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2376,"timestamp":78342092,"id":1693,"parentId":1635,"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":1767933669847,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1283,"timestamp":78345182,"id":1694,"parentId":1636,"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":1767933669850,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1514,"timestamp":78350227,"id":1695,"parentId":1636,"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":1767933669855,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1192,"timestamp":78352952,"id":1696,"parentId":1636,"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":1767933669858,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":761,"timestamp":78356928,"id":1697,"parentId":1636,"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":1767933669862,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1161,"timestamp":78360728,"id":1698,"parentId":1659,"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":1767933669865,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1400,"timestamp":78360939,"id":1699,"parentId":1638,"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":1767933669866,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2027,"timestamp":78363608,"id":1700,"parentId":1659,"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":1767933669868,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2217,"timestamp":78363816,"id":1701,"parentId":1662,"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":1767933669868,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2263,"timestamp":78364040,"id":1702,"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/check-fence.js","layer":"app-pages-browser"},"startTime":1767933669869,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":2320,"timestamp":78364233,"id":1703,"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/util/check-quote.js","layer":"app-pages-browser"},"startTime":1767933669869,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1547,"timestamp":78370268,"id":1704,"parentId":1665,"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":1767933669875,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1562,"timestamp":78370519,"id":1705,"parentId":1665,"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":1767933669875,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1271,"timestamp":78373497,"id":1706,"parentId":1665,"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":1767933669878,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1608,"timestamp":78373706,"id":1707,"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/format-link-as-autolink.js","layer":"app-pages-browser"},"startTime":1767933669878,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1223,"timestamp":78376903,"id":1708,"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/check-bullet.js","layer":"app-pages-browser"},"startTime":1767933669882,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1464,"timestamp":78377147,"id":1709,"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/check-bullet-other.js","layer":"app-pages-browser"},"startTime":1767933669882,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1661,"timestamp":78379537,"id":1710,"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/check-bullet-ordered.js","layer":"app-pages-browser"},"startTime":1767933669884,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1704,"timestamp":78379762,"id":1711,"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/check-rule.js","layer":"app-pages-browser"},"startTime":1767933669884,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1875,"timestamp":78379959,"id":1712,"parentId":1674,"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":1767933669885,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1021,"timestamp":78384711,"id":1713,"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/check-strong.js","layer":"app-pages-browser"},"startTime":1767933669889,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":1076,"timestamp":78384950,"id":1714,"parentId":1678,"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":1767933669890,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":705,"timestamp":78395764,"id":1715,"parentId":1650,"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":1767933669900,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":671,"timestamp":78398147,"id":1716,"parentId":1651,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zwitch@2.0.4/node_modules/zwitch/index.js","layer":"app-pages-browser"},"startTime":1767933669903,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":518,"timestamp":78400502,"id":1717,"parentId":1663,"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":1767933669905,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":354,"timestamp":78402613,"id":1718,"parentId":1676,"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":1767933669907,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":973,"timestamp":78404388,"id":1719,"parentId":1693,"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":1767933669909,"traceId":"28dfff25676795b0"},{"name":"build-module-js","duration":931,"timestamp":78410438,"id":1720,"parentId":1718,"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":1767933669915,"traceId":"28dfff25676795b0"},{"name":"add-entry","duration":4758639,"timestamp":73660889,"id":988,"parentId":978,"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":1767933665166,"traceId":"28dfff25676795b0"},{"name":"make","duration":4760472,"timestamp":73659416,"id":978,"parentId":977,"tags":{},"startTime":1767933665164,"traceId":"28dfff25676795b0"},{"name":"chunk-graph","duration":19957,"timestamp":78507221,"id":1722,"parentId":1721,"tags":{},"startTime":1767933670012,"traceId":"28dfff25676795b0"},{"name":"optimize-modules","duration":47,"timestamp":78527364,"id":1724,"parentId":1721,"tags":{},"startTime":1767933670032,"traceId":"28dfff25676795b0"},{"name":"optimize-chunks","duration":23691,"timestamp":78530214,"id":1726,"parentId":1721,"tags":{},"startTime":1767933670035,"traceId":"28dfff25676795b0"},{"name":"optimize-tree","duration":225,"timestamp":78554079,"id":1727,"parentId":1721,"tags":{},"startTime":1767933670059,"traceId":"28dfff25676795b0"},{"name":"optimize-chunk-modules","duration":42348,"timestamp":78554465,"id":1728,"parentId":1721,"tags":{},"startTime":1767933670059,"traceId":"28dfff25676795b0"},{"name":"optimize","duration":69688,"timestamp":78527279,"id":1723,"parentId":1721,"tags":{},"startTime":1767933670032,"traceId":"28dfff25676795b0"},{"name":"module-hash","duration":29565,"timestamp":78625037,"id":1729,"parentId":1721,"tags":{},"startTime":1767933670130,"traceId":"28dfff25676795b0"},{"name":"code-generation","duration":346954,"timestamp":78654685,"id":1730,"parentId":1721,"tags":{},"startTime":1767933670159,"traceId":"28dfff25676795b0"},{"name":"hash","duration":40014,"timestamp":79007290,"id":1731,"parentId":1721,"tags":{},"startTime":1767933670512,"traceId":"28dfff25676795b0"},{"name":"code-generation-jobs","duration":731,"timestamp":79047297,"id":1732,"parentId":1721,"tags":{},"startTime":1767933670552,"traceId":"28dfff25676795b0"},{"name":"module-assets","duration":1100,"timestamp":79047936,"id":1733,"parentId":1721,"tags":{},"startTime":1767933670553,"traceId":"28dfff25676795b0"},{"name":"create-chunk-assets","duration":18810,"timestamp":79049068,"id":1734,"parentId":1721,"tags":{},"startTime":1767933670554,"traceId":"28dfff25676795b0"},{"name":"NextJsBuildManifest-generateClientManifest","duration":8109,"timestamp":79086357,"id":1736,"parentId":977,"tags":{},"startTime":1767933670591,"traceId":"28dfff25676795b0"},{"name":"NextJsBuildManifest-createassets","duration":21803,"timestamp":79072686,"id":1735,"parentId":977,"tags":{},"startTime":1767933670577,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":112844,"timestamp":79190856,"id":1739,"parentId":1737,"tags":{"name":"static/chunks/main-app-3ee073768a1a6456.js","cache":"MISS"},"startTime":1767933670696,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":111908,"timestamp":79191871,"id":1742,"parentId":1737,"tags":{"name":"static/chunks/pages/_error-6444830a044a065f.js","cache":"MISS"},"startTime":1767933670697,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":112162,"timestamp":79191675,"id":1741,"parentId":1737,"tags":{"name":"static/chunks/pages/_app-56f4e2c3e0cd5b77.js","cache":"MISS"},"startTime":1767933670696,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":111826,"timestamp":79192057,"id":1743,"parentId":1737,"tags":{"name":"static/chunks/app/layout-1baeb8f9d4de0f96.js","cache":"MISS"},"startTime":1767933670697,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":112699,"timestamp":79191229,"id":1740,"parentId":1737,"tags":{"name":"static/chunks/app/_not-found/page-1314fe1ff92ee0aa.js","cache":"MISS"},"startTime":1767933670696,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":111648,"timestamp":79192395,"id":1744,"parentId":1737,"tags":{"name":"static/chunks/app/page-45d16b01bae4f054.js","cache":"MISS"},"startTime":1767933670697,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":104592,"timestamp":79208584,"id":1746,"parentId":1737,"tags":{"name":"static/chunks/app/settings/page-fcd1413e20a94bf7.js","cache":"MISS"},"startTime":1767933670713,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":103797,"timestamp":79209440,"id":1747,"parentId":1737,"tags":{"name":"static/chunks/webpack-9b8a6c078d6e8803.js","cache":"MISS"},"startTime":1767933670714,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":243370,"timestamp":79165503,"id":1738,"parentId":1737,"tags":{"name":"static/chunks/main-ff9852398b1f3782.js","cache":"MISS"},"startTime":1767933670670,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":246644,"timestamp":79195870,"id":1745,"parentId":1737,"tags":{"name":"static/chunks/app/project/[id]/page-8be5c9acb4084fea.js","cache":"MISS"},"startTime":1767933670701,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":224712,"timestamp":79225110,"id":1750,"parentId":1737,"tags":{"name":"static/chunks/992-bf52afd3d0de90b0.js","cache":"MISS"},"startTime":1767933670730,"traceId":"28dfff25676795b0"},{"name":"minify-js","duration":397448,"timestamp":79209834,"id":1748,"parentId":1737,"tags":{"name":"static/chunks/framework-63d70eb4e76697e6.js","cache":"MISS"},"startTime":1767933670715,"traceId":"28dfff25676795b0"}]
|
|
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"}]
|