claudeship 0.2.20 → 0.2.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apps/server/dist/chat/chat.controller.d.ts +1 -1
- package/apps/server/dist/chat/chat.service.d.ts +1 -1
- package/apps/server/dist/database/database.module.js +15 -4
- package/apps/server/dist/database/database.module.js.map +1 -1
- package/apps/server/dist/database/infra/database-infra.controller.d.ts +14 -0
- package/apps/server/dist/database/infra/database-infra.controller.js +121 -0
- package/apps/server/dist/database/infra/database-infra.controller.js.map +1 -0
- package/apps/server/dist/database/infra/database-infra.service.d.ts +34 -0
- package/apps/server/dist/database/infra/database-infra.service.js +130 -0
- package/apps/server/dist/database/infra/database-infra.service.js.map +1 -0
- package/apps/server/dist/database/infra/docker.service.d.ts +34 -0
- package/apps/server/dist/database/infra/docker.service.js +186 -0
- package/apps/server/dist/database/infra/docker.service.js.map +1 -0
- package/apps/server/dist/database/infra/index.d.ts +4 -0
- package/apps/server/dist/database/infra/index.js +21 -0
- package/apps/server/dist/database/infra/index.js.map +1 -0
- package/apps/server/dist/database/infra/postgres-container.service.d.ts +31 -0
- package/apps/server/dist/database/infra/postgres-container.service.js +163 -0
- package/apps/server/dist/database/infra/postgres-container.service.js.map +1 -0
- package/apps/server/dist/database/infra/sqlite-infra.service.d.ts +14 -0
- package/apps/server/dist/database/infra/sqlite-infra.service.js +121 -0
- package/apps/server/dist/database/infra/sqlite-infra.service.js.map +1 -0
- package/apps/server/dist/project/project.controller.d.ts +7 -0
- package/apps/server/dist/project/project.module.js +2 -1
- package/apps/server/dist/project/project.module.js.map +1 -1
- package/apps/server/dist/project/project.service.d.ts +10 -1
- package/apps/server/dist/project/project.service.js +35 -3
- package/apps/server/dist/project/project.service.js.map +1 -1
- package/apps/server/dist/tsconfig.tsbuildinfo +1 -1
- package/apps/server/package.json +1 -1
- package/apps/server/prisma/dev.db +0 -0
- package/apps/server/prisma/migrations/20260109053359_add_database_provider/migration.sql +11 -0
- package/apps/server/prisma/schema.prisma +16 -5
- package/apps/web/.next/BUILD_ID +1 -1
- package/apps/web/.next/app-build-manifest.json +8 -8
- package/apps/web/.next/build-manifest.json +2 -2
- package/apps/web/.next/cache/.previewinfo +1 -1
- package/apps/web/.next/cache/.rscinfo +1 -1
- package/apps/web/.next/cache/.tsbuildinfo +1 -1
- package/apps/web/.next/cache/config.json +3 -3
- package/apps/web/.next/cache/eslint/.cache_j3uhuz +1 -1
- package/apps/web/.next/cache/webpack/client-production/0.pack +0 -0
- package/apps/web/.next/cache/webpack/client-production/index.pack +0 -0
- package/apps/web/.next/cache/webpack/edge-server-production/index.pack +0 -0
- package/apps/web/.next/cache/webpack/server-production/0.pack +0 -0
- package/apps/web/.next/cache/webpack/server-production/index.pack +0 -0
- package/apps/web/.next/prerender-manifest.json +13 -13
- package/apps/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/apps/web/.next/server/app/_not-found.html +1 -1
- package/apps/web/.next/server/app/_not-found.rsc +2 -2
- package/apps/web/.next/server/app/index.html +1 -1
- package/apps/web/.next/server/app/index.rsc +3 -3
- package/apps/web/.next/server/app/page.js +1 -1
- package/apps/web/.next/server/app/page.js.nft.json +1 -1
- package/apps/web/.next/server/app/page_client-reference-manifest.js +1 -1
- package/apps/web/.next/server/app/project/[id]/page.js +2 -2
- package/apps/web/.next/server/app/project/[id]/page.js.nft.json +1 -1
- package/apps/web/.next/server/app/project/[id]/page_client-reference-manifest.js +1 -1
- package/apps/web/.next/server/app/settings/page.js +2 -2
- package/apps/web/.next/server/app/settings/page.js.nft.json +1 -1
- package/apps/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
- package/apps/web/.next/server/app/settings.html +1 -1
- package/apps/web/.next/server/app/settings.rsc +3 -3
- package/apps/web/.next/server/chunks/{811.js → 526.js} +1 -1
- package/apps/web/.next/server/pages/404.html +1 -1
- package/apps/web/.next/server/pages/500.html +1 -1
- package/apps/web/.next/server/server-reference-manifest.json +1 -1
- package/apps/web/.next/static/chunks/193-9e44b5a1ad3e0586.js +1 -0
- package/apps/web/.next/static/chunks/700-75e1212e819e279c.js +1 -0
- package/apps/web/.next/static/chunks/app/page-6f2bfb6c9202164b.js +1 -0
- package/apps/web/.next/static/chunks/app/project/[id]/page-388d14835cae411b.js +1 -0
- package/apps/web/.next/static/chunks/app/settings/page-34c4ce9b8e645903.js +1 -0
- package/apps/web/.next/static/css/70f2a13cf3d254d8.css +3 -0
- package/apps/web/.next/trace +18 -18
- package/apps/web/package.json +1 -1
- package/apps/web/src/app/settings/page.tsx +138 -2
- package/apps/web/src/components/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 → WuTLXdJlN3bwUMxmeSPVx}/_buildManifest.js +0 -0
- /package/apps/web/.next/static/{91tvQbwE6MrVEkEolpLDW → WuTLXdJlN3bwUMxmeSPVx}/_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":317,"timestamp":95768189,"id":4,"parentId":1,"tags":{},"startTime":1768268597703,"traceId":"606b740dac8ad442"},{"name":"load-custom-routes","duration":516,"timestamp":95768666,"id":5,"parentId":1,"tags":{},"startTime":1768268597703,"traceId":"606b740dac8ad442"},{"name":"create-dist-dir","duration":43068,"timestamp":95913351,"id":6,"parentId":1,"tags":{},"startTime":1768268597848,"traceId":"606b740dac8ad442"},{"name":"create-pages-mapping","duration":277,"timestamp":95962918,"id":7,"parentId":1,"tags":{},"startTime":1768268597898,"traceId":"606b740dac8ad442"},{"name":"collect-app-files","duration":2968,"timestamp":95963241,"id":8,"parentId":1,"tags":{},"startTime":1768268597898,"traceId":"606b740dac8ad442"},{"name":"create-app-mapping","duration":1576,"timestamp":95966237,"id":9,"parentId":1,"tags":{},"startTime":1768268597901,"traceId":"606b740dac8ad442"},{"name":"create-app-layouts","duration":175,"timestamp":95967849,"id":10,"parentId":1,"tags":{},"startTime":1768268597903,"traceId":"606b740dac8ad442"},{"name":"collect-default-files","duration":681,"timestamp":95969272,"id":12,"parentId":1,"tags":{},"startTime":1768268597904,"traceId":"606b740dac8ad442"},{"name":"generate-route-types","duration":18423,"timestamp":95968407,"id":11,"parentId":1,"tags":{},"startTime":1768268597903,"traceId":"606b740dac8ad442"},{"name":"public-dir-conflict-check","duration":745,"timestamp":95986940,"id":13,"parentId":1,"tags":{},"startTime":1768268597922,"traceId":"606b740dac8ad442"},{"name":"generate-routes-manifest","duration":2697,"timestamp":95987911,"id":14,"parentId":1,"tags":{},"startTime":1768268597923,"traceId":"606b740dac8ad442"},{"name":"create-entrypoints","duration":30641,"timestamp":97071411,"id":18,"parentId":16,"tags":{},"startTime":1768268599006,"traceId":"606b740dac8ad442"},{"name":"generate-webpack-config","duration":143819,"timestamp":97102313,"id":19,"parentId":17,"tags":{},"startTime":1768268599037,"traceId":"606b740dac8ad442"},{"name":"next-trace-entrypoint-plugin","duration":3670,"timestamp":97381734,"id":21,"parentId":20,"tags":{},"startTime":1768268599317,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":54815,"timestamp":97511619,"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":1768268599446,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":147439,"timestamp":97513871,"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":1768268599449,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":319,"timestamp":97670968,"id":37,"parentId":35,"tags":{"name":"react/jsx-runtime","layer":null},"startTime":1768268599606,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":116,"timestamp":97671355,"id":38,"parentId":35,"tags":{"name":"react","layer":null},"startTime":1768268599606,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":185694,"timestamp":97510420,"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":1768268599445,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2586,"timestamp":97806840,"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":1768268599742,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3580,"timestamp":97807402,"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":1768268599742,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9081,"timestamp":97807768,"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":1768268599743,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12006,"timestamp":97807963,"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/pretty-bytes.js","layer":"pages-dir-node"},"startTime":1768268599743,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15388,"timestamp":97808072,"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/is-error.js","layer":"pages-dir-node"},"startTime":1768268599743,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":422750,"timestamp":97496595,"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":1768268599431,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":431721,"timestamp":97509638,"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":1768268599444,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14245,"timestamp":97953118,"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":1768268599888,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14723,"timestamp":97953184,"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":1768268599888,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":41195,"timestamp":97952624,"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":1768268599887,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":41450,"timestamp":97952974,"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":1768268599888,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":53,"timestamp":97995636,"id":49,"parentId":30,"tags":{"name":"path","layer":null},"startTime":1768268599930,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":27,"timestamp":97995763,"id":50,"parentId":30,"tags":{"name":"next/dist/shared/lib/router/utils/app-paths","layer":null},"startTime":1768268599931,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":30,"timestamp":97995806,"id":51,"parentId":30,"tags":{"name":"next/dist/shared/lib/router/utils/is-bot","layer":null},"startTime":1768268599931,"traceId":"606b740dac8ad442"},{"name":"build-module-external","duration":17,"timestamp":97995850,"id":52,"parentId":30,"tags":{"name":"next/dist/shared/lib/no-fallback-error.external","layer":null},"startTime":1768268599931,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":48870,"timestamp":97952809,"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":1768268599888,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16781,"timestamp":97995884,"id":53,"parentId":43,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268599931,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12416,"timestamp":98004606,"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":1768268599939,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13437,"timestamp":98004773,"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":1768268599940,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":624850,"timestamp":97510230,"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":1768268599445,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":663169,"timestamp":97509983,"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":1768268599445,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1786,"timestamp":98208429,"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":1768268600143,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2197,"timestamp":98208695,"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":1768268600143,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2945,"timestamp":98208852,"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":1768268600144,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13812,"timestamp":98208929,"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":1768268600144,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16547,"timestamp":98209232,"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":1768268600144,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1499,"timestamp":98253849,"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":1768268600189,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":32016,"timestamp":98254798,"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":1768268600190,"traceId":"606b740dac8ad442"},{"name":"build-module-cjs","duration":36253,"timestamp":98254870,"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":1768268600190,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":60080,"timestamp":98246238,"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":1768268600181,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":63269,"timestamp":98247639,"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":1768268600182,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":68367,"timestamp":98247939,"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":1768268600183,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":71856,"timestamp":98248224,"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/request-meta.js","layer":"rsc"},"startTime":1768268600183,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":73474,"timestamp":98248475,"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":1768268600183,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":79218,"timestamp":98248743,"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":1768268600184,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":79176,"timestamp":98249701,"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":1768268600185,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":80617,"timestamp":98249952,"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/lib/fallback.js","layer":"rsc"},"startTime":1768268600185,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":81682,"timestamp":98250223,"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":1768268600185,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":85958,"timestamp":98250490,"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":1768268600185,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":86717,"timestamp":98250739,"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":1768268600186,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":86887,"timestamp":98251046,"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":1768268600186,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":87067,"timestamp":98251318,"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":1768268600186,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":100976,"timestamp":98251588,"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":1768268600186,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":107461,"timestamp":98252131,"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":1768268600187,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":119473,"timestamp":98252376,"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":1768268600187,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":124931,"timestamp":98252641,"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":1768268600187,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":127882,"timestamp":98252904,"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":1768268600188,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":128477,"timestamp":98253168,"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":1768268600188,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":129445,"timestamp":98253409,"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":1768268600188,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":134773,"timestamp":98253645,"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":1768268600188,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":193609,"timestamp":98208990,"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":1768268600144,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":194085,"timestamp":98209129,"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":1768268600144,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":194345,"timestamp":98209300,"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":1768268600144,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":194644,"timestamp":98209394,"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":1768268600144,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":198113,"timestamp":98208540,"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":1768268600143,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":154043,"timestamp":98253918,"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":1768268600189,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":155052,"timestamp":98254260,"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":1768268600189,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":155991,"timestamp":98254066,"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":1768268600189,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":156546,"timestamp":98254413,"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":1768268600189,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":157164,"timestamp":98254542,"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":1768268600189,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":157747,"timestamp":98254668,"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":1768268600189,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":164017,"timestamp":98251854,"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":1768268600187,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":1021879,"timestamp":97395102,"id":24,"parentId":22,"tags":{"request":"next/dist/pages/_app"},"startTime":1768268599330,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":60,"timestamp":98462204,"id":97,"parentId":59,"tags":{"name":"next/dist/compiled/next-server/pages.runtime.prod.js","layer":null},"startTime":1768268600397,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12456,"timestamp":98462311,"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":1768268600397,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17798,"timestamp":98462415,"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":1768268600397,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":19322,"timestamp":98462481,"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":1768268600397,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":21439,"timestamp":98462541,"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":1768268600397,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":21805,"timestamp":98462588,"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":1768268600397,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":22107,"timestamp":98462634,"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":1768268600397,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":57,"timestamp":98489757,"id":107,"parentId":76,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.prod.js","layer":null},"startTime":1768268600425,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2602,"timestamp":98490516,"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":1768268600425,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":29579,"timestamp":98489840,"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":1768268600425,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":58539,"timestamp":98462680,"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":1768268600397,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":59263,"timestamp":98462816,"id":105,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"rsc"},"startTime":1768268600398,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":51495,"timestamp":98471368,"id":106,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/layout.tsx","layer":"rsc"},"startTime":1768268600406,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":41860,"timestamp":98490187,"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":1768268600425,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":42144,"timestamp":98490355,"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":1768268600425,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7211,"timestamp":98548770,"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":1768268600484,"traceId":"606b740dac8ad442"},{"name":"build-module-external","duration":50,"timestamp":98564128,"id":113,"parentId":60,"tags":{"name":"../../../shared/lib/no-fallback-error.external","layer":null},"startTime":1768268600499,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2651,"timestamp":98564298,"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":1768268600499,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3178,"timestamp":98564738,"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":1768268600500,"traceId":"606b740dac8ad442"}]
|
|
2
|
+
[{"name":"build-module-js","duration":7471,"timestamp":98565026,"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":1768268600500,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13484,"timestamp":98564452,"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":1768268600499,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14482,"timestamp":98564791,"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":1768268600500,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":19850,"timestamp":98565089,"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":1768268600500,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":20541,"timestamp":98565221,"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":1768268600500,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":22191,"timestamp":98565346,"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":1768268600500,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":22857,"timestamp":98565436,"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":1768268600500,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23232,"timestamp":98565521,"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":1768268600500,"traceId":"606b740dac8ad442"},{"name":"build-module-external","duration":104,"timestamp":98629971,"id":124,"parentId":81,"tags":{"name":"./work-async-storage.external","layer":null},"startTime":1768268600565,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3995,"timestamp":98630479,"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":1768268600565,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4483,"timestamp":98630831,"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/batcher.js","layer":"pages-dir-node"},"startTime":1768268600566,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5453,"timestamp":98631157,"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/scheduler.js","layer":"pages-dir-node"},"startTime":1768268600566,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6620,"timestamp":98631458,"id":132,"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":1768268600566,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12102,"timestamp":98631753,"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/server/stream-utils/node-web-streams-helper.js","layer":"pages-dir-node"},"startTime":1768268600567,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16847,"timestamp":98630119,"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":1768268600565,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17794,"timestamp":98630567,"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/batcher.js","layer":"rsc"},"startTime":1768268600565,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":20646,"timestamp":98630894,"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/scheduler.js","layer":"rsc"},"startTime":1768268600566,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":21291,"timestamp":98631220,"id":131,"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":1768268600566,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":40772,"timestamp":98631517,"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/server/stream-utils/node-web-streams-helper.js","layer":"rsc"},"startTime":1768268600566,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":48119,"timestamp":98631808,"id":135,"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":1768268600567,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":48489,"timestamp":98631934,"id":136,"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":1768268600567,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":48778,"timestamp":98632158,"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":1768268600567,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":52093,"timestamp":98632071,"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":1768268600567,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":54959,"timestamp":98632296,"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":1768268600567,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":999,"timestamp":98720684,"id":140,"parentId":134,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268600655,"traceId":"606b740dac8ad442"},{"name":"build-module-external","duration":54,"timestamp":98727046,"id":141,"parentId":82,"tags":{"name":"./work-unit-async-storage.external","layer":null},"startTime":1768268600662,"traceId":"606b740dac8ad442"},{"name":"build-module-external","duration":14,"timestamp":98727126,"id":142,"parentId":82,"tags":{"name":"../app-render/action-async-storage.external","layer":null},"startTime":1768268600662,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":31774,"timestamp":98727624,"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/server/request/search-params.js","layer":"rsc"},"startTime":1768268600662,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":66926,"timestamp":98727857,"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":1768268600663,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":73298,"timestamp":98728225,"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/app-render/collect-segment-data.js","layer":"rsc"},"startTime":1768268600663,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":92258,"timestamp":98728458,"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/lib/patch-fetch.js","layer":"rsc"},"startTime":1768268600663,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":95363,"timestamp":98727155,"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":1768268600662,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":95576,"timestamp":98727367,"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-page.js","layer":"rsc"},"startTime":1768268600662,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":95850,"timestamp":98727499,"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/client/components/client-segment.js","layer":"rsc"},"startTime":1768268600662,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":96332,"timestamp":98728105,"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":1768268600663,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1772,"timestamp":98865596,"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":1768268600800,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8741,"timestamp":98865051,"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":1768268600800,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9124,"timestamp":98865354,"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":1768268600800,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":13034,"timestamp":98862219,"id":151,"parentId":33,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"rsc"},"startTime":1768268600797,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11507,"timestamp":98865662,"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":1768268600800,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11845,"timestamp":98865800,"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":1768268600801,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12207,"timestamp":98865943,"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":1768268600801,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12881,"timestamp":98866098,"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":1768268600801,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13153,"timestamp":98866359,"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":1768268600801,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17041,"timestamp":98866229,"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":1768268600801,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4108,"timestamp":98901443,"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":1768268600836,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4309,"timestamp":98901666,"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":1768268600836,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10923,"timestamp":98906360,"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":1768268600841,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11658,"timestamp":98906750,"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":1768268600842,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11838,"timestamp":98906931,"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":1768268600842,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17438,"timestamp":98906049,"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":1768268600841,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":21278,"timestamp":98906230,"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":1768268600841,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":27574,"timestamp":98906553,"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":1768268600841,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5446,"timestamp":98956269,"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":1768268600891,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1631,"timestamp":98998976,"id":171,"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":1768268600934,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3819,"timestamp":98998667,"id":170,"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":1768268600933,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4013,"timestamp":98999065,"id":172,"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":1768268600934,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5385,"timestamp":98999361,"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/is-dynamic.js","layer":"pages-dir-node"},"startTime":1768268600934,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6374,"timestamp":98999424,"id":175,"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":1768268600934,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7240,"timestamp":98999522,"id":176,"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":1768268600934,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3844,"timestamp":99012320,"id":181,"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":1768268600947,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":20891,"timestamp":98999279,"id":173,"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":1768268600934,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":21703,"timestamp":98999585,"id":177,"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":1768268600934,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":22166,"timestamp":98999643,"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":1768268600934,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23262,"timestamp":98999702,"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":1768268600935,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":23852,"timestamp":98999790,"id":180,"parentId":32,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"rsc"},"startTime":1768268600935,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2474,"timestamp":99048836,"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":1768268600984,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3997,"timestamp":99049304,"id":184,"parentId":134,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268600984,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5794,"timestamp":99048956,"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":1768268600984,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6392,"timestamp":99049373,"id":185,"parentId":133,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268600984,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":18304,"timestamp":99049614,"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":1768268600984,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":18638,"timestamp":99049730,"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":1768268600985,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4467,"timestamp":99079425,"id":188,"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":1768268601014,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5530,"timestamp":99079645,"id":189,"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":1768268601014,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5351,"timestamp":99080114,"id":193,"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":1768268601015,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5459,"timestamp":99080237,"id":194,"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":1768268601015,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6789,"timestamp":99080053,"id":192,"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":1768268601015,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7883,"timestamp":99080464,"id":197,"parentId":134,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268601015,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8615,"timestamp":99080508,"id":198,"parentId":133,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268601015,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9254,"timestamp":99080401,"id":196,"parentId":133,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268601015,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12971,"timestamp":99080355,"id":195,"parentId":134,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268601015,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":26636,"timestamp":99079911,"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/request/utils.js","layer":"rsc"},"startTime":1768268601015,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":36723,"timestamp":99079780,"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/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1768268601015,"traceId":"606b740dac8ad442"},{"name":"build-module-external","duration":69,"timestamp":99133846,"id":199,"parentId":147,"tags":{"name":"../app-render/dynamic-access-async-storage.external","layer":null},"startTime":1768268601069,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2408,"timestamp":99135123,"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":1768268601070,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7223,"timestamp":99133946,"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":1768268601069,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8471,"timestamp":99134286,"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":1768268601069,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11896,"timestamp":99134579,"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":1768268601069,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12931,"timestamp":99135185,"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":1768268601070,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17654,"timestamp":99134820,"id":203,"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":1768268601070,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":18393,"timestamp":99134970,"id":204,"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":1768268601070,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5616,"timestamp":99154835,"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":1768268601090,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1309,"timestamp":99175305,"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":1768268601110,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2740,"timestamp":99178080,"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":1768268601113,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8309,"timestamp":99177775,"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":1768268601113,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8435,"timestamp":99178147,"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":1768268601113,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8509,"timestamp":99178632,"id":214,"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":1768268601113,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10406,"timestamp":99178374,"id":212,"parentId":203,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268601113,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10747,"timestamp":99178507,"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":1768268601113,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11494,"timestamp":99178836,"id":215,"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":1768268601114,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12773,"timestamp":99178940,"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":1768268601114,"traceId":"606b740dac8ad442"}]
|
|
3
|
+
[{"name":"build-module-js","duration":13799,"timestamp":99179068,"id":217,"parentId":174,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268601114,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14898,"timestamp":99179139,"id":218,"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":1768268601114,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7400,"timestamp":99203121,"id":219,"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":1768268601138,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":21058,"timestamp":99213972,"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/lib/metadata/resolve-metadata.js","layer":"rsc"},"startTime":1768268601149,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":21349,"timestamp":99214278,"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/lib/framework/boundary-constants.js","layer":"rsc"},"startTime":1768268601149,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":22445,"timestamp":99214498,"id":223,"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":1768268601149,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":33529,"timestamp":99212677,"id":220,"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":1768268601147,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":32597,"timestamp":99214703,"id":224,"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":1768268601150,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":33005,"timestamp":99214816,"id":225,"parentId":106,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"rsc"},"startTime":1768268601150,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6818,"timestamp":99281384,"id":227,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/basic.js","layer":"rsc"},"startTime":1768268601216,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10074,"timestamp":99281174,"id":226,"parentId":220,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268601216,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":1897880,"timestamp":97395269,"id":29,"parentId":22,"tags":{"request":"next/dist/pages/_document"},"startTime":1768268599330,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6060,"timestamp":99291650,"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":1768268601226,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9633,"timestamp":99291973,"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":1768268601227,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10450,"timestamp":99292281,"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":1768268601227,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13411,"timestamp":99292535,"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":1768268601227,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15240,"timestamp":99292891,"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":1768268601228,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":18388,"timestamp":99292763,"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":1768268601228,"traceId":"606b740dac8ad442"},{"name":"build-module-cjs","duration":2429,"timestamp":99323164,"id":234,"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":1768268601258,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2618,"timestamp":99323247,"id":235,"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":1768268601258,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2791,"timestamp":99323291,"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/head-manager-context.js","layer":"pages-dir-node"},"startTime":1768268601258,"traceId":"606b740dac8ad442"},{"name":"build-module-css","duration":2556,"timestamp":99323720,"id":239,"parentId":106,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":"rsc"},"startTime":1768268601259,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6777,"timestamp":99323333,"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":1768268601258,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13389,"timestamp":99323592,"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":1768268601258,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1117,"timestamp":99342182,"id":241,"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":1768268601277,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17765,"timestamp":99341921,"id":240,"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/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1768268601277,"traceId":"606b740dac8ad442"},{"name":"build-module-external","duration":34,"timestamp":99361511,"id":242,"parentId":191,"tags":{"name":"../app-render/after-task-async-storage.external","layer":null},"startTime":1768268601296,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2693,"timestamp":99362467,"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":1768268601297,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3039,"timestamp":99362741,"id":249,"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":1768268601298,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5910,"timestamp":99361860,"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":1768268601297,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6033,"timestamp":99362252,"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":1768268601297,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7915,"timestamp":99362526,"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":1768268601297,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8371,"timestamp":99362790,"id":250,"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":1768268601298,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":24563,"timestamp":99362107,"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":1768268601297,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":27236,"timestamp":99362990,"id":251,"parentId":190,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268601298,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":29998,"timestamp":99361572,"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":1768268601296,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3035,"timestamp":99403026,"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":1768268601338,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4065,"timestamp":99403115,"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":1768268601338,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":88298,"timestamp":99438270,"id":254,"parentId":221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268601373,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":89850,"timestamp":99438601,"id":255,"parentId":215,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268601373,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":90606,"timestamp":99438841,"id":256,"parentId":221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268601374,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":91551,"timestamp":99439101,"id":257,"parentId":221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268601374,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4187,"timestamp":99534177,"id":264,"parentId":188,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268601469,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1824,"timestamp":99541614,"id":265,"parentId":221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268601476,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6210,"timestamp":99566582,"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":1768268601501,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9586,"timestamp":99566924,"id":267,"parentId":221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268601502,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12383,"timestamp":99567221,"id":268,"parentId":221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268601502,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":19015,"timestamp":99567470,"id":269,"parentId":221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268601502,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23907,"timestamp":99567706,"id":270,"parentId":221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268601503,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1865,"timestamp":99617383,"id":271,"parentId":227,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268601552,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6430,"timestamp":99617724,"id":272,"parentId":221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268601553,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1584,"timestamp":99628857,"id":273,"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":1768268601564,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5220,"timestamp":99629212,"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":1768268601564,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8872,"timestamp":99655049,"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":1768268601590,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9427,"timestamp":99655340,"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":1768268601590,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9794,"timestamp":99655597,"id":282,"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":1768268601590,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13330,"timestamp":99654661,"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":1768268601589,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16125,"timestamp":99655123,"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":1768268601590,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16533,"timestamp":99655396,"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":1768268601590,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16864,"timestamp":99655654,"id":283,"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":1768268601590,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":28804,"timestamp":99654889,"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":1768268601590,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":128206,"timestamp":99654241,"id":275,"parentId":241,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268601589,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":37,"timestamp":99797566,"id":284,"parentId":275,"tags":{"name":"util","layer":null},"startTime":1768268601732,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":20065,"timestamp":99797635,"id":285,"parentId":215,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268601732,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":20940,"timestamp":99797981,"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":1768268601733,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":26074,"timestamp":99798261,"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":1768268601733,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3148,"timestamp":99866441,"id":288,"parentId":272,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268601801,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4476,"timestamp":99866681,"id":289,"parentId":272,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268601801,"traceId":"606b740dac8ad442"},{"name":"font-loader","duration":372453,"timestamp":99521689,"id":263,"parentId":262,"tags":{},"startTime":1768268601456,"traceId":"606b740dac8ad442"},{"name":"font-loader","duration":406691,"timestamp":99496288,"id":261,"parentId":260,"tags":{},"startTime":1768268601431,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":970,"timestamp":99903096,"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":1768268601838,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5918,"timestamp":99906623,"id":292,"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":1768268601841,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6593,"timestamp":99906776,"id":293,"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":1768268601842,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12120,"timestamp":99906867,"id":294,"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":1768268601842,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13027,"timestamp":99906485,"id":291,"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":1768268601841,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6166,"timestamp":99914627,"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/router/utils/get-next-pathname-info.js","layer":"pages-dir-node"},"startTime":1768268601849,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7159,"timestamp":99914791,"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/router/utils/get-next-pathname-info.js","layer":"rsc"},"startTime":1768268601850,"traceId":"606b740dac8ad442"},{"name":"postcss","duration":7520,"timestamp":100232835,"id":297,"parentId":262,"tags":{},"startTime":1768268602168,"traceId":"606b740dac8ad442"},{"name":"postcss","duration":3206,"timestamp":100237161,"id":298,"parentId":260,"tags":{},"startTime":1768268602172,"traceId":"606b740dac8ad442"},{"name":"next-font-loader","duration":719583,"timestamp":99521628,"id":262,"parentId":259,"tags":{},"startTime":1768268601456,"traceId":"606b740dac8ad442"},{"name":"next-font-loader","duration":789622,"timestamp":99451596,"id":260,"parentId":258,"tags":{},"startTime":1768268601386,"traceId":"606b740dac8ad442"},{"name":"css-loader","duration":35661,"timestamp":100240616,"id":299,"parentId":259,"tags":{"astUsed":"true"},"startTime":1768268602175,"traceId":"606b740dac8ad442"},{"name":"css-loader","duration":35100,"timestamp":100241188,"id":300,"parentId":258,"tags":{"astUsed":"true"},"startTime":1768268602176,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":826605,"timestamp":99450174,"id":259,"parentId":106,"tags":{"name":"/home/runner/work/ClaudeShip/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":1768268601385,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":837638,"timestamp":99439349,"id":258,"parentId":106,"tags":{"name":"/home/runner/work/ClaudeShip/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":1768268601374,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5094,"timestamp":100281339,"id":301,"parentId":294,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268602216,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5492,"timestamp":100281588,"id":302,"parentId":295,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268602216,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4156,"timestamp":100287345,"id":305,"parentId":221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268602222,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10697,"timestamp":100281691,"id":303,"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":1768268602216,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11461,"timestamp":100281781,"id":304,"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":1768268602217,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1932,"timestamp":100300120,"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":1768268602235,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6118,"timestamp":100308794,"id":308,"parentId":294,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268602244,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10548,"timestamp":100308977,"id":309,"parentId":293,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268602244,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8364,"timestamp":100312134,"id":310,"parentId":294,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268602247,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8600,"timestamp":100313183,"id":311,"parentId":295,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268602248,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14068,"timestamp":100308571,"id":307,"parentId":293,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268602243,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10522,"timestamp":100313298,"id":312,"parentId":296,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268602248,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11457,"timestamp":100339041,"id":313,"parentId":282,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268602274,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":20884,"timestamp":100339160,"id":314,"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":"rsc"},"startTime":1768268602274,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":2965105,"timestamp":97395159,"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":1768268599330,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":2965847,"timestamp":97394428,"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":1768268599329,"traceId":"606b740dac8ad442"}]
|
|
4
|
+
[{"name":"add-entry","duration":2965081,"timestamp":97395198,"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":1768268599330,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":2965034,"timestamp":97395250,"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":1768268599330,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":2965061,"timestamp":97395226,"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":1768268599330,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":2279,"timestamp":100464333,"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":1768268602399,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":295,"timestamp":100466642,"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":1768268602401,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":831,"timestamp":100466955,"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":1768268602402,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":739,"timestamp":100467806,"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":1768268602403,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":247,"timestamp":100468565,"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":1768268602403,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":264,"timestamp":100468827,"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":1768268602404,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":241,"timestamp":100469107,"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":1768268602404,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":268,"timestamp":100469364,"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":1768268602404,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":381,"timestamp":100469647,"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":1768268602404,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":269,"timestamp":100470046,"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":1768268602405,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":6489,"timestamp":100488828,"id":347,"parentId":341,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"ssr"},"startTime":1768268602424,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":11997,"timestamp":100489931,"id":349,"parentId":343,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"ssr"},"startTime":1768268602425,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":13674,"timestamp":100489806,"id":348,"parentId":345,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"ssr"},"startTime":1768268602425,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":14568,"timestamp":100490579,"id":351,"parentId":337,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"ssr"},"startTime":1768268602425,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15144,"timestamp":100490718,"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":1768268602426,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15856,"timestamp":100490786,"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":1768268602426,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16305,"timestamp":100490888,"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":1768268602426,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15742,"timestamp":100492412,"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":1768268602427,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16535,"timestamp":100492066,"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":1768268602427,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":24066,"timestamp":100490837,"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":1768268602426,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":25989,"timestamp":100490074,"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":1768268602425,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":25588,"timestamp":100492309,"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":1768268602427,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4637,"timestamp":100566161,"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":1768268602501,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9585,"timestamp":100575132,"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":1768268602510,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14166,"timestamp":100575350,"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":1768268602510,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14347,"timestamp":100575543,"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":1768268602510,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":22970,"timestamp":100574904,"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":1768268602510,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23525,"timestamp":100575725,"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":1768268602511,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23928,"timestamp":100575811,"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":1768268602511,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":26153,"timestamp":100575892,"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":1768268602511,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5200,"timestamp":100628118,"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":1768268602563,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6360,"timestamp":100628402,"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":1768268602563,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6063,"timestamp":100629193,"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":1768268602564,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15771,"timestamp":100628971,"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":1768268602564,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16262,"timestamp":100629104,"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":1768268602564,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16290,"timestamp":100629368,"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":1768268602564,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17644,"timestamp":100628796,"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":1768268602564,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":25411,"timestamp":100628621,"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":1768268602563,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4078,"timestamp":100682062,"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":1768268602617,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10495,"timestamp":100679796,"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":1768268602615,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8869,"timestamp":100682261,"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":1768268602617,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9990,"timestamp":100682332,"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":1768268602617,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10211,"timestamp":100682534,"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":1768268602617,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11443,"timestamp":100682432,"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":1768268602617,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11793,"timestamp":100682743,"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/bfcache.js","layer":"ssr"},"startTime":1768268602618,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12583,"timestamp":100682646,"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/use-action-queue.js","layer":"ssr"},"startTime":1768268602617,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12679,"timestamp":100682847,"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/unresolved-thenable.js","layer":"ssr"},"startTime":1768268602618,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13545,"timestamp":100683061,"id":385,"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":1768268602618,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14252,"timestamp":100682946,"id":384,"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":1768268602618,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9953,"timestamp":100691414,"id":387,"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":1768268602626,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11059,"timestamp":100691282,"id":386,"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":1768268602626,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3665,"timestamp":100715979,"id":391,"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":1768268602651,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3083,"timestamp":100716872,"id":392,"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":1768268602652,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6449,"timestamp":100715628,"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":1768268602650,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6648,"timestamp":100715791,"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/shared/lib/is-thenable.js","layer":"ssr"},"startTime":1768268602651,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7337,"timestamp":100715886,"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":1768268602651,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4184,"timestamp":100724355,"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":1768268602659,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5284,"timestamp":100724228,"id":393,"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/client/components/redirect-error.js","layer":"ssr"},"startTime":1768268602659,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7110,"timestamp":100724533,"id":396,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"ssr"},"startTime":1768268602659,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10363,"timestamp":100724447,"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":1768268602659,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6745,"timestamp":100729757,"id":397,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"ssr"},"startTime":1768268602665,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6952,"timestamp":100746482,"id":398,"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":1768268602681,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1517,"timestamp":100757759,"id":400,"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":1768268602693,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1525,"timestamp":100757955,"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.js","layer":"ssr"},"startTime":1768268602693,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4072,"timestamp":100757559,"id":399,"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/redirect-status-code.js","layer":"ssr"},"startTime":1768268602692,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4444,"timestamp":100762691,"id":402,"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":1768268602697,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5482,"timestamp":100762816,"id":403,"parentId":397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"ssr"},"startTime":1768268602698,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1061,"timestamp":100771075,"id":404,"parentId":400,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268602706,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3273,"timestamp":100774183,"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":1768268602709,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3469,"timestamp":100775503,"id":407,"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/client/components/redirect.js","layer":"ssr"},"startTime":1768268602710,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5767,"timestamp":100775386,"id":406,"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/client/components/navigation.js","layer":"ssr"},"startTime":1768268602710,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1418,"timestamp":100791381,"id":414,"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":1768268602726,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":5303,"timestamp":100788492,"id":408,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/Header.tsx","layer":"ssr"},"startTime":1768268602723,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":6974,"timestamp":100788742,"id":409,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectModal.tsx","layer":"ssr"},"startTime":1768268602724,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":7217,"timestamp":100788952,"id":410,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectList.tsx","layer":"ssr"},"startTime":1768268602724,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":6509,"timestamp":100791151,"id":413,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/input.tsx","layer":"ssr"},"startTime":1768268602726,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":8855,"timestamp":100789379,"id":412,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/button.tsx","layer":"ssr"},"startTime":1768268602724,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13602,"timestamp":100791728,"id":416,"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":1768268602727,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14516,"timestamp":100791599,"id":415,"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":1768268602726,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":45962,"timestamp":100789177,"id":411,"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":1768268602724,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1205,"timestamp":100837256,"id":422,"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":1768268602772,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7812,"timestamp":100833666,"id":417,"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":1768268602768,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9329,"timestamp":100833834,"id":418,"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":1768268602769,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9903,"timestamp":100833943,"id":419,"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":1768268602769,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10776,"timestamp":100834058,"id":420,"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":1768268602769,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":18471,"timestamp":100834141,"id":421,"parentId":349,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/workspace/WorkspaceLayout.tsx","layer":"ssr"},"startTime":1768268602769,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4271,"timestamp":100872526,"id":423,"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/segment-cache/segment-value-encoding.js","layer":"ssr"},"startTime":1768268602807,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":4841,"timestamp":100872669,"id":424,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useProjectStore.ts","layer":"ssr"},"startTime":1768268602807,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":25559,"timestamp":100872792,"id":425,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/api.ts","layer":"ssr"},"startTime":1768268602808,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1556,"timestamp":100907531,"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":1768268602842,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":686,"timestamp":100911106,"id":432,"parentId":384,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268602846,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10561,"timestamp":100907819,"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/unrecognized-action-error.js","layer":"ssr"},"startTime":1768268602843,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11384,"timestamp":100907733,"id":427,"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":1768268602843,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11572,"timestamp":100907942,"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/create-href-from-url.js","layer":"ssr"},"startTime":1768268602843,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12343,"timestamp":100907886,"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/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1768268602843,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12986,"timestamp":100907990,"id":431,"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":1768268602843,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":9858,"timestamp":100927733,"id":433,"parentId":408,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/LanguageSwitcher.tsx","layer":"ssr"},"startTime":1768268602863,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14365,"timestamp":100928221,"id":435,"parentId":420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268602863,"traceId":"606b740dac8ad442"}]
|
|
5
|
+
[{"name":"build-module-tsx","duration":16700,"timestamp":100927988,"id":434,"parentId":410,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectCard.tsx","layer":"ssr"},"startTime":1768268602863,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":18874,"timestamp":100935781,"id":436,"parentId":410,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectCard.tsx","layer":"ssr"},"startTime":1768268602871,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":19836,"timestamp":100936099,"id":437,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/index.ts","layer":"ssr"},"startTime":1768268602871,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":70166,"timestamp":100964473,"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":1768268602899,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":70328,"timestamp":100964624,"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":1768268602899,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":78198,"timestamp":100964701,"id":440,"parentId":408,"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":1768268602900,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":78471,"timestamp":100964829,"id":442,"parentId":434,"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":1768268602900,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":78930,"timestamp":100964765,"id":441,"parentId":421,"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":1768268602900,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":74484,"timestamp":100969452,"id":443,"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":1768268602904,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6202,"timestamp":101061143,"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":1768268602996,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6660,"timestamp":101061468,"id":448,"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":1768268602996,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10864,"timestamp":101061382,"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/unauthorized.js","layer":"ssr"},"startTime":1768268602996,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12078,"timestamp":101061275,"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/forbidden.js","layer":"ssr"},"startTime":1768268602996,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":14082,"timestamp":101060815,"id":444,"parentId":409,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/dialog.tsx","layer":"ssr"},"startTime":1768268602996,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":783,"timestamp":101100567,"id":452,"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":1768268603035,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":6425,"timestamp":101095949,"id":450,"parentId":413,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/utils.ts","layer":"ssr"},"startTime":1768268603031,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7249,"timestamp":101096299,"id":451,"parentId":435,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268603031,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":28779,"timestamp":101078819,"id":449,"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/api/image.js","layer":"ssr"},"startTime":1768268603014,"traceId":"606b740dac8ad442"},{"name":"build-module-json","duration":1611,"timestamp":101109361,"id":454,"parentId":437,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/en.json","layer":"ssr"},"startTime":1768268603044,"traceId":"606b740dac8ad442"},{"name":"build-module-json","duration":220,"timestamp":101112024,"id":455,"parentId":437,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/ko.json","layer":"ssr"},"startTime":1768268603047,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10623,"timestamp":101109224,"id":453,"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/app-dir/link.js","layer":"ssr"},"startTime":1768268603044,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":3048,"timestamp":101132369,"id":459,"parentId":412,"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":1768268603067,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":8030,"timestamp":101130060,"id":456,"parentId":421,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ChatPanel.tsx","layer":"ssr"},"startTime":1768268603065,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7473,"timestamp":101132262,"id":458,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268603067,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10151,"timestamp":101132111,"id":457,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268603067,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":18540,"timestamp":101150338,"id":461,"parentId":421,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileViewer.tsx","layer":"ssr"},"startTime":1768268603085,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":20698,"timestamp":101150565,"id":462,"parentId":421,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileExplorer.tsx","layer":"ssr"},"startTime":1768268603085,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":26165,"timestamp":101150779,"id":463,"parentId":421,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/database/DatabasePanel.tsx","layer":"ssr"},"startTime":1768268603086,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":34126,"timestamp":101150064,"id":460,"parentId":421,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/PreviewPanel.tsx","layer":"ssr"},"startTime":1768268603085,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":41845,"timestamp":101150981,"id":464,"parentId":421,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/testing/TestRunner.tsx","layer":"ssr"},"startTime":1768268603086,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8503,"timestamp":101194445,"id":465,"parentId":458,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268603129,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":14651,"timestamp":101194632,"id":466,"parentId":421,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/checkpoint/CheckpointPanel.tsx","layer":"ssr"},"startTime":1768268603129,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10685,"timestamp":101203076,"id":467,"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":1768268603138,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8209,"timestamp":101258313,"id":468,"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":1768268603193,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":9769,"timestamp":101258492,"id":469,"parentId":421,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/env/EnvPanel.tsx","layer":"ssr"},"startTime":1768268603193,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":20506,"timestamp":101269127,"id":475,"parentId":437,"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":1768268603204,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":26322,"timestamp":101268751,"id":470,"parentId":461,"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":1768268603204,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":26554,"timestamp":101268866,"id":471,"parentId":462,"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":1768268603204,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":26860,"timestamp":101268936,"id":472,"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":1768268603204,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":27296,"timestamp":101268992,"id":473,"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":1768268603204,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":42505,"timestamp":101269072,"id":474,"parentId":464,"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":1768268603204,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":21766,"timestamp":101297167,"id":476,"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":1768268603232,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3359,"timestamp":101322323,"id":477,"parentId":468,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268603257,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6646,"timestamp":101328375,"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":1768268603263,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6795,"timestamp":101328467,"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/database.js","layer":"ssr"},"startTime":1768268603263,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6907,"timestamp":101328562,"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":1768268603263,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7529,"timestamp":101328264,"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":1768268603263,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7533,"timestamp":101328651,"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":1768268603263,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7611,"timestamp":101328895,"id":485,"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":1768268603264,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8004,"timestamp":101328801,"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/refresh-cw.js","layer":"ssr"},"startTime":1768268603264,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8173,"timestamp":101328981,"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":1768268603264,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9429,"timestamp":101328101,"id":478,"parentId":469,"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":1768268603263,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1482,"timestamp":101340308,"id":489,"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":1768268603275,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4688,"timestamp":101340046,"id":487,"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":1768268603275,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5003,"timestamp":101340202,"id":488,"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":1768268603275,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2652,"timestamp":101346193,"id":490,"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":1768268603281,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2758,"timestamp":101346374,"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/eye.js","layer":"ssr"},"startTime":1768268603281,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2930,"timestamp":101346428,"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/flask-conical.js","layer":"ssr"},"startTime":1768268603281,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3082,"timestamp":101346487,"id":494,"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":1768268603281,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3242,"timestamp":101346538,"id":495,"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":1768268603281,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3390,"timestamp":101346585,"id":496,"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":1768268603281,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3866,"timestamp":101346640,"id":497,"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":1768268603281,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5023,"timestamp":101346308,"id":491,"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":1768268603281,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2947,"timestamp":101351460,"id":498,"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":1768268603286,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3049,"timestamp":101351587,"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/sparkles.js","layer":"ssr"},"startTime":1768268603286,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3031,"timestamp":101355860,"id":502,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268603291,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":5431,"timestamp":101355641,"id":500,"parentId":434,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/card.tsx","layer":"ssr"},"startTime":1768268603290,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5870,"timestamp":101355795,"id":501,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268603291,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9728,"timestamp":101355920,"id":503,"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":1768268603291,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11820,"timestamp":101356092,"id":506,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268603291,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12838,"timestamp":101356141,"id":507,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268603291,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14645,"timestamp":101355968,"id":504,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268603291,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16239,"timestamp":101356037,"id":505,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268603291,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6307,"timestamp":101376086,"id":509,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268603311,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6894,"timestamp":101375923,"id":508,"parentId":467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-plus.js","layer":"ssr"},"startTime":1768268603311,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2024,"timestamp":101383169,"id":510,"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/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1768268603318,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":4306,"timestamp":101385292,"id":511,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageList.tsx","layer":"ssr"},"startTime":1768268603320,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4281,"timestamp":101385567,"id":513,"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/copy.js","layer":"ssr"},"startTime":1768268603320,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4457,"timestamp":101385635,"id":514,"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/chevron-down.js","layer":"ssr"},"startTime":1768268603320,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4623,"timestamp":101385692,"id":515,"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/chevron-right.js","layer":"ssr"},"startTime":1768268603320,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4720,"timestamp":101385793,"id":517,"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/folder.js","layer":"ssr"},"startTime":1768268603321,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5456,"timestamp":101385744,"id":516,"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/file.js","layer":"ssr"},"startTime":1768268603321,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":7312,"timestamp":101385444,"id":512,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageInput.tsx","layer":"ssr"},"startTime":1768268603320,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7491,"timestamp":101385846,"id":518,"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/chevron-left.js","layer":"ssr"},"startTime":1768268603321,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6311,"timestamp":101393763,"id":519,"parentId":510,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1768268603329,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2212,"timestamp":101400263,"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/play.js","layer":"ssr"},"startTime":1768268603335,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2343,"timestamp":101400369,"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/table.js","layer":"ssr"},"startTime":1768268603335,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":2540,"timestamp":101400434,"id":522,"parentId":409,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/index.ts","layer":"ssr"},"startTime":1768268603335,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4158,"timestamp":101403369,"id":524,"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/external-link.js","layer":"ssr"},"startTime":1768268603338,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4344,"timestamp":101403436,"id":525,"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/package.js","layer":"ssr"},"startTime":1768268603338,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4548,"timestamp":101403495,"id":526,"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/monitor.js","layer":"ssr"},"startTime":1768268603338,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4701,"timestamp":101403548,"id":527,"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/square.js","layer":"ssr"},"startTime":1768268603338,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4831,"timestamp":101403605,"id":528,"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/terminal.js","layer":"ssr"},"startTime":1768268603338,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4977,"timestamp":101403659,"id":529,"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/tablet.js","layer":"ssr"},"startTime":1768268603338,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5106,"timestamp":101403712,"id":530,"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/rotate-ccw.js","layer":"ssr"},"startTime":1768268603339,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5360,"timestamp":101403760,"id":531,"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/zap.js","layer":"ssr"},"startTime":1768268603339,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9159,"timestamp":101403278,"id":523,"parentId":512,"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":1768268603338,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3137,"timestamp":101430098,"id":535,"parentId":480,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/createLucideIcon.js","layer":"ssr"},"startTime":1768268603365,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4479,"timestamp":101430214,"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/circle-check-big.js","layer":"ssr"},"startTime":1768268603365,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4741,"timestamp":101430311,"id":537,"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/clock.js","layer":"ssr"},"startTime":1768268603365,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4962,"timestamp":101430411,"id":538,"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/circle-x.js","layer":"ssr"},"startTime":1768268603365,"traceId":"606b740dac8ad442"}]
|
|
6
|
+
[{"name":"build-module-js","duration":5178,"timestamp":101430501,"id":539,"parentId":476,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-text.js","layer":"ssr"},"startTime":1768268603365,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5389,"timestamp":101430584,"id":540,"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":1768268603365,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":9712,"timestamp":101428069,"id":533,"parentId":460,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ErrorOverlay.tsx","layer":"ssr"},"startTime":1768268603363,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7652,"timestamp":101430670,"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":1768268603365,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":19074,"timestamp":101438796,"id":542,"parentId":450,"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":1768268603374,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":18912,"timestamp":101440168,"id":543,"parentId":450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","layer":"ssr"},"startTime":1768268603375,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":39582,"timestamp":101427763,"id":532,"parentId":460,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ConsoleViewer.tsx","layer":"ssr"},"startTime":1768268603363,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":46991,"timestamp":101429845,"id":534,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useChatStore.ts","layer":"ssr"},"startTime":1768268603365,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":6105,"timestamp":101489724,"id":545,"parentId":460,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/usePreviewStore.ts","layer":"ssr"},"startTime":1768268603425,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7013,"timestamp":101489926,"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/normalize-trailing-slash.js","layer":"ssr"},"startTime":1768268603425,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":6335,"timestamp":101497588,"id":549,"parentId":489,"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":1768268603432,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":6830,"timestamp":101497768,"id":550,"parentId":489,"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":1768268603433,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16504,"timestamp":101489565,"id":544,"parentId":533,"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":1768268603424,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":19757,"timestamp":101490045,"id":547,"parentId":503,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/image-component.js","layer":"ssr"},"startTime":1768268603425,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":24905,"timestamp":101497415,"id":548,"parentId":532,"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":1768268603432,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13879,"timestamp":101529018,"id":551,"parentId":546,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1768268603464,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5443,"timestamp":101540590,"id":552,"parentId":547,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"ssr"},"startTime":1768268603475,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11804,"timestamp":101540911,"id":555,"parentId":509,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268603476,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12833,"timestamp":101540988,"id":556,"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":1768268603476,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13743,"timestamp":101541087,"id":557,"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":1768268603476,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12336,"timestamp":101543443,"id":558,"parentId":523,"tags":{"name":"/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":1768268603478,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":22503,"timestamp":101540733,"id":553,"parentId":547,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-img-props.js","layer":"ssr"},"startTime":1768268603476,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17184,"timestamp":101546461,"id":559,"parentId":523,"tags":{"name":"/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":1768268603481,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":34386,"timestamp":101540823,"id":554,"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/components/app-router.js","layer":"ssr"},"startTime":1768268603476,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16881,"timestamp":101581362,"id":560,"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/side-effect.js","layer":"ssr"},"startTime":1768268603516,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17179,"timestamp":101581582,"id":561,"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/amp-mode.js","layer":"ssr"},"startTime":1768268603516,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8648,"timestamp":101599513,"id":562,"parentId":555,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1768268603534,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":12801,"timestamp":101599687,"id":563,"parentId":511,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageItem.tsx","layer":"ssr"},"startTime":1768268603534,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":12820,"timestamp":101600505,"id":565,"parentId":512,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/FilePreview.tsx","layer":"ssr"},"startTime":1768268603535,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":27767,"timestamp":101600759,"id":566,"parentId":512,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/QueuePreview.tsx","layer":"ssr"},"startTime":1768268603536,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":28033,"timestamp":101600948,"id":567,"parentId":512,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ModeToggle.tsx","layer":"ssr"},"startTime":1768268603536,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":28244,"timestamp":101601220,"id":569,"parentId":522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/project.ts","layer":"ssr"},"startTime":1768268603536,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":30412,"timestamp":101601139,"id":568,"parentId":503,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-loader.js","layer":"ssr"},"startTime":1768268603536,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":36095,"timestamp":101599880,"id":564,"parentId":511,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/StreamingMessage.tsx","layer":"ssr"},"startTime":1768268603535,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":15822,"timestamp":101620694,"id":570,"parentId":522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/chat.ts","layer":"ssr"},"startTime":1768268603556,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":2885,"timestamp":101649809,"id":573,"parentId":522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/preview.ts","layer":"ssr"},"startTime":1768268603585,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7941,"timestamp":101649593,"id":571,"parentId":563,"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":1768268603584,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8206,"timestamp":101649734,"id":572,"parentId":565,"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":1768268603585,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6633,"timestamp":101653119,"id":579,"parentId":547,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config.js","layer":"ssr"},"startTime":1768268603588,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7112,"timestamp":101653176,"id":580,"parentId":535,"tags":{"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":1768268603588,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7971,"timestamp":101652954,"id":577,"parentId":535,"tags":{"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":1768268603588,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8231,"timestamp":101653052,"id":578,"parentId":548,"tags":{"name":"/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":1768268603588,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17908,"timestamp":101652731,"id":574,"parentId":566,"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":1768268603588,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":18047,"timestamp":101652832,"id":575,"parentId":567,"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":1768268603588,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":18434,"timestamp":101652897,"id":576,"parentId":564,"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":1768268603588,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":54988,"timestamp":101672483,"id":581,"parentId":461,"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":1768268603607,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5870,"timestamp":101738193,"id":583,"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/client/components/promise-queue.js","layer":"ssr"},"startTime":1768268603673,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9265,"timestamp":101738303,"id":584,"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/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1768268603673,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12407,"timestamp":101737984,"id":582,"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/image-blur-svg.js","layer":"ssr"},"startTime":1768268603673,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13575,"timestamp":101738577,"id":587,"parentId":556,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268603673,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14464,"timestamp":101738661,"id":588,"parentId":556,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268603673,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15845,"timestamp":101738751,"id":589,"parentId":556,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268603674,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15395,"timestamp":101740815,"id":591,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1768268603676,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":21150,"timestamp":101738496,"id":586,"parentId":556,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268603673,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":22119,"timestamp":101738402,"id":585,"parentId":556,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268603673,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23716,"timestamp":101738837,"id":590,"parentId":556,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268603674,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4856,"timestamp":101786559,"id":592,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1768268603721,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5961,"timestamp":101786783,"id":594,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"ssr"},"startTime":1768268603722,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6788,"timestamp":101786843,"id":595,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/root-error-boundary.js","layer":"ssr"},"startTime":1768268603722,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5123,"timestamp":101788760,"id":596,"parentId":577,"tags":{"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":1768268603724,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5331,"timestamp":101788890,"id":597,"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":1768268603724,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8632,"timestamp":101786705,"id":593,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1768268603722,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9274,"timestamp":101795972,"id":598,"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":1768268603731,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1523,"timestamp":101806575,"id":599,"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/server/route-modules/app-page/vendored/contexts/head-manager-context.js","layer":"ssr"},"startTime":1768268603741,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1551,"timestamp":101806742,"id":600,"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/server/route-modules/app-page/vendored/contexts/amp-context.js","layer":"ssr"},"startTime":1768268603742,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2872,"timestamp":101806853,"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":1768268603742,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3071,"timestamp":101806918,"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/list-todo.js","layer":"ssr"},"startTime":1768268603742,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4679,"timestamp":101806985,"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/folder-search.js","layer":"ssr"},"startTime":1768268603742,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4891,"timestamp":101807072,"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":1768268603742,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5142,"timestamp":101807127,"id":605,"parentId":574,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-up.js","layer":"ssr"},"startTime":1768268603742,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5276,"timestamp":101810213,"id":606,"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/hammer.js","layer":"ssr"},"startTime":1768268603745,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5507,"timestamp":101810320,"id":607,"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/message-circle-question.js","layer":"ssr"},"startTime":1768268603745,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1109,"timestamp":101819210,"id":610,"parentId":547,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/router-context.js","layer":"ssr"},"startTime":1768268603754,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1174,"timestamp":101819325,"id":611,"parentId":547,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/image-config-context.js","layer":"ssr"},"startTime":1768268603754,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":5878,"timestamp":101816243,"id":608,"parentId":563,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MarkdownRenderer.tsx","layer":"ssr"},"startTime":1768268603751,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11277,"timestamp":101819427,"id":612,"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":1768268603754,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":13677,"timestamp":101819043,"id":609,"parentId":564,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/AskUserQuestionBlock.tsx","layer":"ssr"},"startTime":1768268603754,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10190,"timestamp":101825691,"id":614,"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/is-navigating-to-new-root-layout.js","layer":"ssr"},"startTime":1768268603760,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11764,"timestamp":101825547,"id":613,"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/apply-router-state-patch-to-tree.js","layer":"ssr"},"startTime":1768268603760,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23315,"timestamp":101825785,"id":615,"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-mutable.js","layer":"ssr"},"startTime":1768268603761,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13571,"timestamp":101855375,"id":618,"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":1768268603790,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":19339,"timestamp":101855259,"id":617,"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/refetch-inactive-parallel-segments.js","layer":"ssr"},"startTime":1768268603790,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":19856,"timestamp":101855485,"id":619,"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":1768268603790,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":20487,"timestamp":101855756,"id":622,"parentId":589,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1768268603791,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":24658,"timestamp":101855664,"id":621,"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/invalidate-cache-below-flight-segmentpath.js","layer":"ssr"},"startTime":1768268603790,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":28650,"timestamp":101855082,"id":616,"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":1768268603790,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":28695,"timestamp":101855839,"id":623,"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/should-hard-navigate.js","layer":"ssr"},"startTime":1768268603791,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":45857,"timestamp":101855579,"id":620,"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/ppr-navigations.js","layer":"ssr"},"startTime":1768268603790,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":67824,"timestamp":101864104,"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/shared/lib/server-reference-info.js","layer":"ssr"},"startTime":1768268603799,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":68809,"timestamp":101864300,"id":625,"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/clear-cache-node-data-for-segment-path.js","layer":"ssr"},"startTime":1768268603799,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":73603,"timestamp":101864424,"id":626,"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/aliased-prefetch-navigations.js","layer":"ssr"},"startTime":1768268603799,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4552,"timestamp":101956774,"id":627,"parentId":595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268603892,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3768,"timestamp":101966693,"id":628,"parentId":622,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268603901,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":836,"timestamp":101972440,"id":629,"parentId":583,"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":1768268603907,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":659,"timestamp":101973652,"id":630,"parentId":583,"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":1768268603908,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":2354,"timestamp":101977047,"id":631,"parentId":609,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/checkbox.tsx","layer":"ssr"},"startTime":1768268603912,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":4972,"timestamp":101977260,"id":632,"parentId":609,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/label.tsx","layer":"ssr"},"startTime":1768268603912,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2917,"timestamp":101984292,"id":633,"parentId":631,"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":1768268603919,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":2187,"timestamp":101985880,"id":634,"parentId":609,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/radio-group.tsx","layer":"ssr"},"startTime":1768268603921,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2496,"timestamp":101986064,"id":635,"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":1768268603921,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2001,"timestamp":101988909,"id":636,"parentId":608,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/index.js","layer":"ssr"},"startTime":1768268603924,"traceId":"606b740dac8ad442"}]
|
|
7
|
+
[{"name":"build-module-js","duration":2042,"timestamp":101989060,"id":637,"parentId":608,"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":1768268603924,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2064,"timestamp":101991579,"id":638,"parentId":634,"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":1768268603926,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":754,"timestamp":101999235,"id":640,"parentId":636,"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":1768268603934,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3176,"timestamp":101997683,"id":639,"parentId":638,"tags":{"name":"/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":1768268603932,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1951,"timestamp":102001550,"id":641,"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":1768268603936,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":6108,"timestamp":102012057,"id":642,"parentId":631,"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":1768268603947,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":3842,"timestamp":102015587,"id":643,"parentId":632,"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":1768268603950,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":5997,"timestamp":102020165,"id":644,"parentId":634,"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":1768268603955,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":798,"timestamp":102063293,"id":645,"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":1768268603998,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1237,"timestamp":102068762,"id":646,"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":1768268604004,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1200,"timestamp":102068985,"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":1768268604004,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":485,"timestamp":102079738,"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":1768268604015,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":640,"timestamp":102086862,"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":1768268604022,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":675,"timestamp":102088191,"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":1768268604023,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":721,"timestamp":102098516,"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":1768268604033,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":593,"timestamp":102101542,"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":1768268604036,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":620,"timestamp":102110322,"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":1768268604045,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":810,"timestamp":102116941,"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":1768268604052,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1226,"timestamp":102182345,"id":655,"parentId":645,"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":1768268604117,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6091,"timestamp":102186363,"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":1768268604121,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1230,"timestamp":102196968,"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":1768268604132,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1345,"timestamp":102202828,"id":658,"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":1768268604138,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1565,"timestamp":102203067,"id":659,"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":1768268604138,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3855,"timestamp":102205621,"id":660,"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":1768268604140,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1287,"timestamp":102212290,"id":661,"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":1768268604147,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1558,"timestamp":102245143,"id":662,"parentId":646,"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":1768268604180,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5259,"timestamp":102265512,"id":663,"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":1768268604200,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5284,"timestamp":102265786,"id":664,"parentId":646,"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":1768268604201,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":647,"timestamp":102278104,"id":665,"parentId":646,"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":1768268604213,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":746,"timestamp":102288210,"id":666,"parentId":646,"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":1768268604223,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1337,"timestamp":102294097,"id":667,"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":1768268604229,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":4525,"timestamp":102296545,"id":668,"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":1768268604231,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":875,"timestamp":102311800,"id":669,"parentId":646,"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":1768268604247,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1077,"timestamp":102325619,"id":670,"parentId":646,"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":1768268604260,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1734,"timestamp":102325881,"id":671,"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":1768268604261,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1144,"timestamp":102329051,"id":672,"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":1768268604264,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1144,"timestamp":102329260,"id":673,"parentId":646,"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":1768268604264,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":981,"timestamp":102332564,"id":674,"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":1768268604267,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1136,"timestamp":102332706,"id":675,"parentId":660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.js","layer":"ssr"},"startTime":1768268604268,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":2073,"timestamp":102339741,"id":676,"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":1768268604275,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":3646,"timestamp":102340078,"id":677,"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":1768268604275,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1284,"timestamp":102347665,"id":678,"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":1768268604282,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1232,"timestamp":102347970,"id":680,"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":1768268604283,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":6230,"timestamp":102347849,"id":679,"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":1768268604283,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":933,"timestamp":102356195,"id":682,"parentId":644,"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":1768268604291,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":9197,"timestamp":102354404,"id":681,"parentId":644,"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":1768268604289,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":794,"timestamp":102398361,"id":683,"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":1768268604333,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1073,"timestamp":102442444,"id":684,"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":1768268604377,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1021,"timestamp":102442721,"id":685,"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":1768268604378,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":734,"timestamp":102459726,"id":686,"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":1768268604395,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":734,"timestamp":102474056,"id":687,"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":1768268604409,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":806,"timestamp":102481525,"id":688,"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":1768268604416,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":460,"timestamp":102487605,"id":689,"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":1768268604422,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":589,"timestamp":102492351,"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":1768268604427,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":987,"timestamp":102495172,"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":1768268604430,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":750,"timestamp":102499896,"id":692,"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":1768268604435,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":828,"timestamp":102505515,"id":693,"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":1768268604440,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":824,"timestamp":102505718,"id":694,"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":1768268604441,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":581,"timestamp":102515022,"id":695,"parentId":659,"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":1768268604450,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":558,"timestamp":102521373,"id":696,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minpath.js","layer":"ssr"},"startTime":1768268604456,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":885,"timestamp":102523102,"id":697,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minproc.js","layer":"ssr"},"startTime":1768268604458,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":918,"timestamp":102523296,"id":698,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.js","layer":"ssr"},"startTime":1768268604458,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1737,"timestamp":102525458,"id":699,"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":1768268604460,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5945,"timestamp":102525652,"id":700,"parentId":664,"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":1768268604460,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1284,"timestamp":102535630,"id":701,"parentId":664,"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":1768268604470,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1487,"timestamp":102540041,"id":702,"parentId":660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/bail@2.0.2/node_modules/bail/index.js","layer":"ssr"},"startTime":1768268604475,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4137,"timestamp":102540263,"id":703,"parentId":665,"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":1768268604475,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11849,"timestamp":102540455,"id":704,"parentId":665,"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":1768268604475,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1835,"timestamp":102567522,"id":705,"parentId":666,"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":1768268604502,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4965,"timestamp":102567866,"id":706,"parentId":666,"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":1768268604503,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1480,"timestamp":102593611,"id":707,"parentId":660,"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":1768268604528,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1760,"timestamp":102599203,"id":708,"parentId":669,"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":1768268604534,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8190,"timestamp":102599443,"id":709,"parentId":669,"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":1768268604534,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1233,"timestamp":102622514,"id":710,"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":1768268604557,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1159,"timestamp":102634461,"id":711,"parentId":660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.js","layer":"ssr"},"startTime":1768268604569,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1127,"timestamp":102634747,"id":712,"parentId":661,"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":1768268604570,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1144,"timestamp":102640103,"id":713,"parentId":673,"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":1768268604575,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4508,"timestamp":102640325,"id":714,"parentId":673,"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":1768268604575,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1146,"timestamp":102663091,"id":715,"parentId":680,"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":1768268604598,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5690,"timestamp":102670441,"id":716,"parentId":660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/extend@3.0.2/node_modules/extend/index.js","layer":"ssr"},"startTime":1768268604605,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6875,"timestamp":102670719,"id":717,"parentId":680,"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":1768268604606,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10510,"timestamp":102670928,"id":718,"parentId":680,"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":1768268604606,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":50,"timestamp":102724216,"id":719,"parentId":697,"tags":{"name":"node:process","layer":null},"startTime":1768268604659,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":15,"timestamp":102724291,"id":720,"parentId":696,"tags":{"name":"node:path","layer":null},"startTime":1768268604659,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":10,"timestamp":102724317,"id":721,"parentId":698,"tags":{"name":"node:url","layer":null},"startTime":1768268604659,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1951,"timestamp":102749395,"id":722,"parentId":662,"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":1768268604684,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5420,"timestamp":102754043,"id":723,"parentId":683,"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":1768268604689,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1083,"timestamp":102776840,"id":724,"parentId":684,"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":1768268604712,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1338,"timestamp":102780356,"id":725,"parentId":685,"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":1768268604715,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1292,"timestamp":102792746,"id":726,"parentId":686,"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":1768268604728,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1736,"timestamp":102800649,"id":727,"parentId":687,"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":1768268604735,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2436,"timestamp":102800824,"id":728,"parentId":689,"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":1768268604736,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2573,"timestamp":102800933,"id":729,"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":1768268604736,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2113,"timestamp":102807330,"id":730,"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":1768268604742,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3545,"timestamp":102807559,"id":731,"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":1768268604742,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5629,"timestamp":102807760,"id":732,"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":1768268604743,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5784,"timestamp":102807955,"id":733,"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":1768268604743,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2228,"timestamp":102823563,"id":734,"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":1768268604758,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5318,"timestamp":102823837,"id":735,"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":1768268604759,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6060,"timestamp":102824067,"id":736,"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":1768268604759,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6063,"timestamp":102824295,"id":737,"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":1768268604759,"traceId":"606b740dac8ad442"}]
|
|
8
|
+
[{"name":"build-module-js","duration":6179,"timestamp":102824481,"id":738,"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":1768268604759,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1196,"timestamp":102839332,"id":739,"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":1768268604774,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1557,"timestamp":102839601,"id":740,"parentId":693,"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":1768268604774,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":740,"timestamp":102845932,"id":741,"parentId":698,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.shared.js","layer":"ssr"},"startTime":1768268604781,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6074,"timestamp":102855598,"id":742,"parentId":694,"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":1768268604790,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":18214,"timestamp":102856048,"id":743,"parentId":695,"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":1768268604791,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2377,"timestamp":102891186,"id":744,"parentId":709,"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":1768268604826,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2605,"timestamp":102891461,"id":745,"parentId":709,"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":1768268604826,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4304,"timestamp":102891633,"id":746,"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":1768268604826,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4932,"timestamp":102891795,"id":747,"parentId":699,"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":1768268604827,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1166,"timestamp":102900815,"id":748,"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":1768268604836,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1280,"timestamp":102903039,"id":749,"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":1768268604838,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1292,"timestamp":102903265,"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/delete.js","layer":"ssr"},"startTime":1768268604838,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1377,"timestamp":102903406,"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/emphasis.js","layer":"ssr"},"startTime":1768268604838,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1692,"timestamp":102903512,"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":1768268604838,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2236,"timestamp":102903606,"id":753,"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":1768268604838,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1876,"timestamp":102909590,"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/image-reference.js","layer":"ssr"},"startTime":1768268604844,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2042,"timestamp":102909837,"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/image.js","layer":"ssr"},"startTime":1768268604845,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2242,"timestamp":102910065,"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/html.js","layer":"ssr"},"startTime":1768268604845,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2306,"timestamp":102910262,"id":757,"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":1768268604845,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":884,"timestamp":102915593,"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/inline-code.js","layer":"ssr"},"startTime":1768268604850,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1730,"timestamp":102917219,"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/link.js","layer":"ssr"},"startTime":1768268604852,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1950,"timestamp":102917415,"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/link-reference.js","layer":"ssr"},"startTime":1768268604852,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2588,"timestamp":102917587,"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/list-item.js","layer":"ssr"},"startTime":1768268604852,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2647,"timestamp":102917749,"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/paragraph.js","layer":"ssr"},"startTime":1768268604853,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2870,"timestamp":102917904,"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/list.js","layer":"ssr"},"startTime":1768268604853,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1753,"timestamp":102925467,"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/root.js","layer":"ssr"},"startTime":1768268604860,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1786,"timestamp":102925696,"id":765,"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":1768268604860,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2133,"timestamp":102925900,"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/table.js","layer":"ssr"},"startTime":1768268604861,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2445,"timestamp":102926130,"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/table-row.js","layer":"ssr"},"startTime":1768268604861,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":730,"timestamp":102930200,"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/table-cell.js","layer":"ssr"},"startTime":1768268604865,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":912,"timestamp":102931885,"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/text.js","layer":"ssr"},"startTime":1768268604867,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1526,"timestamp":102932095,"id":770,"parentId":711,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.js","layer":"ssr"},"startTime":1768268604867,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1803,"timestamp":102936137,"id":771,"parentId":712,"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":1768268604871,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":907,"timestamp":102941670,"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/thematic-break.js","layer":"ssr"},"startTime":1768268604876,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1772,"timestamp":102963549,"id":773,"parentId":700,"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":1768268604898,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1557,"timestamp":102966666,"id":774,"parentId":701,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-sanitize-uri@2.0.1/node_modules/micromark-util-sanitize-uri/index.js","layer":"ssr"},"startTime":1768268604901,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1092,"timestamp":102977242,"id":775,"parentId":703,"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":1768268604912,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":942,"timestamp":102999589,"id":776,"parentId":703,"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":1768268604934,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1110,"timestamp":103007061,"id":777,"parentId":703,"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":1768268604942,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1015,"timestamp":103009469,"id":778,"parentId":706,"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":1768268604944,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":901,"timestamp":103023272,"id":779,"parentId":706,"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":1768268604958,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":873,"timestamp":103030832,"id":780,"parentId":699,"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":1768268604966,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":890,"timestamp":103032526,"id":781,"parentId":674,"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":1768268604967,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1647,"timestamp":103052899,"id":782,"parentId":676,"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":1768268604988,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1572,"timestamp":103060675,"id":783,"parentId":730,"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":1768268604995,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1844,"timestamp":103060927,"id":784,"parentId":730,"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":1768268604996,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1759,"timestamp":103064216,"id":785,"parentId":677,"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":1768268604999,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1831,"timestamp":103064421,"id":786,"parentId":731,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-insensitive-transform.js","layer":"ssr"},"startTime":1768268604999,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1859,"timestamp":103064604,"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/case-sensitive-transform.js","layer":"ssr"},"startTime":1768268604999,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":2436,"timestamp":103068777,"id":788,"parentId":678,"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":1768268605004,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1319,"timestamp":103076146,"id":789,"parentId":736,"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":1768268605011,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1448,"timestamp":103076357,"id":790,"parentId":736,"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":1768268605011,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1214,"timestamp":103079169,"id":791,"parentId":723,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/ccount@2.0.1/node_modules/ccount/index.js","layer":"ssr"},"startTime":1768268605014,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1330,"timestamp":103079365,"id":792,"parentId":739,"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":1768268605014,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1095,"timestamp":103083548,"id":794,"parentId":681,"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":1768268605018,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1078,"timestamp":103083753,"id":795,"parentId":723,"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":1768268605019,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":823,"timestamp":103087524,"id":796,"parentId":754,"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":1768268605022,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":13192,"timestamp":103082270,"id":793,"parentId":681,"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":1768268605017,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":788,"timestamp":103100202,"id":797,"parentId":681,"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":1768268605035,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":839,"timestamp":103118567,"id":798,"parentId":771,"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":1768268605053,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":593,"timestamp":103127855,"id":799,"parentId":726,"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":1768268605063,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2441,"timestamp":103133278,"id":800,"parentId":727,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/markdown-table@3.0.4/node_modules/markdown-table/index.js","layer":"ssr"},"startTime":1768268605068,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":747,"timestamp":103150377,"id":801,"parentId":743,"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":1768268605085,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1017,"timestamp":103157762,"id":802,"parentId":743,"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":1768268605093,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1174,"timestamp":103164977,"id":803,"parentId":743,"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":1768268605100,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2709,"timestamp":103168923,"id":804,"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":1768268605104,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2879,"timestamp":103175514,"id":805,"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":1768268605110,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3121,"timestamp":103175731,"id":806,"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":1768268605111,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3832,"timestamp":103175926,"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/block-quote.js","layer":"ssr"},"startTime":1768268605111,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4045,"timestamp":103176138,"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/character-escape.js","layer":"ssr"},"startTime":1768268605111,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1454,"timestamp":103181480,"id":809,"parentId":742,"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":1768268605116,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2092,"timestamp":103181670,"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/character-reference.js","layer":"ssr"},"startTime":1768268605116,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3937,"timestamp":103181828,"id":811,"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":1768268605117,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5178,"timestamp":103181984,"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/code-text.js","layer":"ssr"},"startTime":1768268605117,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1605,"timestamp":103189733,"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/content.js","layer":"ssr"},"startTime":1768268605125,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1881,"timestamp":103197451,"id":814,"parentId":743,"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":1768268605132,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2848,"timestamp":103197704,"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/definition.js","layer":"ssr"},"startTime":1768268605133,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3405,"timestamp":103198066,"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-indented.js","layer":"ssr"},"startTime":1768268605133,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2028,"timestamp":103202583,"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/hard-break-escape.js","layer":"ssr"},"startTime":1768268605137,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2832,"timestamp":103202780,"id":818,"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":1768268605138,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5952,"timestamp":103202945,"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/html-flow.js","layer":"ssr"},"startTime":1768268605138,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8145,"timestamp":103203147,"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/html-text.js","layer":"ssr"},"startTime":1768268605138,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2187,"timestamp":103217169,"id":821,"parentId":743,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/index.js","layer":"ssr"},"startTime":1768268605152,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4160,"timestamp":103217414,"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/label-end.js","layer":"ssr"},"startTime":1768268605152,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4423,"timestamp":103217598,"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/label-start-image.js","layer":"ssr"},"startTime":1768268605152,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4626,"timestamp":103217770,"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-start-link.js","layer":"ssr"},"startTime":1768268605153,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4766,"timestamp":103217936,"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/line-ending.js","layer":"ssr"},"startTime":1768268605153,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2735,"timestamp":103231756,"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/list.js","layer":"ssr"},"startTime":1768268605167,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3455,"timestamp":103231995,"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/setext-underline.js","layer":"ssr"},"startTime":1768268605167,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3736,"timestamp":103232204,"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/thematic-break.js","layer":"ssr"},"startTime":1768268605167,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1350,"timestamp":103236820,"id":829,"parentId":769,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trim-lines@3.0.1/node_modules/trim-lines/index.js","layer":"ssr"},"startTime":1768268605172,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":643,"timestamp":103247442,"id":830,"parentId":771,"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":1768268605182,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1731,"timestamp":103257868,"id":831,"parentId":795,"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":1768268605193,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":948,"timestamp":103265121,"id":832,"parentId":717,"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":1768268605200,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":838,"timestamp":103278963,"id":833,"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":1768268605214,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1761,"timestamp":103290277,"id":834,"parentId":799,"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":1768268605225,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2030,"timestamp":103290520,"id":835,"parentId":799,"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":1768268605225,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3159,"timestamp":103316501,"id":836,"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":1768268605251,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3538,"timestamp":103316768,"id":837,"parentId":801,"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":1768268605252,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3746,"timestamp":103316953,"id":838,"parentId":809,"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":1768268605252,"traceId":"606b740dac8ad442"}]
|
|
9
|
+
[{"name":"build-module-js","duration":8520,"timestamp":103317162,"id":839,"parentId":821,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/compile.js","layer":"ssr"},"startTime":1768268605252,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1145,"timestamp":103387469,"id":840,"parentId":821,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/parse.js","layer":"ssr"},"startTime":1768268605322,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1243,"timestamp":103397308,"id":841,"parentId":821,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/postprocess.js","layer":"ssr"},"startTime":1768268605332,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1962,"timestamp":103397538,"id":842,"parentId":821,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/preprocess.js","layer":"ssr"},"startTime":1768268605332,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2794,"timestamp":103425921,"id":843,"parentId":813,"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":1768268605361,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3162,"timestamp":103426229,"id":844,"parentId":832,"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":1768268605361,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3989,"timestamp":103426405,"id":845,"parentId":832,"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":1768268605361,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4595,"timestamp":103426569,"id":846,"parentId":830,"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":1768268605361,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9531,"timestamp":103448948,"id":847,"parentId":815,"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":1768268605384,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2603,"timestamp":103507178,"id":848,"parentId":815,"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":1768268605442,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6296,"timestamp":103507513,"id":849,"parentId":815,"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":1768268605442,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2195,"timestamp":103532081,"id":850,"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/unsafe.js","layer":"ssr"},"startTime":1768268605467,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2612,"timestamp":103532381,"id":851,"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/configure.js","layer":"ssr"},"startTime":1768268605467,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3018,"timestamp":103532572,"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/join.js","layer":"ssr"},"startTime":1768268605467,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1113,"timestamp":103541208,"id":853,"parentId":835,"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":1768268605476,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2246,"timestamp":103543536,"id":854,"parentId":835,"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":1768268605478,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2598,"timestamp":103543735,"id":855,"parentId":835,"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":1768268605479,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2884,"timestamp":103543893,"id":856,"parentId":835,"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":1768268605479,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2150,"timestamp":103545051,"id":857,"parentId":835,"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":1768268605480,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1326,"timestamp":103552097,"id":858,"parentId":815,"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":1768268605487,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1656,"timestamp":103552237,"id":859,"parentId":835,"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":1768268605487,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1747,"timestamp":103552343,"id":860,"parentId":835,"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":1768268605487,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2130,"timestamp":103552438,"id":861,"parentId":835,"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":1768268605487,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2372,"timestamp":103552531,"id":862,"parentId":835,"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":1768268605487,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2847,"timestamp":103552622,"id":863,"parentId":835,"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":1768268605487,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1968,"timestamp":103559281,"id":864,"parentId":819,"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":1768268605494,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2168,"timestamp":103559474,"id":865,"parentId":835,"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":1768268605494,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2596,"timestamp":103559639,"id":866,"parentId":835,"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":1768268605494,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2880,"timestamp":103559800,"id":867,"parentId":835,"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":1768268605495,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2705,"timestamp":103560452,"id":868,"parentId":835,"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":1768268605495,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":585,"timestamp":103565214,"id":869,"parentId":835,"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":1768268605500,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5753,"timestamp":103568743,"id":870,"parentId":814,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/character-entities@2.0.2/node_modules/character-entities/index.js","layer":"ssr"},"startTime":1768268605504,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5981,"timestamp":103568882,"id":871,"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/util/association.js","layer":"ssr"},"startTime":1768268605504,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6385,"timestamp":103568997,"id":872,"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/util/compile-pattern.js","layer":"ssr"},"startTime":1768268605504,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2866,"timestamp":103598976,"id":873,"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/util/container-phrasing.js","layer":"ssr"},"startTime":1768268605534,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3045,"timestamp":103599306,"id":874,"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/util/indent-lines.js","layer":"ssr"},"startTime":1768268605534,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3393,"timestamp":103599507,"id":875,"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/util/container-flow.js","layer":"ssr"},"startTime":1768268605534,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4452,"timestamp":103599682,"id":876,"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/util/safe.js","layer":"ssr"},"startTime":1768268605534,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4730,"timestamp":103599852,"id":877,"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/util/track.js","layer":"ssr"},"startTime":1768268605535,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1611,"timestamp":103608452,"id":878,"parentId":835,"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":1768268605543,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1783,"timestamp":103608712,"id":879,"parentId":835,"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":1768268605544,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1755,"timestamp":103608894,"id":880,"parentId":835,"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":1768268605544,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1783,"timestamp":103609104,"id":881,"parentId":835,"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":1768268605544,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1152,"timestamp":103614771,"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":1768268605550,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1426,"timestamp":103614906,"id":883,"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":1768268605550,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2320,"timestamp":103615050,"id":884,"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":1768268605550,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2892,"timestamp":103624899,"id":885,"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":1768268605560,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4354,"timestamp":103625084,"id":886,"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":1768268605560,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4890,"timestamp":103625202,"id":887,"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":1768268605560,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":696,"timestamp":103646492,"id":888,"parentId":831,"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":1768268605581,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":949,"timestamp":103651384,"id":889,"parentId":844,"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":1768268605586,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1292,"timestamp":103657219,"id":890,"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/format-code-as-indented.js","layer":"ssr"},"startTime":1768268605592,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1519,"timestamp":103657378,"id":891,"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/format-heading-as-setext.js","layer":"ssr"},"startTime":1768268605592,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1721,"timestamp":103657492,"id":892,"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/pattern-in-scope.js","layer":"ssr"},"startTime":1768268605592,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1817,"timestamp":103657594,"id":893,"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-fence.js","layer":"ssr"},"startTime":1768268605592,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2562,"timestamp":103657691,"id":894,"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":1768268605592,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":637,"timestamp":103662114,"id":895,"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-quote.js","layer":"ssr"},"startTime":1768268605597,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":900,"timestamp":103663670,"id":896,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zwitch@2.0.4/node_modules/zwitch/index.js","layer":"ssr"},"startTime":1768268605598,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":966,"timestamp":103663800,"id":897,"parentId":857,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js","layer":"ssr"},"startTime":1768268605599,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1008,"timestamp":103663904,"id":898,"parentId":857,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js","layer":"ssr"},"startTime":1768268605599,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":769,"timestamp":103669556,"id":899,"parentId":857,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-info.js","layer":"ssr"},"startTime":1768268605604,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1628,"timestamp":103670682,"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":1768268605605,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1697,"timestamp":103670828,"id":901,"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-bullet.js","layer":"ssr"},"startTime":1768268605606,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1899,"timestamp":103670941,"id":902,"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-bullet-other.js","layer":"ssr"},"startTime":1768268605606,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2038,"timestamp":103671072,"id":903,"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-bullet-ordered.js","layer":"ssr"},"startTime":1768268605606,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2185,"timestamp":103671179,"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-rule.js","layer":"ssr"},"startTime":1768268605606,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2331,"timestamp":103671275,"id":905,"parentId":868,"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":1768268605606,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":716,"timestamp":103682382,"id":906,"parentId":879,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-strong.js","layer":"ssr"},"startTime":1768268605617,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":762,"timestamp":103682548,"id":907,"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":1768268605617,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1058,"timestamp":103712994,"id":908,"parentId":855,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/longest-streak@3.1.0/node_modules/longest-streak/index.js","layer":"ssr"},"startTime":1768268605648,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":748,"timestamp":103717448,"id":909,"parentId":878,"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":1768268605652,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":785,"timestamp":103719944,"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":1768268605655,"traceId":"606b740dac8ad442"},{"name":"make","duration":6336170,"timestamp":97393947,"id":22,"parentId":20,"tags":{},"startTime":1768268599329,"traceId":"606b740dac8ad442"},{"name":"get-entries","duration":556,"timestamp":103731465,"id":912,"parentId":911,"tags":{},"startTime":1768268605666,"traceId":"606b740dac8ad442"},{"name":"node-file-trace-plugin","duration":100155,"timestamp":103735505,"id":913,"parentId":911,"tags":{"traceEntryCount":"10"},"startTime":1768268605670,"traceId":"606b740dac8ad442"},{"name":"collect-traced-files","duration":703,"timestamp":103835678,"id":914,"parentId":911,"tags":{},"startTime":1768268605770,"traceId":"606b740dac8ad442"},{"name":"finish-modules","duration":105122,"timestamp":103731268,"id":911,"parentId":21,"tags":{},"startTime":1768268605666,"traceId":"606b740dac8ad442"},{"name":"chunk-graph","duration":23663,"timestamp":103910975,"id":916,"parentId":915,"tags":{},"startTime":1768268605846,"traceId":"606b740dac8ad442"},{"name":"optimize-modules","duration":42,"timestamp":103934816,"id":918,"parentId":915,"tags":{},"startTime":1768268605870,"traceId":"606b740dac8ad442"},{"name":"optimize-chunks","duration":20410,"timestamp":103934968,"id":919,"parentId":915,"tags":{},"startTime":1768268605870,"traceId":"606b740dac8ad442"},{"name":"optimize-tree","duration":132,"timestamp":103955467,"id":920,"parentId":915,"tags":{},"startTime":1768268605890,"traceId":"606b740dac8ad442"},{"name":"optimize-chunk-modules","duration":27098,"timestamp":103955690,"id":921,"parentId":915,"tags":{},"startTime":1768268605890,"traceId":"606b740dac8ad442"},{"name":"optimize","duration":48154,"timestamp":103934744,"id":917,"parentId":915,"tags":{},"startTime":1768268605870,"traceId":"606b740dac8ad442"},{"name":"module-hash","duration":36127,"timestamp":104015687,"id":922,"parentId":915,"tags":{},"startTime":1768268605950,"traceId":"606b740dac8ad442"},{"name":"code-generation","duration":640824,"timestamp":104051891,"id":923,"parentId":915,"tags":{},"startTime":1768268605987,"traceId":"606b740dac8ad442"},{"name":"hash","duration":13008,"timestamp":104700873,"id":924,"parentId":915,"tags":{},"startTime":1768268606636,"traceId":"606b740dac8ad442"},{"name":"code-generation-jobs","duration":901,"timestamp":104713874,"id":925,"parentId":915,"tags":{},"startTime":1768268606649,"traceId":"606b740dac8ad442"},{"name":"module-assets","duration":648,"timestamp":104714702,"id":926,"parentId":915,"tags":{},"startTime":1768268606650,"traceId":"606b740dac8ad442"},{"name":"create-chunk-assets","duration":12732,"timestamp":104715378,"id":927,"parentId":915,"tags":{},"startTime":1768268606650,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":137974,"timestamp":104761512,"id":930,"parentId":928,"tags":{"name":"../pages/_app.js","cache":"MISS"},"startTime":1768268606696,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":146457,"timestamp":104753100,"id":929,"parentId":928,"tags":{"name":"../app/_not-found/page.js","cache":"MISS"},"startTime":1768268606688,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":132503,"timestamp":104770622,"id":932,"parentId":928,"tags":{"name":"../app/page.js","cache":"MISS"},"startTime":1768268606705,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":70488,"timestamp":104832866,"id":935,"parentId":928,"tags":{"name":"../pages/_document.js","cache":"MISS"},"startTime":1768268606768,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":72430,"timestamp":104832981,"id":936,"parentId":928,"tags":{"name":"../webpack-runtime.js","cache":"MISS"},"startTime":1768268606768,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":75331,"timestamp":104830182,"id":934,"parentId":928,"tags":{"name":"../app/settings/page.js","cache":"MISS"},"startTime":1768268606765,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":203174,"timestamp":104762100,"id":931,"parentId":928,"tags":{"name":"../pages/_error.js","cache":"MISS"},"startTime":1768268606697,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":147548,"timestamp":104877285,"id":939,"parentId":928,"tags":{"name":"799.js","cache":"MISS"},"startTime":1768268606812,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":152194,"timestamp":104879108,"id":940,"parentId":928,"tags":{"name":"392.js","cache":"MISS"},"startTime":1768268606814,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":165907,"timestamp":104866905,"id":938,"parentId":928,"tags":{"name":"526.js","cache":"MISS"},"startTime":1768268606802,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":460135,"timestamp":104833354,"id":937,"parentId":928,"tags":{"name":"673.js","cache":"MISS"},"startTime":1768268606768,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":538182,"timestamp":104779559,"id":933,"parentId":928,"tags":{"name":"../app/project/[id]/page.js","cache":"MISS"},"startTime":1768268606714,"traceId":"606b740dac8ad442"}]
|
|
10
|
+
[{"name":"minify-webpack-plugin-optimize","duration":585920,"timestamp":104731847,"id":928,"parentId":20,"tags":{"compilationName":"server","mangle":"[object Object]"},"startTime":1768268606667,"traceId":"606b740dac8ad442"},{"name":"css-minimizer-plugin","duration":232,"timestamp":105317973,"id":941,"parentId":20,"tags":{},"startTime":1768268607253,"traceId":"606b740dac8ad442"},{"name":"create-trace-assets","duration":2215,"timestamp":105318491,"id":942,"parentId":21,"tags":{},"startTime":1768268607253,"traceId":"606b740dac8ad442"},{"name":"seal","duration":1464060,"timestamp":103874752,"id":915,"parentId":20,"tags":{},"startTime":1768268605810,"traceId":"606b740dac8ad442"},{"name":"webpack-compilation","duration":7973359,"timestamp":97378867,"id":20,"parentId":17,"tags":{"name":"server"},"startTime":1768268599314,"traceId":"606b740dac8ad442"},{"name":"emit","duration":15708,"timestamp":105352726,"id":943,"parentId":17,"tags":{},"startTime":1768268607288,"traceId":"606b740dac8ad442"},{"name":"webpack-close","duration":538980,"timestamp":105370138,"id":944,"parentId":17,"tags":{"name":"server"},"startTime":1768268607305,"traceId":"606b740dac8ad442"},{"name":"webpack-generate-error-stats","duration":3830,"timestamp":105909220,"id":945,"parentId":944,"tags":{},"startTime":1768268607844,"traceId":"606b740dac8ad442"},{"name":"run-webpack-compiler","duration":8842257,"timestamp":97071400,"id":17,"parentId":16,"tags":{},"startTime":1768268599006,"traceId":"606b740dac8ad442"},{"name":"format-webpack-messages","duration":124,"timestamp":105913670,"id":946,"parentId":16,"tags":{},"startTime":1768268607848,"traceId":"606b740dac8ad442"},{"name":"worker-main-server","duration":8843200,"timestamp":97070850,"id":16,"parentId":1,"tags":{},"startTime":1768268599006,"traceId":"606b740dac8ad442"},{"name":"create-entrypoints","duration":14875,"timestamp":106818910,"id":949,"parentId":947,"tags":{},"startTime":1768268608754,"traceId":"606b740dac8ad442"},{"name":"generate-webpack-config","duration":98262,"timestamp":106833942,"id":950,"parentId":948,"tags":{},"startTime":1768268608769,"traceId":"606b740dac8ad442"},{"name":"make","duration":828,"timestamp":107040411,"id":952,"parentId":951,"tags":{},"startTime":1768268608975,"traceId":"606b740dac8ad442"},{"name":"chunk-graph","duration":694,"timestamp":107044498,"id":954,"parentId":953,"tags":{},"startTime":1768268608979,"traceId":"606b740dac8ad442"},{"name":"optimize-modules","duration":59,"timestamp":107045410,"id":956,"parentId":953,"tags":{},"startTime":1768268608980,"traceId":"606b740dac8ad442"},{"name":"optimize-chunks","duration":1151,"timestamp":107045610,"id":957,"parentId":953,"tags":{},"startTime":1768268608980,"traceId":"606b740dac8ad442"},{"name":"optimize-tree","duration":177,"timestamp":107046852,"id":958,"parentId":953,"tags":{},"startTime":1768268608982,"traceId":"606b740dac8ad442"},{"name":"optimize-chunk-modules","duration":758,"timestamp":107047368,"id":959,"parentId":953,"tags":{},"startTime":1768268608982,"traceId":"606b740dac8ad442"},{"name":"optimize","duration":2958,"timestamp":107045310,"id":955,"parentId":953,"tags":{},"startTime":1768268608980,"traceId":"606b740dac8ad442"},{"name":"module-hash","duration":104,"timestamp":107049535,"id":960,"parentId":953,"tags":{},"startTime":1768268608984,"traceId":"606b740dac8ad442"},{"name":"code-generation","duration":228,"timestamp":107049693,"id":961,"parentId":953,"tags":{},"startTime":1768268608984,"traceId":"606b740dac8ad442"},{"name":"hash","duration":435,"timestamp":107050244,"id":962,"parentId":953,"tags":{},"startTime":1768268608985,"traceId":"606b740dac8ad442"},{"name":"code-generation-jobs","duration":155,"timestamp":107050674,"id":963,"parentId":953,"tags":{},"startTime":1768268608985,"traceId":"606b740dac8ad442"},{"name":"module-assets","duration":101,"timestamp":107050790,"id":964,"parentId":953,"tags":{},"startTime":1768268608986,"traceId":"606b740dac8ad442"},{"name":"create-chunk-assets","duration":228,"timestamp":107050908,"id":965,"parentId":953,"tags":{},"startTime":1768268608986,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":1642,"timestamp":107061952,"id":967,"parentId":966,"tags":{"name":"interception-route-rewrite-manifest.js","cache":"MISS"},"startTime":1768268608997,"traceId":"606b740dac8ad442"},{"name":"minify-webpack-plugin-optimize","duration":3770,"timestamp":107059841,"id":966,"parentId":951,"tags":{"compilationName":"edge-server","mangle":"[object Object]"},"startTime":1768268608995,"traceId":"606b740dac8ad442"},{"name":"css-minimizer-plugin","duration":193,"timestamp":107063762,"id":968,"parentId":951,"tags":{},"startTime":1768268608999,"traceId":"606b740dac8ad442"},{"name":"seal","duration":25732,"timestamp":107043738,"id":953,"parentId":951,"tags":{},"startTime":1768268608979,"traceId":"606b740dac8ad442"},{"name":"webpack-compilation","duration":37423,"timestamp":107032662,"id":951,"parentId":948,"tags":{"name":"edge-server"},"startTime":1768268608967,"traceId":"606b740dac8ad442"},{"name":"emit","duration":4661,"timestamp":107070658,"id":969,"parentId":948,"tags":{},"startTime":1768268609005,"traceId":"606b740dac8ad442"},{"name":"webpack-close","duration":21699,"timestamp":107076704,"id":970,"parentId":948,"tags":{"name":"edge-server"},"startTime":1768268609012,"traceId":"606b740dac8ad442"},{"name":"webpack-generate-error-stats","duration":5156,"timestamp":107098478,"id":971,"parentId":970,"tags":{},"startTime":1768268609033,"traceId":"606b740dac8ad442"},{"name":"run-webpack-compiler","duration":284911,"timestamp":106818904,"id":948,"parentId":947,"tags":{},"startTime":1768268608754,"traceId":"606b740dac8ad442"},{"name":"format-webpack-messages","duration":106,"timestamp":107103825,"id":972,"parentId":947,"tags":{},"startTime":1768268609039,"traceId":"606b740dac8ad442"},{"name":"worker-main-edge-server","duration":285617,"timestamp":106818544,"id":947,"parentId":1,"tags":{},"startTime":1768268608753,"traceId":"606b740dac8ad442"},{"name":"create-entrypoints","duration":16888,"timestamp":108013890,"id":975,"parentId":973,"tags":{},"startTime":1768268609949,"traceId":"606b740dac8ad442"},{"name":"generate-webpack-config","duration":120674,"timestamp":108030939,"id":976,"parentId":974,"tags":{},"startTime":1768268609966,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":11880,"timestamp":108325498,"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":1768268610260,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":1662,"timestamp":108337616,"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":1768268610272,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":557,"timestamp":108339323,"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":1768268610274,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":468,"timestamp":108339916,"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":1768268610275,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":507,"timestamp":108340414,"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":1768268610275,"traceId":"606b740dac8ad442"},{"name":"next-client-pages-loader","duration":390,"timestamp":108341838,"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":1768268610277,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":8216,"timestamp":108340971,"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":1768268610276,"traceId":"606b740dac8ad442"},{"name":"next-client-pages-loader","duration":98,"timestamp":108350646,"id":998,"parentId":997,"tags":{"absolutePagePath":"next/dist/pages/_app"},"startTime":1768268610285,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":2784,"timestamp":108349241,"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":1768268610284,"traceId":"606b740dac8ad442"},{"name":"next-client-pages-loader","duration":110,"timestamp":108352317,"id":1000,"parentId":999,"tags":{"absolutePagePath":"next/dist/pages/_error"},"startTime":1768268610287,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":1360,"timestamp":108352162,"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":1768268610287,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16659,"timestamp":108372554,"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":1768268610307,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":28308,"timestamp":108375568,"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":1768268610310,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":43802,"timestamp":108375325,"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":1768268610310,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5928,"timestamp":108441423,"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":1768268610376,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13332,"timestamp":108451517,"id":1005,"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":1768268610386,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15508,"timestamp":108451716,"id":1006,"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":1768268610387,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17033,"timestamp":108451843,"id":1007,"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":1768268610387,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":19765,"timestamp":108452095,"id":1009,"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":1768268610387,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23347,"timestamp":108452208,"id":1010,"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":1768268610387,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":47110,"timestamp":108451958,"id":1008,"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":1768268610387,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6236,"timestamp":108501635,"id":1012,"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":1768268610436,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14851,"timestamp":108501809,"id":1014,"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":1768268610437,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":24925,"timestamp":108501733,"id":1013,"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":1768268610437,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":44748,"timestamp":108501500,"id":1011,"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":1768268610436,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4584,"timestamp":108576299,"id":1015,"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":1768268610511,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2939,"timestamp":108585777,"id":1017,"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":1768268610521,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5197,"timestamp":108586630,"id":1019,"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":1768268610521,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7166,"timestamp":108586332,"id":1018,"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":1768268610521,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17267,"timestamp":108582852,"id":1016,"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":1768268610518,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15314,"timestamp":108586684,"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":1768268610521,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7228,"timestamp":108639318,"id":1021,"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":1768268610574,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8879,"timestamp":108643112,"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-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1768268610578,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11984,"timestamp":108643239,"id":1023,"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":1768268610578,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":20297,"timestamp":108643300,"id":1024,"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":1768268610578,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":20965,"timestamp":108649582,"id":1026,"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":1768268610584,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":22600,"timestamp":108649977,"id":1027,"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":1768268610585,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":42242,"timestamp":108650114,"id":1028,"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":1768268610585,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":92531,"timestamp":108643355,"id":1025,"parentId":1002,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/router.js","layer":"pages-dir-browser"},"startTime":1768268610578,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":651,"timestamp":108772876,"id":1030,"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/build/deployment-id.js","layer":"pages-dir-browser"},"startTime":1768268610708,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3494,"timestamp":108773671,"id":1031,"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/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1768268610708,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":14072,"timestamp":108771093,"id":1029,"parentId":992,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"app-pages-browser"},"startTime":1768268610706,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":8774,"timestamp":108810650,"id":1033,"parentId":991,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"app-pages-browser"},"startTime":1768268610745,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":9803,"timestamp":108811097,"id":1035,"parentId":993,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"app-pages-browser"},"startTime":1768268610746,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10632,"timestamp":108811293,"id":1036,"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":"app-pages-browser"},"startTime":1768268610746,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":16078,"timestamp":108810869,"id":1034,"parentId":994,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"app-pages-browser"},"startTime":1768268610746,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16578,"timestamp":108811395,"id":1037,"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/app-router-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1768268610746,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15618,"timestamp":108813200,"id":1039,"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/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1768268610748,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17253,"timestamp":108813023,"id":1038,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/handle-isr-error.js","layer":"app-pages-browser"},"startTime":1768268610748,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":25978,"timestamp":108810466,"id":1032,"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/shared/lib/invariant-error.js","layer":"app-pages-browser"},"startTime":1768268610745,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6459,"timestamp":108849331,"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/components/match-segments.js","layer":"app-pages-browser"},"startTime":1768268610784,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9186,"timestamp":108849156,"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/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1768268610784,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10677,"timestamp":108849620,"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/components/bfcache.js","layer":"app-pages-browser"},"startTime":1768268610784,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12303,"timestamp":108849524,"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/components/use-action-queue.js","layer":"app-pages-browser"},"startTime":1768268610784,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14047,"timestamp":108849435,"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/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1768268610784,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14595,"timestamp":108849712,"id":1045,"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/request/search-params.browser.js","layer":"app-pages-browser"},"startTime":1768268610785,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15156,"timestamp":108849806,"id":1046,"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/request/params.browser.js","layer":"app-pages-browser"},"startTime":1768268610785,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":19462,"timestamp":108849920,"id":1047,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/set-attributes-from-props.js","layer":"app-pages-browser"},"startTime":1768268610785,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":20221,"timestamp":108849991,"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/app-call-server.js","layer":"app-pages-browser"},"startTime":1768268610785,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":20718,"timestamp":108850119,"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/app-globals.js","layer":"app-pages-browser"},"startTime":1768268610785,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23589,"timestamp":108850174,"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/app-build-id.js","layer":"app-pages-browser"},"startTime":1768268610785,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":24731,"timestamp":108850066,"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/app-find-source-map-url.js","layer":"app-pages-browser"},"startTime":1768268610785,"traceId":"606b740dac8ad442"}]
|
|
11
|
+
[{"name":"build-module-js","duration":27748,"timestamp":108850220,"id":1052,"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/page-loader.js","layer":"pages-dir-browser"},"startTime":1768268610785,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7076,"timestamp":108886394,"id":1054,"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/route-announcer.js","layer":"pages-dir-browser"},"startTime":1768268610821,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10495,"timestamp":108886276,"id":1053,"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/head-manager.js","layer":"pages-dir-browser"},"startTime":1768268610821,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5042,"timestamp":108898060,"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/remove-base-path.js","layer":"pages-dir-browser"},"startTime":1768268610833,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6167,"timestamp":108898200,"id":1056,"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":1768268610833,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4736,"timestamp":108904851,"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/has-base-path.js","layer":"pages-dir-browser"},"startTime":1768268610840,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5666,"timestamp":108907383,"id":1059,"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/shared/lib/encode-uri-path.js","layer":"app-pages-browser"},"startTime":1768268610842,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6087,"timestamp":108907470,"id":1060,"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/head-manager-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1768268610842,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6501,"timestamp":108907547,"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/shared/lib/head-manager-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1768268610842,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7813,"timestamp":108907250,"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/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1768268610842,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12868,"timestamp":108907612,"id":1062,"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/app-router-instance.js","layer":"app-pages-browser"},"startTime":1768268610842,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12250,"timestamp":108933099,"id":1063,"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/mitt.js","layer":"pages-dir-browser"},"startTime":1768268610868,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12731,"timestamp":108933250,"id":1064,"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/runtime-config.external.js","layer":"pages-dir-browser"},"startTime":1768268610868,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13141,"timestamp":108933402,"id":1066,"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/image-config-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1768268610868,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14816,"timestamp":108933483,"id":1067,"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/router-reducer/router-reducer-types.js","layer":"app-pages-browser"},"startTime":1768268610868,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15449,"timestamp":108933764,"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/client/components/router-reducer/create-router-cache-key.js","layer":"app-pages-browser"},"startTime":1768268610869,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17999,"timestamp":108933873,"id":1070,"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-initial-router-state.js","layer":"app-pages-browser"},"startTime":1768268610869,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":18920,"timestamp":108933961,"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/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"app-pages-browser"},"startTime":1768268610869,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23348,"timestamp":108933332,"id":1065,"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/utils.js","layer":"pages-dir-browser"},"startTime":1768268610868,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23527,"timestamp":108934087,"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/disable-smooth-scroll.js","layer":"app-pages-browser"},"startTime":1768268610869,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":27062,"timestamp":108934169,"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/disable-smooth-scroll.js","layer":"pages-dir-browser"},"startTime":1768268610869,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":35734,"timestamp":108933593,"id":1068,"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/router-reducer/fetch-server-response.js","layer":"app-pages-browser"},"startTime":1768268610868,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16077,"timestamp":108972396,"id":1075,"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/is-dynamic.js","layer":"pages-dir-browser"},"startTime":1768268610907,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17541,"timestamp":108972196,"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/shared/lib/router/utils/app-paths.js","layer":"app-pages-browser"},"startTime":1768268610907,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2877,"timestamp":108995149,"id":1085,"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/build/polyfills/polyfill-module.js","layer":"pages-dir-browser"},"startTime":1768268610930,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10024,"timestamp":108994403,"id":1077,"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/hooks-client-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1768268610929,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10618,"timestamp":108994496,"id":1078,"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":1768268610929,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11766,"timestamp":108994231,"id":1076,"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/querystring.js","layer":"pages-dir-browser"},"startTime":1768268610929,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12492,"timestamp":108994617,"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/shared/lib/router/adapters.js","layer":"pages-dir-browser"},"startTime":1768268610929,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12755,"timestamp":108994787,"id":1081,"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/is-next-router-error.js","layer":"pages-dir-browser"},"startTime":1768268610930,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13466,"timestamp":108994868,"id":1082,"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/react-client-callbacks/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1768268610930,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16502,"timestamp":108994706,"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/script.js","layer":"pages-dir-browser"},"startTime":1768268610930,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23575,"timestamp":108994960,"id":1083,"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/react-client-callbacks/on-recoverable-error.js","layer":"pages-dir-browser"},"startTime":1768268610930,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23994,"timestamp":108995201,"id":1086,"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":1768268610930,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":28437,"timestamp":108995279,"id":1087,"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/tracing/tracer.js","layer":"pages-dir-browser"},"startTime":1768268610930,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":30897,"timestamp":108995068,"id":1084,"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/react-client-callbacks/error-boundary-callbacks.js","layer":"app-pages-browser"},"startTime":1768268610930,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":419,"timestamp":109034330,"id":1089,"parentId":1017,"tags":{"layer":null},"startTime":1768268610969,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4820,"timestamp":109034212,"id":1088,"parentId":1011,"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":1768268610969,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4532,"timestamp":109034773,"id":1090,"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":1768268610970,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4906,"timestamp":109034832,"id":1091,"parentId":1011,"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":1768268610970,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4759,"timestamp":109035166,"id":1096,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1768268610970,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4486,"timestamp":109035646,"id":1097,"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/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1768268610970,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4818,"timestamp":109035863,"id":1100,"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/client.js","layer":"app-pages-browser"},"startTime":1768268610971,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5313,"timestamp":109035895,"id":1101,"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/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1768268610971,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5576,"timestamp":109035918,"id":1102,"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-server-dom-webpack/client.browser.js","layer":"app-pages-browser"},"startTime":1768268610971,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9199,"timestamp":109035745,"id":1099,"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/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1768268610971,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12871,"timestamp":109034943,"id":1093,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation-untracked.js","layer":"app-pages-browser"},"startTime":1768268610970,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14050,"timestamp":109034865,"id":1092,"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/portal/index.js","layer":"pages-dir-browser"},"startTime":1768268610970,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14269,"timestamp":109035114,"id":1095,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1768268610970,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15674,"timestamp":109035037,"id":1094,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"app-pages-browser"},"startTime":1768268610970,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16037,"timestamp":109035677,"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/components/is-next-router-error.js","layer":"app-pages-browser"},"startTime":1768268610970,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13961,"timestamp":109038567,"id":1105,"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":1768268610973,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4295,"timestamp":109059920,"id":1110,"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":1768268610995,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3702,"timestamp":109061989,"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_wildcard.js","layer":"pages-dir-browser"},"startTime":1768268610997,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12510,"timestamp":109058686,"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/lib/framework/boundary-constants.js","layer":"app-pages-browser"},"startTime":1768268610993,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10789,"timestamp":109060843,"id":1111,"parentId":1008,"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":1768268610996,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10845,"timestamp":109061784,"id":1112,"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":"app-pages-browser"},"startTime":1768268610997,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14982,"timestamp":109059816,"id":1109,"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":1768268610995,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13399,"timestamp":109062070,"id":1114,"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":1768268610997,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":22656,"timestamp":109058967,"id":1107,"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":1768268610994,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4718,"timestamp":109082858,"id":1116,"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/client/add-base-path.js","layer":"pages-dir-browser"},"startTime":1768268611018,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5461,"timestamp":109082727,"id":1115,"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":1768268611018,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4262,"timestamp":109088850,"id":1117,"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":1768268611024,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5740,"timestamp":109088942,"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/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1768268611024,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6930,"timestamp":109089042,"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/client/components/nav-failure-handler.js","layer":"app-pages-browser"},"startTime":1768268611024,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":57271,"timestamp":109097455,"id":1128,"parentId":1082,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268611032,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":69734,"timestamp":109089117,"id":1120,"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/client/components/http-access-fallback/http-access-fallback.js","layer":"pages-dir-browser"},"startTime":1768268611024,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":86141,"timestamp":109089254,"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/shared/lib/router/utils/is-bot.js","layer":"app-pages-browser"},"startTime":1768268611024,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":88011,"timestamp":109089195,"id":1121,"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":1768268611024,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":81555,"timestamp":109096971,"id":1123,"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/router/utils/is-bot.js","layer":"pages-dir-browser"},"startTime":1768268611032,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":87971,"timestamp":109097138,"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/router-reducer/reducers/find-head-in-cache.js","layer":"app-pages-browser"},"startTime":1768268611032,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":89176,"timestamp":109097229,"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/redirect-error.js","layer":"app-pages-browser"},"startTime":1768268611032,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":90341,"timestamp":109097310,"id":1126,"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/client/components/redirect-error.js","layer":"pages-dir-browser"},"startTime":1768268611032,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":91984,"timestamp":109097374,"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.js","layer":"app-pages-browser"},"startTime":1768268611032,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":92148,"timestamp":109097765,"id":1131,"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/router/utils/remove-trailing-slash.js","layer":"pages-dir-browser"},"startTime":1768268611033,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":98878,"timestamp":109097698,"id":1130,"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/client/route-loader.js","layer":"pages-dir-browser"},"startTime":1768268611032,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":102878,"timestamp":109097620,"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/components/links.js","layer":"app-pages-browser"},"startTime":1768268611032,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15665,"timestamp":109240658,"id":1141,"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/router/utils/parse-relative-url.js","layer":"pages-dir-browser"},"startTime":1768268611175,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17917,"timestamp":109240853,"id":1142,"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":1768268611176,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":18310,"timestamp":109240993,"id":1143,"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/page-path/denormalize-page-path.js","layer":"pages-dir-browser"},"startTime":1768268611176,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":18721,"timestamp":109241264,"id":1146,"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/client/detect-domain-locale.js","layer":"pages-dir-browser"},"startTime":1768268611176,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":19585,"timestamp":109241201,"id":1145,"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/router/utils/route-matcher.js","layer":"pages-dir-browser"},"startTime":1768268611176,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":21720,"timestamp":109241329,"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/client/add-locale.js","layer":"pages-dir-browser"},"startTime":1768268611176,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":22547,"timestamp":109241128,"id":1144,"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/i18n/normalize-locale-path.js","layer":"pages-dir-browser"},"startTime":1768268611176,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":18082,"timestamp":109254530,"id":1148,"parentId":1128,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1768268611189,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":823,"timestamp":109277261,"id":1152,"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/lib/is-api-route.js","layer":"pages-dir-browser"},"startTime":1768268611212,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6796,"timestamp":109279924,"id":1158,"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/lib/constants.js","layer":"pages-dir-browser"},"startTime":1768268611215,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11644,"timestamp":109276858,"id":1149,"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/client/remove-locale.js","layer":"pages-dir-browser"},"startTime":1768268611212,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13243,"timestamp":109277171,"id":1151,"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/router/utils/format-url.js","layer":"pages-dir-browser"},"startTime":1768268611212,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13987,"timestamp":109277320,"id":1153,"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/router/utils/get-next-pathname-info.js","layer":"pages-dir-browser"},"startTime":1768268611212,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16771,"timestamp":109277045,"id":1150,"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/router/utils/route-regex.js","layer":"pages-dir-browser"},"startTime":1768268611212,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":631029,"timestamp":109277582,"id":1156,"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/encode-uri-path.js","layer":"pages-dir-browser"},"startTime":1768268611212,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":634167,"timestamp":109277409,"id":1154,"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/client/resolve-href.js","layer":"pages-dir-browser"},"startTime":1768268611212,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":638154,"timestamp":109277495,"id":1155,"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/router/utils/parse-path.js","layer":"pages-dir-browser"},"startTime":1768268611212,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":648636,"timestamp":109279811,"id":1157,"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/router/utils/format-next-pathname-info.js","layer":"pages-dir-browser"},"startTime":1768268611215,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":652347,"timestamp":109280097,"id":1160,"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/router/utils/compare-states.js","layer":"pages-dir-browser"},"startTime":1768268611215,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":653023,"timestamp":109280182,"id":1161,"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/router/utils/is-local-url.js","layer":"pages-dir-browser"},"startTime":1768268611215,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":658776,"timestamp":109279989,"id":1159,"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/bloom-filter.js","layer":"pages-dir-browser"},"startTime":1768268611215,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":659086,"timestamp":109280261,"id":1162,"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/router/utils/omit.js","layer":"pages-dir-browser"},"startTime":1768268611215,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":659443,"timestamp":109280411,"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/shared/lib/is-thenable.js","layer":"app-pages-browser"},"startTime":1768268611215,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":663821,"timestamp":109280333,"id":1163,"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/router/utils/interpolate-as.js","layer":"pages-dir-browser"},"startTime":1768268611215,"traceId":"606b740dac8ad442"}]
|
|
12
|
+
[{"name":"build-module-js","duration":5219,"timestamp":109979826,"id":1167,"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/search-params.browser.prod.js","layer":"app-pages-browser"},"startTime":1768268611915,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12697,"timestamp":109979636,"id":1166,"parentId":1042,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1768268611914,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13842,"timestamp":109979897,"id":1168,"parentId":1046,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/params.browser.prod.js","layer":"app-pages-browser"},"startTime":1768268611915,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":81147,"timestamp":109979954,"id":1169,"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/router/utils/get-asset-path-from-route.js","layer":"pages-dir-browser"},"startTime":1768268611915,"traceId":"606b740dac8ad442"},{"name":"postcss-process","duration":874419,"timestamp":109546146,"id":1165,"parentId":1140,"tags":{},"startTime":1768268611481,"traceId":"606b740dac8ad442"},{"name":"postcss-loader","duration":1194443,"timestamp":109226257,"id":1140,"parentId":1139,"tags":{},"startTime":1768268611161,"traceId":"606b740dac8ad442"},{"name":"css-loader","duration":56046,"timestamp":110421042,"id":1175,"parentId":1139,"tags":{"astUsed":"true"},"startTime":1768268612356,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":507523,"timestamp":109980024,"id":1170,"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/constants.js","layer":"pages-dir-browser"},"startTime":1768268611915,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":514856,"timestamp":109985562,"id":1172,"parentId":1029,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectList.tsx","layer":"app-pages-browser"},"startTime":1768268611920,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":516631,"timestamp":109985278,"id":1171,"parentId":1029,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/Header.tsx","layer":"app-pages-browser"},"startTime":1768268611920,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":517703,"timestamp":109985998,"id":1174,"parentId":1029,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useProjectStore.ts","layer":"app-pages-browser"},"startTime":1768268611921,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":521970,"timestamp":109985783,"id":1173,"parentId":1029,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectModal.tsx","layer":"app-pages-browser"},"startTime":1768268611921,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5194,"timestamp":110554412,"id":1177,"parentId":1057,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268612489,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5726,"timestamp":110554546,"id":1178,"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":"app-pages-browser"},"startTime":1768268612489,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":8643,"timestamp":110553986,"id":1176,"parentId":1035,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/workspace/WorkspaceLayout.tsx","layer":"app-pages-browser"},"startTime":1768268612489,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1389882,"timestamp":109179936,"id":1136,"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/api/navigation.js","layer":"app-pages-browser"},"startTime":1768268611115,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16697,"timestamp":110554643,"id":1179,"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/client/components/router-reducer/router-reducer.js","layer":"app-pages-browser"},"startTime":1768268612489,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":18841,"timestamp":110554854,"id":1181,"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/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"app-pages-browser"},"startTime":1768268612490,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":22537,"timestamp":110554741,"id":1180,"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/client/components/segment-cache.js","layer":"app-pages-browser"},"startTime":1768268612490,"traceId":"606b740dac8ad442"},{"name":"font-loader","duration":1446994,"timestamp":109131596,"id":1134,"parentId":1133,"tags":{},"startTime":1768268611066,"traceId":"606b740dac8ad442"},{"name":"postcss","duration":1926,"timestamp":110578988,"id":1182,"parentId":1133,"tags":{},"startTime":1768268612514,"traceId":"606b740dac8ad442"},{"name":"next-font-loader","duration":1480191,"timestamp":109100831,"id":1133,"parentId":1132,"tags":{},"startTime":1768268611036,"traceId":"606b740dac8ad442"},{"name":"css-loader","duration":13734,"timestamp":110580960,"id":1183,"parentId":1132,"tags":{"astUsed":"true"},"startTime":1768268612516,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":1497595,"timestamp":109097833,"id":1132,"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/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":1768268611033,"traceId":"606b740dac8ad442"},{"name":"font-loader","duration":1437893,"timestamp":109180248,"id":1138,"parentId":1137,"tags":{},"startTime":1768268611115,"traceId":"606b740dac8ad442"},{"name":"postcss","duration":1895,"timestamp":110618213,"id":1184,"parentId":1137,"tags":{},"startTime":1768268612553,"traceId":"606b740dac8ad442"},{"name":"next-font-loader","duration":1439983,"timestamp":109180212,"id":1137,"parentId":1135,"tags":{},"startTime":1768268611115,"traceId":"606b740dac8ad442"},{"name":"css-loader","duration":4462,"timestamp":110620161,"id":1185,"parentId":1135,"tags":{"astUsed":"true"},"startTime":1768268612555,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":1445568,"timestamp":109179757,"id":1135,"parentId":1104,"tags":{"name":"/home/runner/work/ClaudeShip/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":1768268611115,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":5609,"timestamp":110626805,"id":1187,"parentId":1034,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/input.tsx","layer":"app-pages-browser"},"startTime":1768268612562,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":9677,"timestamp":110626519,"id":1186,"parentId":1035,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/button.tsx","layer":"app-pages-browser"},"startTime":1768268612561,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8661,"timestamp":110628086,"id":1188,"parentId":1178,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"app-pages-browser"},"startTime":1768268612563,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9070,"timestamp":110628218,"id":1189,"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/shared/lib/image-config.js","layer":"pages-dir-browser"},"startTime":1768268612563,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12212,"timestamp":110628307,"id":1190,"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/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1768268612563,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":16422,"timestamp":110628394,"id":1191,"parentId":1034,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1768268612563,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10413,"timestamp":110645827,"id":1192,"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":1768268612581,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10736,"timestamp":110645999,"id":1193,"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":1768268612581,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11552,"timestamp":110646126,"id":1194,"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":1768268612581,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13408,"timestamp":110646218,"id":1195,"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/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"app-pages-browser"},"startTime":1768268612581,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17215,"timestamp":110646305,"id":1196,"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/components/router-reducer/prefetch-cache-utils.js","layer":"app-pages-browser"},"startTime":1768268612581,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10350,"timestamp":110670592,"id":1197,"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/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"app-pages-browser"},"startTime":1768268612605,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11136,"timestamp":110670759,"id":1198,"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":1768268612606,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12228,"timestamp":110670852,"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":"app-pages-browser"},"startTime":1768268612606,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":18110,"timestamp":110670940,"id":1200,"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":1768268612606,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6567,"timestamp":110684239,"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/shared/lib/router/utils/as-path-to-search-params.js","layer":"pages-dir-browser"},"startTime":1768268612619,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6994,"timestamp":110684088,"id":1201,"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":1768268612619,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7376,"timestamp":110684510,"id":1204,"parentId":1080,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request-idle-callback.js","layer":"pages-dir-browser"},"startTime":1768268612619,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":8379,"timestamp":110684327,"id":1203,"parentId":1029,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/index.ts","layer":"app-pages-browser"},"startTime":1768268612619,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8643,"timestamp":110684586,"id":1205,"parentId":1082,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268612619,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13929,"timestamp":110684668,"id":1206,"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/client/react-client-callbacks/report-global-error.js","layer":"pages-dir-browser"},"startTime":1768268612619,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14491,"timestamp":110684730,"id":1207,"parentId":1082,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268612620,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14928,"timestamp":110684800,"id":1208,"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/lazy-dynamic/bailout-to-csr.js","layer":"pages-dir-browser"},"startTime":1768268612620,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":763,"timestamp":110705919,"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":1768268612641,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7828,"timestamp":110705963,"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":1768268612641,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9842,"timestamp":110705996,"id":1214,"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-dom/cjs/react-dom.production.js","layer":"app-pages-browser"},"startTime":1768268612641,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":28934,"timestamp":110706059,"id":1215,"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":1768268612641,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":35848,"timestamp":110703219,"id":1209,"parentId":1200,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268612638,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":2471711,"timestamp":108272354,"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":1768268610207,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":227162,"timestamp":110743706,"id":1216,"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":1768268612679,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":270046,"timestamp":110705849,"id":1211,"parentId":1107,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1768268612641,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":270873,"timestamp":110705740,"id":1210,"parentId":1107,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"pages-dir-browser"},"startTime":1768268612641,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":542,"timestamp":110984789,"id":1227,"parentId":1088,"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":1768268612920,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3494,"timestamp":110984820,"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":1768268612920,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7249,"timestamp":110982435,"id":1217,"parentId":1209,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268612917,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7395,"timestamp":110982556,"id":1218,"parentId":1209,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268612917,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14200,"timestamp":110984062,"id":1219,"parentId":1107,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"pages-dir-browser"},"startTime":1768268612919,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14940,"timestamp":110984176,"id":1220,"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/client/normalize-trailing-slash.js","layer":"pages-dir-browser"},"startTime":1768268612919,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15594,"timestamp":110984271,"id":1221,"parentId":1115,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268612919,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15982,"timestamp":110984378,"id":1222,"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/router/utils/add-path-prefix.js","layer":"pages-dir-browser"},"startTime":1768268612919,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16300,"timestamp":110984467,"id":1223,"parentId":1115,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268612919,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16943,"timestamp":110984670,"id":1225,"parentId":1122,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268612919,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":20664,"timestamp":110984738,"id":1226,"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/shared/lib/router/utils/html-bots.js","layer":"pages-dir-browser"},"startTime":1768268612920,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23020,"timestamp":110984579,"id":1224,"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/shared/lib/router/utils/index.js","layer":"pages-dir-browser"},"startTime":1768268612919,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":135430,"timestamp":111013563,"id":1229,"parentId":1091,"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":1768268612948,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8520,"timestamp":111156175,"id":1230,"parentId":1221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"app-pages-browser"},"startTime":1768268613091,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5438,"timestamp":111170830,"id":1231,"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/trusted-types.js","layer":"pages-dir-browser"},"startTime":1768268613106,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":740,"timestamp":111183201,"id":1234,"parentId":1080,"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":1768268613118,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13910,"timestamp":111171000,"id":1232,"parentId":1125,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1768268613106,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17416,"timestamp":111171140,"id":1233,"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/components/redirect-status-code.js","layer":"pages-dir-browser"},"startTime":1768268613106,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3977,"timestamp":111191879,"id":1237,"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":1768268613127,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5021,"timestamp":111191972,"id":1238,"parentId":1145,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268613127,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5998,"timestamp":111192092,"id":1239,"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/remove-path-prefix.js","layer":"pages-dir-browser"},"startTime":1768268613127,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7180,"timestamp":111192186,"id":1240,"parentId":1150,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268613127,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7510,"timestamp":111192277,"id":1241,"parentId":1150,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268613127,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10308,"timestamp":111191748,"id":1236,"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/components/errors/graceful-degrade-boundary.js","layer":"app-pages-browser"},"startTime":1768268613127,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3372,"timestamp":111203277,"id":1243,"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/shared/lib/router/utils/add-path-suffix.js","layer":"pages-dir-browser"},"startTime":1768268613138,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3703,"timestamp":111203446,"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/shared/lib/router/utils/add-locale.js","layer":"pages-dir-browser"},"startTime":1768268613138,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2935,"timestamp":111215634,"id":1246,"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/shared/lib/server-inserted-html.shared-runtime.js","layer":"app-pages-browser"},"startTime":1768268613150,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6174,"timestamp":111215748,"id":1247,"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/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1768268613151,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6850,"timestamp":111215864,"id":1248,"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/router-reducer/reducers/get-segment-value.js","layer":"app-pages-browser"},"startTime":1768268613151,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7606,"timestamp":111216097,"id":1250,"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/unrecognized-action-error.js","layer":"app-pages-browser"},"startTime":1768268613151,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10136,"timestamp":111215437,"id":1245,"parentId":1167,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268613150,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":22230,"timestamp":111215980,"id":1249,"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/modern-browserslist-target.js","layer":"pages-dir-browser"},"startTime":1768268613151,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":3283,"timestamp":111244084,"id":1251,"parentId":1171,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/LanguageSwitcher.tsx","layer":"app-pages-browser"},"startTime":1768268613179,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":4293,"timestamp":111244401,"id":1252,"parentId":1172,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectCard.tsx","layer":"app-pages-browser"},"startTime":1768268613179,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":5630,"timestamp":111244575,"id":1253,"parentId":1172,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectCard.tsx","layer":"app-pages-browser"},"startTime":1768268613179,"traceId":"606b740dac8ad442"},{"name":"build-module-css","duration":2035094,"timestamp":109222653,"id":1139,"parentId":1108,"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":1768268611157,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":3996,"timestamp":111255216,"id":1254,"parentId":1173,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/dialog.tsx","layer":"app-pages-browser"},"startTime":1768268613190,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8306,"timestamp":111255468,"id":1255,"parentId":1179,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268613190,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3370,"timestamp":111271427,"id":1257,"parentId":1179,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268613206,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4856,"timestamp":111271262,"id":1256,"parentId":1179,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268613206,"traceId":"606b740dac8ad442"}]
|
|
13
|
+
[{"name":"build-module-js","duration":935,"timestamp":111280040,"id":1264,"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":1768268613215,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":2258723,"timestamp":109035950,"id":1103,"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":1768268610971,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":2257374,"timestamp":109038341,"id":1104,"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":1768268610973,"traceId":"606b740dac8ad442"},{"name":"build-module-css","duration":2243265,"timestamp":109059135,"id":1108,"parentId":991,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":"app-pages-browser"},"startTime":1768268610994,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":24149,"timestamp":111279471,"id":1258,"parentId":1179,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268613214,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":24740,"timestamp":111279774,"id":1261,"parentId":1181,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268613215,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":24952,"timestamp":111279855,"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/shared/lib/router/utils/cache-busting-search-param.js","layer":"app-pages-browser"},"startTime":1768268613215,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":25897,"timestamp":111279937,"id":1263,"parentId":1197,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"app-pages-browser"},"startTime":1768268613215,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":28602,"timestamp":111279598,"id":1259,"parentId":1179,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268613214,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":29638,"timestamp":111279687,"id":1260,"parentId":1179,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268613214,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":128953,"timestamp":111191443,"id":1235,"parentId":1171,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/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":1768268613126,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":243,"timestamp":111323921,"id":1266,"parentId":1103,"tags":{},"startTime":1768268613259,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":36,"timestamp":111324187,"id":1267,"parentId":1104,"tags":{},"startTime":1768268613259,"traceId":"606b740dac8ad442"},{"name":"build-module","duration":47,"timestamp":111324234,"id":1268,"parentId":1108,"tags":{},"startTime":1768268613259,"traceId":"606b740dac8ad442"},{"name":"build-module-json","duration":2566,"timestamp":111324318,"id":1269,"parentId":1203,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/en.json","layer":"app-pages-browser"},"startTime":1768268613259,"traceId":"606b740dac8ad442"},{"name":"build-module-json","duration":1719,"timestamp":111325277,"id":1270,"parentId":1203,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/ko.json","layer":"app-pages-browser"},"startTime":1768268613260,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7484,"timestamp":111322792,"id":1265,"parentId":1192,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268613258,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":6996,"timestamp":111325325,"id":1271,"parentId":1176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ChatPanel.tsx","layer":"app-pages-browser"},"startTime":1768268613260,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":10091,"timestamp":111325724,"id":1273,"parentId":1176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileViewer.tsx","layer":"app-pages-browser"},"startTime":1768268613261,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":20215,"timestamp":111325917,"id":1274,"parentId":1176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/PreviewPanel.tsx","layer":"app-pages-browser"},"startTime":1768268613261,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":23161,"timestamp":111325531,"id":1272,"parentId":1176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileExplorer.tsx","layer":"app-pages-browser"},"startTime":1768268613260,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":26818,"timestamp":111326144,"id":1275,"parentId":1176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/database/DatabasePanel.tsx","layer":"app-pages-browser"},"startTime":1768268613261,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":34343,"timestamp":111326272,"id":1276,"parentId":1176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/testing/TestRunner.tsx","layer":"app-pages-browser"},"startTime":1768268613261,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":179787,"timestamp":111194681,"id":1242,"parentId":1171,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268613129,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":12577,"timestamp":111363531,"id":1277,"parentId":1252,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/card.tsx","layer":"app-pages-browser"},"startTime":1768268613298,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":14649,"timestamp":111378260,"id":1278,"parentId":1176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/checkpoint/CheckpointPanel.tsx","layer":"app-pages-browser"},"startTime":1768268613313,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":17327,"timestamp":111378443,"id":1279,"parentId":1176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/env/EnvPanel.tsx","layer":"app-pages-browser"},"startTime":1768268613313,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":26507,"timestamp":111387715,"id":1281,"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":1768268613323,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":27097,"timestamp":111387467,"id":1280,"parentId":1187,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1768268613322,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14134,"timestamp":111403063,"id":1282,"parentId":1242,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1768268613338,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14275,"timestamp":111403349,"id":1284,"parentId":1242,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"app-pages-browser"},"startTime":1768268613338,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":16315,"timestamp":111403256,"id":1283,"parentId":1242,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"app-pages-browser"},"startTime":1768268613338,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":2100,"timestamp":111425463,"id":1287,"parentId":1174,"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":1768268613360,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":8587,"timestamp":111425632,"id":1288,"parentId":1203,"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":1768268613360,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":10599,"timestamp":111424980,"id":1285,"parentId":1271,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageList.tsx","layer":"app-pages-browser"},"startTime":1768268613360,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":13113,"timestamp":111425273,"id":1286,"parentId":1271,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageInput.tsx","layer":"app-pages-browser"},"startTime":1768268613360,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3046,"timestamp":111441449,"id":1292,"parentId":1234,"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":1768268613376,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4993,"timestamp":111441488,"id":1293,"parentId":1238,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/route-pattern-normalizer.js","layer":"pages-dir-browser"},"startTime":1768268613376,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23302,"timestamp":111441028,"id":1289,"parentId":1283,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268613376,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":39729,"timestamp":111441338,"id":1291,"parentId":1274,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ErrorOverlay.tsx","layer":"app-pages-browser"},"startTime":1768268613376,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":46966,"timestamp":111441189,"id":1290,"parentId":1274,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ConsoleViewer.tsx","layer":"app-pages-browser"},"startTime":1768268613376,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":158066,"timestamp":111441585,"id":1295,"parentId":1034,"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":1768268613376,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":176540,"timestamp":111441650,"id":1296,"parentId":1171,"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":1768268613376,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":176889,"timestamp":111441717,"id":1297,"parentId":1176,"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":1768268613377,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":177329,"timestamp":111441515,"id":1294,"parentId":1035,"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":1768268613376,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":177351,"timestamp":111441783,"id":1298,"parentId":1252,"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":1768268613377,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":177467,"timestamp":111441908,"id":1300,"parentId":1271,"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":1768268613377,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":74536,"timestamp":111557920,"id":1308,"parentId":1286,"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":1768268613493,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":190935,"timestamp":111442151,"id":1303,"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":1768268613377,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":191598,"timestamp":111441849,"id":1299,"parentId":1253,"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":1768268613377,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":191781,"timestamp":111441962,"id":1301,"parentId":1273,"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":1768268613377,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":195042,"timestamp":111442201,"id":1304,"parentId":1275,"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":1768268613377,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":195582,"timestamp":111442091,"id":1302,"parentId":1272,"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":1768268613377,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":196883,"timestamp":111442254,"id":1305,"parentId":1276,"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":1768268613377,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":197227,"timestamp":111442358,"id":1307,"parentId":1279,"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":1768268613377,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":200750,"timestamp":111442308,"id":1306,"parentId":1278,"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":1768268613377,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":22833,"timestamp":111620695,"id":1309,"parentId":1291,"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":1768268613556,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":23060,"timestamp":111620896,"id":1310,"parentId":1290,"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":1768268613556,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":2449,"timestamp":111697390,"id":1311,"parentId":1186,"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":1768268613632,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1322,"timestamp":111710584,"id":1322,"parentId":1216,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1768268613645,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9886,"timestamp":111703672,"id":1312,"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/not-found.js","layer":"app-pages-browser"},"startTime":1768268613638,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10797,"timestamp":111703827,"id":1313,"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/forbidden.js","layer":"app-pages-browser"},"startTime":1768268613639,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11635,"timestamp":111703934,"id":1314,"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/unauthorized.js","layer":"app-pages-browser"},"startTime":1768268613639,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12229,"timestamp":111704051,"id":1315,"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/unstable-rethrow.js","layer":"app-pages-browser"},"startTime":1768268613639,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1265,"timestamp":111722681,"id":1324,"parentId":1229,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/scheduler@0.27.0/node_modules/scheduler/index.js","layer":"pages-dir-browser"},"startTime":1768268613657,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":27621,"timestamp":111704342,"id":1317,"parentId":1285,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageItem.tsx","layer":"app-pages-browser"},"startTime":1768268613639,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":28112,"timestamp":111704714,"id":1319,"parentId":1286,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ModeToggle.tsx","layer":"app-pages-browser"},"startTime":1768268613640,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":29227,"timestamp":111704893,"id":1320,"parentId":1286,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/QueuePreview.tsx","layer":"app-pages-browser"},"startTime":1768268613640,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":25090,"timestamp":111710356,"id":1321,"parentId":1286,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/FilePreview.tsx","layer":"app-pages-browser"},"startTime":1768268613645,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":31654,"timestamp":111704142,"id":1316,"parentId":1173,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/index.ts","layer":"app-pages-browser"},"startTime":1768268613639,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":40905,"timestamp":111704528,"id":1318,"parentId":1285,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/StreamingMessage.tsx","layer":"app-pages-browser"},"startTime":1768268613639,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":35785,"timestamp":111710785,"id":1323,"parentId":1255,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"app-pages-browser"},"startTime":1768268613646,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6180,"timestamp":111751500,"id":1332,"parentId":1238,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/path-to-regexp/index.js","layer":"pages-dir-browser"},"startTime":1768268613686,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":39852,"timestamp":111722781,"id":1325,"parentId":1255,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"app-pages-browser"},"startTime":1768268613658,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":40587,"timestamp":111722929,"id":1326,"parentId":1255,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"app-pages-browser"},"startTime":1768268613658,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":41277,"timestamp":111723056,"id":1327,"parentId":1255,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"app-pages-browser"},"startTime":1768268613658,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":43737,"timestamp":111723325,"id":1330,"parentId":1255,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/aliased-prefetch-navigations.js","layer":"app-pages-browser"},"startTime":1768268613658,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":44677,"timestamp":111723404,"id":1331,"parentId":1255,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"app-pages-browser"},"startTime":1768268613658,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":46786,"timestamp":111723153,"id":1328,"parentId":1255,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"app-pages-browser"},"startTime":1768268613658,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":53041,"timestamp":111723239,"id":1329,"parentId":1255,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"app-pages-browser"},"startTime":1768268613658,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7630,"timestamp":111781396,"id":1334,"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/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1768268613716,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9049,"timestamp":111781501,"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/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"app-pages-browser"},"startTime":1768268613716,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9767,"timestamp":111781612,"id":1336,"parentId":1259,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268613716,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10248,"timestamp":111781695,"id":1337,"parentId":1258,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268613716,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":5678,"timestamp":111796096,"id":1342,"parentId":1287,"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":1768268613731,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":6059,"timestamp":111796342,"id":1343,"parentId":1287,"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":1768268613731,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6014,"timestamp":111796697,"id":1345,"parentId":1261,"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":1768268613731,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6046,"timestamp":111796942,"id":1346,"parentId":1261,"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":1768268613732,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":35746,"timestamp":111781785,"id":1338,"parentId":1242,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/use-merged-ref.js","layer":"app-pages-browser"},"startTime":1768268613717,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":36450,"timestamp":111781866,"id":1339,"parentId":1235,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268613717,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":39754,"timestamp":111781213,"id":1333,"parentId":1259,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268613716,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":39214,"timestamp":111782139,"id":1341,"parentId":1242,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/error-once.js","layer":"app-pages-browser"},"startTime":1768268613717,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":44690,"timestamp":111781942,"id":1340,"parentId":1271,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useChatStore.ts","layer":"app-pages-browser"},"startTime":1768268613717,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":29913,"timestamp":111797125,"id":1347,"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-alert.js","layer":"app-pages-browser"},"startTime":1768268613732,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":30137,"timestamp":111797217,"id":1348,"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/check.js","layer":"app-pages-browser"},"startTime":1768268613732,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":30390,"timestamp":111797299,"id":1349,"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/database.js","layer":"app-pages-browser"},"startTime":1768268613732,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":32181,"timestamp":111796528,"id":1344,"parentId":1274,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/usePreviewStore.ts","layer":"app-pages-browser"},"startTime":1768268613731,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":31678,"timestamp":111797382,"id":1350,"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/folder-open.js","layer":"app-pages-browser"},"startTime":1768268613732,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":31536,"timestamp":111797867,"id":1356,"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/refresh-cw.js","layer":"app-pages-browser"},"startTime":1768268613733,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":31763,"timestamp":111797947,"id":1357,"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/arrow-left.js","layer":"app-pages-browser"},"startTime":1768268613733,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":32026,"timestamp":111798056,"id":1358,"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/settings.js","layer":"app-pages-browser"},"startTime":1768268613733,"traceId":"606b740dac8ad442"}]
|
|
14
|
+
[{"name":"build-module-js","duration":32262,"timestamp":111798142,"id":1359,"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/eye.js","layer":"app-pages-browser"},"startTime":1768268613733,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":33483,"timestamp":111797467,"id":1351,"parentId":1317,"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":1768268613732,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":46901,"timestamp":111797635,"id":1353,"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":1768268613732,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":47085,"timestamp":111797712,"id":1354,"parentId":1321,"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":1768268613733,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":47764,"timestamp":111797790,"id":1355,"parentId":1318,"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":1768268613733,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":48228,"timestamp":111797557,"id":1352,"parentId":1319,"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":1768268613732,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12950,"timestamp":111851785,"id":1360,"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/loader-circle.js","layer":"app-pages-browser"},"startTime":1768268613787,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13142,"timestamp":111851972,"id":1361,"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/flask-conical.js","layer":"app-pages-browser"},"startTime":1768268613787,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13381,"timestamp":111852093,"id":1362,"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/folder-tree.js","layer":"app-pages-browser"},"startTime":1768268613787,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13625,"timestamp":111852181,"id":1363,"parentId":1297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-branch.js","layer":"app-pages-browser"},"startTime":1768268613787,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14016,"timestamp":111852265,"id":1364,"parentId":1297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings-2.js","layer":"app-pages-browser"},"startTime":1768268613787,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2987,"timestamp":111867313,"id":1365,"parentId":1297,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/x.js","layer":"app-pages-browser"},"startTime":1768268613802,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":5725,"timestamp":111868611,"id":1367,"parentId":1318,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/AskUserQuestionBlock.tsx","layer":"app-pages-browser"},"startTime":1768268613803,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5452,"timestamp":111870416,"id":1368,"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/plus.js","layer":"app-pages-browser"},"startTime":1768268613805,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5746,"timestamp":111870520,"id":1369,"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/sparkles.js","layer":"app-pages-browser"},"startTime":1768268613805,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":14631,"timestamp":111868437,"id":1366,"parentId":1317,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MarkdownRenderer.tsx","layer":"app-pages-browser"},"startTime":1768268613803,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12840,"timestamp":111870586,"id":1370,"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/message-square-plus.js","layer":"app-pages-browser"},"startTime":1768268613805,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6826,"timestamp":111877981,"id":1372,"parentId":1308,"tags":{"name":"/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":1768268613813,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7012,"timestamp":111878114,"id":1373,"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/external-link.js","layer":"app-pages-browser"},"startTime":1768268613813,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7231,"timestamp":111878205,"id":1374,"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/monitor.js","layer":"app-pages-browser"},"startTime":1768268613813,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8045,"timestamp":111877821,"id":1371,"parentId":1308,"tags":{"name":"/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":1768268613813,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7747,"timestamp":111886940,"id":1375,"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/package.js","layer":"app-pages-browser"},"startTime":1768268613822,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7909,"timestamp":111887123,"id":1376,"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/play.js","layer":"app-pages-browser"},"startTime":1768268613822,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8225,"timestamp":111887228,"id":1377,"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/rotate-ccw.js","layer":"app-pages-browser"},"startTime":1768268613822,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2162,"timestamp":111895710,"id":1378,"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/smartphone.js","layer":"app-pages-browser"},"startTime":1768268613831,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5293,"timestamp":111895871,"id":1379,"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/square.js","layer":"app-pages-browser"},"startTime":1768268613831,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5511,"timestamp":111895978,"id":1380,"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/tablet.js","layer":"app-pages-browser"},"startTime":1768268613831,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4373,"timestamp":111897985,"id":1381,"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/terminal.js","layer":"app-pages-browser"},"startTime":1768268613833,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4565,"timestamp":111898130,"id":1382,"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/zap.js","layer":"app-pages-browser"},"startTime":1768268613833,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8345,"timestamp":111903270,"id":1384,"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/globe.js","layer":"app-pages-browser"},"startTime":1768268613838,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8696,"timestamp":111903361,"id":1385,"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/server.js","layer":"app-pages-browser"},"startTime":1768268613838,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9176,"timestamp":111903142,"id":1383,"parentId":1367,"tags":{"name":"__barrel_optimize__?names=Check,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1768268613838,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5472,"timestamp":111907698,"id":1386,"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/trash-2.js","layer":"app-pages-browser"},"startTime":1768268613842,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5665,"timestamp":111907830,"id":1387,"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/copy.js","layer":"app-pages-browser"},"startTime":1768268613843,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5860,"timestamp":111907926,"id":1388,"parentId":1304,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-left.js","layer":"app-pages-browser"},"startTime":1768268613843,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5980,"timestamp":111908145,"id":1390,"parentId":1304,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-right.js","layer":"app-pages-browser"},"startTime":1768268613843,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6449,"timestamp":111908044,"id":1389,"parentId":1304,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/table.js","layer":"app-pages-browser"},"startTime":1768268613843,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6606,"timestamp":111908246,"id":1391,"parentId":1302,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file.js","layer":"app-pages-browser"},"startTime":1768268613843,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6816,"timestamp":111908340,"id":1392,"parentId":1302,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-down.js","layer":"app-pages-browser"},"startTime":1768268613843,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11110,"timestamp":111908439,"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/folder.js","layer":"app-pages-browser"},"startTime":1768268613843,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2033,"timestamp":111920306,"id":1394,"parentId":1305,"tags":{"name":"/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":1768268613855,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3675,"timestamp":111922592,"id":1395,"parentId":1305,"tags":{"name":"/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":1768268613857,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3420,"timestamp":111923488,"id":1396,"parentId":1305,"tags":{"name":"/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":1768268613858,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3679,"timestamp":111923627,"id":1397,"parentId":1307,"tags":{"name":"/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":1768268613858,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3877,"timestamp":111923744,"id":1398,"parentId":1307,"tags":{"name":"/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":1768268613859,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4070,"timestamp":111923848,"id":1399,"parentId":1307,"tags":{"name":"/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":1768268613859,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":85233,"timestamp":111930849,"id":1400,"parentId":1273,"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":1768268613866,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":88473,"timestamp":111931103,"id":1401,"parentId":1310,"tags":{"name":"/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":1768268613866,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1358,"timestamp":112023436,"id":1404,"parentId":1280,"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":1768268613958,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":3088,"timestamp":112022976,"id":1402,"parentId":1367,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/radio-group.tsx","layer":"app-pages-browser"},"startTime":1768268613958,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":11833,"timestamp":112023258,"id":1403,"parentId":1367,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/checkbox.tsx","layer":"app-pages-browser"},"startTime":1768268613958,"traceId":"606b740dac8ad442"},{"name":"build-module-tsx","duration":10502,"timestamp":112024984,"id":1405,"parentId":1367,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/label.tsx","layer":"app-pages-browser"},"startTime":1768268613960,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":14317,"timestamp":112037261,"id":1406,"parentId":1280,"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":1768268613972,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8215,"timestamp":112055043,"id":1411,"parentId":1322,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/scheduler/cjs/scheduler.production.js","layer":"app-pages-browser"},"startTime":1768268613990,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13454,"timestamp":112054852,"id":1409,"parentId":1335,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@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":1768268613990,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14301,"timestamp":112054755,"id":1408,"parentId":1315,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268613990,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":14718,"timestamp":112054935,"id":1410,"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/createLucideIcon.js","layer":"app-pages-browser"},"startTime":1768268613990,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15310,"timestamp":112054575,"id":1407,"parentId":1402,"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":1768268613989,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6720,"timestamp":112077223,"id":1415,"parentId":1351,"tags":{"name":"/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":1768268614012,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7220,"timestamp":112077118,"id":1414,"parentId":1351,"tags":{"name":"/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":1768268614012,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7859,"timestamp":112076977,"id":1413,"parentId":1351,"tags":{"name":"/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":1768268614012,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8354,"timestamp":112076782,"id":1412,"parentId":1403,"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":1768268614012,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3539,"timestamp":112090153,"id":1416,"parentId":1351,"tags":{"name":"/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":1768268614025,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2458,"timestamp":112092320,"id":1418,"parentId":1351,"tags":{"name":"/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":1768268614027,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7773,"timestamp":112090311,"id":1417,"parentId":1339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_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":1768268614025,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5859,"timestamp":112092471,"id":1420,"parentId":1351,"tags":{"name":"/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":1768268614027,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6006,"timestamp":112092528,"id":1421,"parentId":1353,"tags":{"name":"/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":1768268614027,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6165,"timestamp":112092581,"id":1422,"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":1768268614027,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10519,"timestamp":112094130,"id":1423,"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":1768268614029,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":17664,"timestamp":112092413,"id":1419,"parentId":1339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268614027,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6650,"timestamp":112114910,"id":1424,"parentId":1324,"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":1768268614050,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7805,"timestamp":112125466,"id":1425,"parentId":1417,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268614060,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8221,"timestamp":112125651,"id":1426,"parentId":1417,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268614060,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":8616,"timestamp":112125870,"id":1428,"parentId":1417,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/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":1768268614061,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13331,"timestamp":112125951,"id":1429,"parentId":1339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268614061,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":13841,"timestamp":112126056,"id":1430,"parentId":1316,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/project.ts","layer":"app-pages-browser"},"startTime":1768268614061,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":13952,"timestamp":112126232,"id":1431,"parentId":1316,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/chat.ts","layer":"app-pages-browser"},"startTime":1768268614061,"traceId":"606b740dac8ad442"},{"name":"build-module-ts","duration":13949,"timestamp":112126415,"id":1432,"parentId":1316,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/preview.ts","layer":"app-pages-browser"},"startTime":1768268614061,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":15220,"timestamp":112125756,"id":1427,"parentId":1417,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268614061,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":965,"timestamp":112144817,"id":1436,"parentId":1366,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/index.js","layer":"app-pages-browser"},"startTime":1768268614080,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":925,"timestamp":112145032,"id":1437,"parentId":1366,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/index.js","layer":"app-pages-browser"},"startTime":1768268614080,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2766,"timestamp":112143620,"id":1434,"parentId":1425,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268614078,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3752,"timestamp":112143460,"id":1433,"parentId":1425,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268614078,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4152,"timestamp":112143722,"id":1435,"parentId":1425,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268614079,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1301,"timestamp":112148589,"id":1438,"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/icons/circle.js","layer":"app-pages-browser"},"startTime":1768268614083,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2488,"timestamp":112148712,"id":1439,"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/Icon.js","layer":"app-pages-browser"},"startTime":1768268614084,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1790,"timestamp":112154191,"id":1441,"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/shared/src/utils.js","layer":"app-pages-browser"},"startTime":1768268614089,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3020,"timestamp":112154067,"id":1440,"parentId":1419,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.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":1768268614089,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3422,"timestamp":112163125,"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":1768268614098,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":10113,"timestamp":112161878,"id":1442,"parentId":1439,"tags":{"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":1768268614097,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3269,"timestamp":112173858,"id":1444,"parentId":1437,"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":1768268614109,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":920,"timestamp":112184729,"id":1448,"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":1768268614120,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1775,"timestamp":112184532,"id":1447,"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":1768268614119,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":7629,"timestamp":112181847,"id":1445,"parentId":1402,"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":1768268614117,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":8727,"timestamp":112182805,"id":1446,"parentId":1403,"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":1768268614118,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":8816,"timestamp":112184780,"id":1449,"parentId":1405,"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":1768268614120,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":828,"timestamp":112224812,"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":1768268614160,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":780,"timestamp":112232810,"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":1768268614168,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":719,"timestamp":112234415,"id":1452,"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":1768268614169,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":673,"timestamp":112238598,"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":1768268614173,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":762,"timestamp":112240052,"id":1454,"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":1768268614175,"traceId":"606b740dac8ad442"}]
|
|
15
|
+
[{"name":"build-module-js","duration":626,"timestamp":112246027,"id":1455,"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":1768268614181,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":646,"timestamp":112252072,"id":1456,"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":1768268614187,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":927,"timestamp":112253220,"id":1457,"parentId":1444,"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":1768268614188,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1453,"timestamp":112253432,"id":1458,"parentId":1444,"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":1768268614188,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2354,"timestamp":112258347,"id":1459,"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":1768268614193,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4343,"timestamp":112258416,"id":1460,"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":1768268614193,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4488,"timestamp":112258617,"id":1461,"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":1768268614193,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":9721,"timestamp":112258813,"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":1768268614194,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":4000468,"timestamp":108272446,"id":983,"parentId":978,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1768268610207,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":4000434,"timestamp":108272496,"id":985,"parentId":978,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1768268610207,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":4001153,"timestamp":108271806,"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":1768268610207,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":4000456,"timestamp":108272518,"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":1768268610207,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":4000472,"timestamp":108272509,"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":1768268610207,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":4000326,"timestamp":108272666,"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":1768268610207,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":4000753,"timestamp":108272286,"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":1768268610207,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":4000565,"timestamp":108272480,"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":1768268610207,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":4000739,"timestamp":108272325,"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":1768268610207,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1757,"timestamp":112276488,"id":1463,"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":1768268614211,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1218,"timestamp":112284546,"id":1464,"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":1768268614219,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":2180,"timestamp":112292682,"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":1768268614227,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":3115,"timestamp":112302530,"id":1466,"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":1768268614237,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1454,"timestamp":112312500,"id":1467,"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":1768268614247,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":995,"timestamp":112318045,"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":1768268614253,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1361,"timestamp":112324779,"id":1469,"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":1768268614260,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":7468,"timestamp":112335970,"id":1470,"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":1768268614271,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":9458,"timestamp":112338397,"id":1471,"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":1768268614273,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1045,"timestamp":112353375,"id":1472,"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":1768268614288,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":991,"timestamp":112356735,"id":1473,"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":1768268614292,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":957,"timestamp":112359240,"id":1474,"parentId":1452,"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":1768268614294,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1465,"timestamp":112365212,"id":1475,"parentId":1449,"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":1768268614300,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1758,"timestamp":112370825,"id":1476,"parentId":1454,"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":1768268614306,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7209,"timestamp":112371154,"id":1477,"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":1768268614306,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1882,"timestamp":112383670,"id":1478,"parentId":1455,"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":1768268614318,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4647,"timestamp":112383925,"id":1479,"parentId":1456,"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":1768268614319,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1688,"timestamp":112390950,"id":1480,"parentId":1457,"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":1768268614326,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":863,"timestamp":112405526,"id":1481,"parentId":1454,"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":1768268614340,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1729,"timestamp":112414676,"id":1482,"parentId":1458,"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":1768268614349,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":499,"timestamp":112421948,"id":1483,"parentId":1458,"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":1768268614357,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":387,"timestamp":112425049,"id":1484,"parentId":1458,"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":1768268614360,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":537,"timestamp":112438027,"id":1485,"parentId":1458,"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":1768268614373,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":721,"timestamp":112440341,"id":1486,"parentId":1458,"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":1768268614375,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":598,"timestamp":112445742,"id":1487,"parentId":1458,"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":1768268614381,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":578,"timestamp":112448709,"id":1488,"parentId":1458,"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":1768268614384,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1139,"timestamp":112451032,"id":1489,"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":1768268614386,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":621,"timestamp":112455434,"id":1490,"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":1768268614390,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1057,"timestamp":112456773,"id":1491,"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":1768268614392,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":361,"timestamp":112460610,"id":1492,"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":1768268614395,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":586,"timestamp":112465382,"id":1493,"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":1768268614400,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":525,"timestamp":112468117,"id":1494,"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":1768268614403,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":598,"timestamp":112470844,"id":1495,"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":1768268614406,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":794,"timestamp":112473069,"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":1768268614408,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":801,"timestamp":112475971,"id":1497,"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":1768268614411,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":887,"timestamp":112479057,"id":1498,"parentId":1477,"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":1768268614414,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1141,"timestamp":112479261,"id":1499,"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":1768268614414,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2804,"timestamp":112483815,"id":1500,"parentId":1479,"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":1768268614419,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":7504,"timestamp":112483950,"id":1501,"parentId":1467,"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":1768268614419,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":833,"timestamp":112492097,"id":1502,"parentId":1479,"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":1768268614427,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1550,"timestamp":112500680,"id":1503,"parentId":1479,"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":1768268614435,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4019,"timestamp":112502845,"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":1768268614438,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4410,"timestamp":112503098,"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/index.js","layer":"app-pages-browser"},"startTime":1768268614438,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5013,"timestamp":112503269,"id":1506,"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":1768268614438,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":764,"timestamp":112534089,"id":1507,"parentId":1474,"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":1768268614469,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5389,"timestamp":112536455,"id":1508,"parentId":1483,"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":1768268614471,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5764,"timestamp":112536691,"id":1509,"parentId":1483,"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":1768268614471,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":14600,"timestamp":112550214,"id":1510,"parentId":1470,"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":1768268614485,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":825,"timestamp":112567530,"id":1511,"parentId":1470,"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":1768268614502,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":892,"timestamp":112575729,"id":1512,"parentId":1470,"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":1768268614511,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":582,"timestamp":112582982,"id":1513,"parentId":1477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/bail@2.0.2/node_modules/bail/index.js","layer":"app-pages-browser"},"startTime":1768268614518,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":669,"timestamp":112586373,"id":1514,"parentId":1477,"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":1768268614521,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":787,"timestamp":112588985,"id":1515,"parentId":1477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.js","layer":"app-pages-browser"},"startTime":1768268614524,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2377,"timestamp":112589147,"id":1516,"parentId":1484,"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":1768268614524,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3681,"timestamp":112589251,"id":1517,"parentId":1484,"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":1768268614524,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1220,"timestamp":112606602,"id":1518,"parentId":1477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/extend@3.0.2/node_modules/extend/index.js","layer":"app-pages-browser"},"startTime":1768268614541,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":452,"timestamp":112608893,"id":1519,"parentId":1478,"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":1768268614544,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":563,"timestamp":112615020,"id":1520,"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":1768268614550,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":465,"timestamp":112620434,"id":1521,"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":1768268614555,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":410,"timestamp":112622547,"id":1522,"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":1768268614557,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":382,"timestamp":112624405,"id":1523,"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":1768268614559,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":373,"timestamp":112626441,"id":1524,"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":1768268614561,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":854,"timestamp":112628984,"id":1525,"parentId":1485,"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":1768268614564,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1733,"timestamp":112629136,"id":1526,"parentId":1485,"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":1768268614564,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1347,"timestamp":112632252,"id":1527,"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":1768268614567,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3747,"timestamp":112632393,"id":1528,"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":1768268614567,"traceId":"606b740dac8ad442"},{"name":"build-module-mjs","duration":1541,"timestamp":112639865,"id":1529,"parentId":1475,"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":1768268614575,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":925,"timestamp":112642277,"id":1530,"parentId":1487,"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":1768268614577,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":996,"timestamp":112642411,"id":1531,"parentId":1488,"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":1768268614577,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":807,"timestamp":112643902,"id":1532,"parentId":1488,"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":1768268614579,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":590,"timestamp":112646317,"id":1533,"parentId":1482,"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":1768268614581,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":602,"timestamp":112647389,"id":1534,"parentId":1490,"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":1768268614582,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1849,"timestamp":112657509,"id":1535,"parentId":1491,"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":1768268614592,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3695,"timestamp":112657664,"id":1536,"parentId":1491,"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":1768268614592,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6487,"timestamp":112657768,"id":1537,"parentId":1491,"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":1768268614593,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6733,"timestamp":112657862,"id":1538,"parentId":1491,"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":1768268614593,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6909,"timestamp":112657953,"id":1539,"parentId":1491,"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":1768268614593,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7109,"timestamp":112658076,"id":1540,"parentId":1491,"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":1768268614593,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7284,"timestamp":112658177,"id":1541,"parentId":1491,"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":1768268614593,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4252,"timestamp":112666703,"id":1542,"parentId":1491,"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":1768268614602,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4251,"timestamp":112666963,"id":1543,"parentId":1491,"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":1768268614602,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2432,"timestamp":112686675,"id":1544,"parentId":1491,"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":1768268614621,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5225,"timestamp":112686927,"id":1545,"parentId":1492,"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":1768268614622,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5613,"timestamp":112687123,"id":1546,"parentId":1494,"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":1768268614622,"traceId":"606b740dac8ad442"}]
|
|
16
|
+
[{"name":"build-module-js","duration":6229,"timestamp":112687307,"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":1768268614622,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1710,"timestamp":112694439,"id":1548,"parentId":1495,"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":1768268614629,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":987,"timestamp":112699273,"id":1549,"parentId":1503,"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":1768268614634,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2282,"timestamp":112701625,"id":1550,"parentId":1506,"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":1768268614636,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2421,"timestamp":112701834,"id":1551,"parentId":1506,"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":1768268614637,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2762,"timestamp":112702045,"id":1552,"parentId":1506,"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":1768268614637,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2907,"timestamp":112702233,"id":1553,"parentId":1506,"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":1768268614637,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2985,"timestamp":112702412,"id":1554,"parentId":1506,"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":1768268614637,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5046,"timestamp":112702580,"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/state.js","layer":"app-pages-browser"},"startTime":1768268614637,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2184,"timestamp":112708705,"id":1556,"parentId":1506,"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":1768268614644,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2276,"timestamp":112708918,"id":1557,"parentId":1506,"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":1768268614644,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2319,"timestamp":112709118,"id":1558,"parentId":1506,"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":1768268614644,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":778,"timestamp":112712915,"id":1559,"parentId":1506,"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":1768268614648,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1925,"timestamp":112721696,"id":1560,"parentId":1506,"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":1768268614656,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2101,"timestamp":112721861,"id":1561,"parentId":1506,"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":1768268614657,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2351,"timestamp":112721971,"id":1562,"parentId":1506,"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":1768268614657,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2508,"timestamp":112722103,"id":1563,"parentId":1506,"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":1768268614657,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3001,"timestamp":112722201,"id":1564,"parentId":1506,"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":1768268614657,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3244,"timestamp":112722297,"id":1565,"parentId":1506,"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":1768268614657,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3328,"timestamp":112722389,"id":1566,"parentId":1506,"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":1768268614657,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3413,"timestamp":112722477,"id":1567,"parentId":1506,"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":1768268614657,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3519,"timestamp":112722566,"id":1568,"parentId":1506,"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":1768268614657,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":957,"timestamp":112727975,"id":1569,"parentId":1506,"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":1768268614663,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1974,"timestamp":112732421,"id":1570,"parentId":1506,"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":1768268614667,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1991,"timestamp":112732691,"id":1571,"parentId":1506,"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":1768268614667,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2099,"timestamp":112732892,"id":1572,"parentId":1506,"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":1768268614668,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2221,"timestamp":112733104,"id":1573,"parentId":1506,"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":1768268614668,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1052,"timestamp":112737980,"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":1768268614673,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11125,"timestamp":112742238,"id":1575,"parentId":1507,"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":1768268614677,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1145,"timestamp":112761069,"id":1576,"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":1768268614696,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":792,"timestamp":112765280,"id":1577,"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":1768268614700,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1316,"timestamp":112772871,"id":1578,"parentId":1508,"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":1768268614708,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":834,"timestamp":112774717,"id":1579,"parentId":1515,"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":1768268614710,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1213,"timestamp":112783988,"id":1580,"parentId":1510,"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":1768268614719,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1213,"timestamp":112784263,"id":1581,"parentId":1510,"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":1768268614719,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":980,"timestamp":112786994,"id":1582,"parentId":1510,"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":1768268614722,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2062,"timestamp":112795921,"id":1583,"parentId":1519,"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":1768268614731,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1313,"timestamp":112799199,"id":1584,"parentId":1520,"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":1768268614734,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1760,"timestamp":112805097,"id":1585,"parentId":1521,"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":1768268614740,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1995,"timestamp":112810209,"id":1586,"parentId":1528,"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":1768268614745,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2192,"timestamp":112810445,"id":1587,"parentId":1528,"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":1768268614745,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3072,"timestamp":112810714,"id":1588,"parentId":1522,"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":1768268614746,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":565,"timestamp":112815389,"id":1589,"parentId":1516,"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":1768268614750,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":582,"timestamp":112819570,"id":1590,"parentId":1516,"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":1768268614754,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":805,"timestamp":112823283,"id":1591,"parentId":1516,"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":1768268614758,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1414,"timestamp":112827703,"id":1592,"parentId":1523,"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":1768268614763,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1164,"timestamp":112830204,"id":1593,"parentId":1535,"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":1768268614765,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1377,"timestamp":112830352,"id":1594,"parentId":1535,"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":1768268614765,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2941,"timestamp":112830457,"id":1595,"parentId":1524,"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":1768268614765,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1051,"timestamp":112836104,"id":1596,"parentId":1536,"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":1768268614771,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1211,"timestamp":112840328,"id":1597,"parentId":1537,"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":1768268614775,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1355,"timestamp":112840472,"id":1598,"parentId":1542,"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":1768268614775,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1708,"timestamp":112840581,"id":1599,"parentId":1542,"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":1768268614775,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1843,"timestamp":112840677,"id":1600,"parentId":1544,"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":1768268614775,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":525,"timestamp":112847893,"id":1601,"parentId":1526,"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":1768268614783,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1013,"timestamp":112851283,"id":1602,"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":1768268614786,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1167,"timestamp":112851430,"id":1603,"parentId":1526,"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":1768268614786,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":463,"timestamp":112858687,"id":1604,"parentId":1548,"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":1768268614793,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1188,"timestamp":112862666,"id":1605,"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":1768268614797,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1518,"timestamp":112862809,"id":1606,"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":1768268614798,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3206,"timestamp":112865408,"id":1607,"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":1768268614800,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3372,"timestamp":112865543,"id":1608,"parentId":1580,"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":1768268614800,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3762,"timestamp":112865648,"id":1609,"parentId":1580,"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":1768268614800,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3941,"timestamp":112865745,"id":1610,"parentId":1581,"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":1768268614801,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4144,"timestamp":112865842,"id":1611,"parentId":1582,"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":1768268614801,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":646,"timestamp":112875758,"id":1612,"parentId":1583,"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":1768268614811,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":563,"timestamp":112878159,"id":1613,"parentId":1575,"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":1768268614813,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1039,"timestamp":112883089,"id":1614,"parentId":1575,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/index.js","layer":"app-pages-browser"},"startTime":1768268614818,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":931,"timestamp":112886168,"id":1615,"parentId":1575,"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":1768268614821,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1080,"timestamp":112888186,"id":1616,"parentId":1575,"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":1768268614823,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":752,"timestamp":112891324,"id":1617,"parentId":1575,"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":1768268614826,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4690,"timestamp":112895051,"id":1618,"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":1768268614830,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":694,"timestamp":112901109,"id":1619,"parentId":1576,"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":1768268614836,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1982,"timestamp":112906345,"id":1620,"parentId":1589,"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":1768268614841,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2545,"timestamp":112906495,"id":1621,"parentId":1589,"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":1768268614841,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2733,"timestamp":112906599,"id":1622,"parentId":1589,"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":1768268614841,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3066,"timestamp":112906695,"id":1623,"parentId":1589,"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":1768268614841,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":968,"timestamp":112910942,"id":1624,"parentId":1589,"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":1768268614846,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1309,"timestamp":112911097,"id":1625,"parentId":1589,"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":1768268614846,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2862,"timestamp":112913100,"id":1626,"parentId":1589,"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":1768268614848,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3593,"timestamp":112913292,"id":1627,"parentId":1589,"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":1768268614848,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4687,"timestamp":112913468,"id":1628,"parentId":1589,"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":1768268614848,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":870,"timestamp":112919482,"id":1629,"parentId":1589,"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":1768268614854,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1522,"timestamp":112921258,"id":1630,"parentId":1589,"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":1768268614856,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1652,"timestamp":112921397,"id":1631,"parentId":1589,"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":1768268614856,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2218,"timestamp":112921499,"id":1632,"parentId":1589,"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":1768268614856,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5452,"timestamp":112921591,"id":1633,"parentId":1589,"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":1768268614856,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4297,"timestamp":112929021,"id":1634,"parentId":1589,"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":1768268614864,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6256,"timestamp":112929247,"id":1635,"parentId":1589,"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":1768268614864,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1192,"timestamp":112939260,"id":1636,"parentId":1589,"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":1768268614874,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1279,"timestamp":112939529,"id":1637,"parentId":1589,"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":1768268614874,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1603,"timestamp":112939642,"id":1638,"parentId":1589,"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":1768268614874,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1599,"timestamp":112942721,"id":1639,"parentId":1589,"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":1768268614878,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1003,"timestamp":112945623,"id":1640,"parentId":1589,"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":1768268614880,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1636,"timestamp":112945758,"id":1641,"parentId":1589,"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":1768268614881,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":532,"timestamp":112949752,"id":1642,"parentId":1583,"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":1768268614885,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1314,"timestamp":112955924,"id":1643,"parentId":1588,"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":1768268614891,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":417,"timestamp":112960361,"id":1644,"parentId":1588,"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":1768268614895,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":911,"timestamp":112973444,"id":1645,"parentId":1595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/ccount@2.0.1/node_modules/ccount/index.js","layer":"app-pages-browser"},"startTime":1768268614908,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1247,"timestamp":112976226,"id":1646,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/types.js","layer":"app-pages-browser"},"startTime":1768268614911,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1229,"timestamp":112976455,"id":1647,"parentId":1595,"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":1768268614911,"traceId":"606b740dac8ad442"}]
|
|
17
|
+
[{"name":"build-module-js","duration":827,"timestamp":112978554,"id":1648,"parentId":1604,"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":1768268614913,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":940,"timestamp":112980605,"id":1649,"parentId":1613,"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":1768268614915,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3151,"timestamp":112980740,"id":1650,"parentId":1614,"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":1768268614916,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2536,"timestamp":112984620,"id":1651,"parentId":1614,"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":1768268614919,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2598,"timestamp":112984851,"id":1652,"parentId":1614,"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":1768268614920,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2885,"timestamp":112985072,"id":1653,"parentId":1614,"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":1768268614920,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1887,"timestamp":113006594,"id":1654,"parentId":1642,"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":1768268614941,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":4516,"timestamp":113023824,"id":1655,"parentId":1629,"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":1768268614959,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1482,"timestamp":113033652,"id":1656,"parentId":1630,"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":1768268614968,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1181,"timestamp":113037488,"id":1657,"parentId":1630,"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":1768268614972,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":836,"timestamp":113045940,"id":1658,"parentId":1630,"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":1768268614981,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":527,"timestamp":113048920,"id":1659,"parentId":1633,"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":1768268614984,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":859,"timestamp":113051036,"id":1660,"parentId":1630,"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":1768268614986,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1376,"timestamp":113051173,"id":1661,"parentId":1644,"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":1768268614986,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3430,"timestamp":113055363,"id":1662,"parentId":1644,"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":1768268614990,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1861,"timestamp":113066676,"id":1663,"parentId":1653,"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":1768268615001,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":7221,"timestamp":113066861,"id":1664,"parentId":1653,"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":1768268615002,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":11600,"timestamp":113066975,"id":1665,"parentId":1647,"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":1768268615002,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":12036,"timestamp":113067108,"id":1666,"parentId":1653,"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":1768268615002,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":13508,"timestamp":113067212,"id":1667,"parentId":1653,"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":1768268615002,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2374,"timestamp":113091768,"id":1668,"parentId":1653,"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":1768268615027,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":3385,"timestamp":113092081,"id":1669,"parentId":1653,"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":1768268615027,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":955,"timestamp":113103800,"id":1670,"parentId":1661,"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":1768268615039,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1972,"timestamp":113109920,"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":1768268615045,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2240,"timestamp":113110185,"id":1672,"parentId":1661,"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":1768268615045,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":857,"timestamp":113115516,"id":1673,"parentId":1661,"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":1768268615050,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":953,"timestamp":113115656,"id":1674,"parentId":1661,"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":1768268615050,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1150,"timestamp":113118230,"id":1675,"parentId":1661,"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":1768268615053,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1725,"timestamp":113118363,"id":1676,"parentId":1661,"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":1768268615053,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2186,"timestamp":113118466,"id":1677,"parentId":1661,"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":1768268615053,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2500,"timestamp":113118564,"id":1678,"parentId":1661,"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":1768268615053,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2045,"timestamp":113121860,"id":1679,"parentId":1661,"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":1768268615057,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2307,"timestamp":113122088,"id":1680,"parentId":1661,"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":1768268615057,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1014,"timestamp":113126576,"id":1681,"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/handle/blockquote.js","layer":"app-pages-browser"},"startTime":1768268615061,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":914,"timestamp":113129609,"id":1682,"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/handle/break.js","layer":"app-pages-browser"},"startTime":1768268615064,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1645,"timestamp":113129743,"id":1683,"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/handle/code.js","layer":"app-pages-browser"},"startTime":1768268615065,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2006,"timestamp":113129844,"id":1684,"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/handle/definition.js","layer":"app-pages-browser"},"startTime":1768268615065,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5159,"timestamp":113136738,"id":1685,"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/handle/emphasis.js","layer":"app-pages-browser"},"startTime":1768268615072,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5222,"timestamp":113136999,"id":1686,"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/handle/html.js","layer":"app-pages-browser"},"startTime":1768268615072,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":5727,"timestamp":113137215,"id":1687,"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/handle/heading.js","layer":"app-pages-browser"},"startTime":1768268615072,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":6019,"timestamp":113137658,"id":1688,"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/handle/image.js","layer":"app-pages-browser"},"startTime":1768268615072,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1728,"timestamp":113145073,"id":1689,"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/handle/image-reference.js","layer":"app-pages-browser"},"startTime":1768268615080,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2222,"timestamp":113145291,"id":1690,"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/handle/inline-code.js","layer":"app-pages-browser"},"startTime":1768268615080,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1324,"timestamp":113149253,"id":1691,"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/handle/link.js","layer":"app-pages-browser"},"startTime":1768268615084,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1688,"timestamp":113152721,"id":1692,"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/handle/link-reference.js","layer":"app-pages-browser"},"startTime":1768268615088,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2405,"timestamp":113152919,"id":1693,"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/handle/list.js","layer":"app-pages-browser"},"startTime":1768268615088,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2880,"timestamp":113153103,"id":1694,"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/handle/list-item.js","layer":"app-pages-browser"},"startTime":1768268615088,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1924,"timestamp":113156840,"id":1695,"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/handle/root.js","layer":"app-pages-browser"},"startTime":1768268615092,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1972,"timestamp":113157065,"id":1696,"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/handle/paragraph.js","layer":"app-pages-browser"},"startTime":1768268615092,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2364,"timestamp":113157250,"id":1697,"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/handle/strong.js","layer":"app-pages-browser"},"startTime":1768268615092,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":2392,"timestamp":113157412,"id":1698,"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/handle/text.js","layer":"app-pages-browser"},"startTime":1768268615092,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":679,"timestamp":113162026,"id":1699,"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/handle/thematic-break.js","layer":"app-pages-browser"},"startTime":1768268615097,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":732,"timestamp":113166188,"id":1700,"parentId":1672,"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":1768268615101,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":837,"timestamp":113167548,"id":1701,"parentId":1672,"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":1768268615102,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1151,"timestamp":113178660,"id":1702,"parentId":1676,"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":1768268615113,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1447,"timestamp":113178926,"id":1703,"parentId":1679,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js","layer":"app-pages-browser"},"startTime":1768268615114,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1004,"timestamp":113182725,"id":1704,"parentId":1683,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-fence.js","layer":"app-pages-browser"},"startTime":1768268615118,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1105,"timestamp":113182954,"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":1768268615118,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":876,"timestamp":113185331,"id":1706,"parentId":1661,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zwitch@2.0.4/node_modules/zwitch/index.js","layer":"app-pages-browser"},"startTime":1768268615120,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":834,"timestamp":113188855,"id":1707,"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-emphasis.js","layer":"app-pages-browser"},"startTime":1768268615124,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1575,"timestamp":113190446,"id":1708,"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/encode-info.js","layer":"app-pages-browser"},"startTime":1768268615125,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1905,"timestamp":113190652,"id":1709,"parentId":1691,"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":1768268615125,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1961,"timestamp":113190852,"id":1710,"parentId":1693,"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":1768268615126,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1322,"timestamp":113196871,"id":1711,"parentId":1693,"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":1768268615132,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1360,"timestamp":113197107,"id":1712,"parentId":1693,"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":1768268615132,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":976,"timestamp":113200751,"id":1713,"parentId":1693,"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":1768268615136,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":1011,"timestamp":113200965,"id":1714,"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-list-item-indent.js","layer":"app-pages-browser"},"startTime":1768268615136,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":723,"timestamp":113203067,"id":1715,"parentId":1665,"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":1768268615138,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":568,"timestamp":113204143,"id":1716,"parentId":1697,"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":1768268615139,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":617,"timestamp":113204283,"id":1717,"parentId":1699,"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":1768268615139,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":681,"timestamp":113206352,"id":1718,"parentId":1683,"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":1768268615141,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":496,"timestamp":113207871,"id":1719,"parentId":1695,"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":1768268615143,"traceId":"606b740dac8ad442"},{"name":"build-module-js","duration":724,"timestamp":113210489,"id":1720,"parentId":1719,"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":1768268615145,"traceId":"606b740dac8ad442"},{"name":"add-entry","duration":4945336,"timestamp":108272628,"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":1768268610207,"traceId":"606b740dac8ad442"},{"name":"make","duration":4947116,"timestamp":108271326,"id":978,"parentId":977,"tags":{},"startTime":1768268610206,"traceId":"606b740dac8ad442"},{"name":"chunk-graph","duration":22427,"timestamp":113299916,"id":1722,"parentId":1721,"tags":{},"startTime":1768268615235,"traceId":"606b740dac8ad442"},{"name":"optimize-modules","duration":48,"timestamp":113322527,"id":1724,"parentId":1721,"tags":{},"startTime":1768268615257,"traceId":"606b740dac8ad442"},{"name":"optimize-chunks","duration":16045,"timestamp":113325254,"id":1726,"parentId":1721,"tags":{},"startTime":1768268615260,"traceId":"606b740dac8ad442"},{"name":"optimize-tree","duration":190,"timestamp":113341417,"id":1727,"parentId":1721,"tags":{},"startTime":1768268615276,"traceId":"606b740dac8ad442"},{"name":"optimize-chunk-modules","duration":51667,"timestamp":113341747,"id":1728,"parentId":1721,"tags":{},"startTime":1768268615277,"traceId":"606b740dac8ad442"},{"name":"optimize","duration":71128,"timestamp":113322444,"id":1723,"parentId":1721,"tags":{},"startTime":1768268615257,"traceId":"606b740dac8ad442"},{"name":"module-hash","duration":37241,"timestamp":113430605,"id":1729,"parentId":1721,"tags":{},"startTime":1768268615365,"traceId":"606b740dac8ad442"},{"name":"code-generation","duration":382310,"timestamp":113467918,"id":1730,"parentId":1721,"tags":{},"startTime":1768268615403,"traceId":"606b740dac8ad442"},{"name":"hash","duration":16130,"timestamp":113862480,"id":1731,"parentId":1721,"tags":{},"startTime":1768268615797,"traceId":"606b740dac8ad442"},{"name":"code-generation-jobs","duration":784,"timestamp":113878602,"id":1732,"parentId":1721,"tags":{},"startTime":1768268615813,"traceId":"606b740dac8ad442"},{"name":"module-assets","duration":1126,"timestamp":113879311,"id":1733,"parentId":1721,"tags":{},"startTime":1768268615814,"traceId":"606b740dac8ad442"},{"name":"create-chunk-assets","duration":26686,"timestamp":113880464,"id":1734,"parentId":1721,"tags":{},"startTime":1768268615815,"traceId":"606b740dac8ad442"},{"name":"NextJsBuildManifest-generateClientManifest","duration":2329,"timestamp":113913025,"id":1736,"parentId":977,"tags":{},"startTime":1768268615848,"traceId":"606b740dac8ad442"},{"name":"NextJsBuildManifest-createassets","duration":3733,"timestamp":113911642,"id":1735,"parentId":977,"tags":{},"startTime":1768268615846,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":118522,"timestamp":113953292,"id":1739,"parentId":1737,"tags":{"name":"static/chunks/main-app-3ee073768a1a6456.js","cache":"MISS"},"startTime":1768268615888,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":118319,"timestamp":113953575,"id":1740,"parentId":1737,"tags":{"name":"static/chunks/app/_not-found/page-1314fe1ff92ee0aa.js","cache":"MISS"},"startTime":1768268615888,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":117840,"timestamp":113954095,"id":1742,"parentId":1737,"tags":{"name":"static/chunks/pages/_error-6444830a044a065f.js","cache":"MISS"},"startTime":1768268615889,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":117711,"timestamp":113954262,"id":1743,"parentId":1737,"tags":{"name":"static/chunks/app/layout-1baeb8f9d4de0f96.js","cache":"MISS"},"startTime":1768268615889,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":118124,"timestamp":113953908,"id":1741,"parentId":1737,"tags":{"name":"static/chunks/pages/_app-56f4e2c3e0cd5b77.js","cache":"MISS"},"startTime":1768268615889,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":117573,"timestamp":113954547,"id":1744,"parentId":1737,"tags":{"name":"static/chunks/app/page-f6a43d2719dc0382.js","cache":"MISS"},"startTime":1768268615889,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":99889,"timestamp":113972314,"id":1746,"parentId":1737,"tags":{"name":"static/chunks/app/settings/page-d2293401c892d618.js","cache":"MISS"},"startTime":1768268615907,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":98937,"timestamp":113973329,"id":1747,"parentId":1737,"tags":{"name":"static/chunks/webpack-9b8a6c078d6e8803.js","cache":"MISS"},"startTime":1768268615908,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":162371,"timestamp":113957428,"id":1745,"parentId":1737,"tags":{"name":"static/chunks/app/project/[id]/page-aa9dcedb5ce044bd.js","cache":"MISS"},"startTime":1768268615892,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":198946,"timestamp":113981157,"id":1750,"parentId":1737,"tags":{"name":"static/chunks/193-50b9534d8bfadd2e.js","cache":"MISS"},"startTime":1768268615916,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":328998,"timestamp":113934637,"id":1738,"parentId":1737,"tags":{"name":"static/chunks/main-ff9852398b1f3782.js","cache":"MISS"},"startTime":1768268615869,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":369079,"timestamp":113978269,"id":1749,"parentId":1737,"tags":{"name":"static/chunks/c476d598-52de8ab10fae5dac.js","cache":"MISS"},"startTime":1768268615913,"traceId":"606b740dac8ad442"}]
|
|
18
|
+
[{"name":"minify-js","duration":331943,"timestamp":114015472,"id":1753,"parentId":1737,"tags":{"name":"server/middleware-react-loadable-manifest.js","cache":"MISS"},"startTime":1768268615950,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":331820,"timestamp":114015623,"id":1754,"parentId":1737,"tags":{"name":"static/WuTLXdJlN3bwUMxmeSPVx/_ssgManifest.js","cache":"MISS"},"startTime":1768268615950,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":331879,"timestamp":114015678,"id":1755,"parentId":1737,"tags":{"name":"server/middleware-build-manifest.js","cache":"MISS"},"startTime":1768268615950,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":332304,"timestamp":114015728,"id":1756,"parentId":1737,"tags":{"name":"static/WuTLXdJlN3bwUMxmeSPVx/_buildManifest.js","cache":"MISS"},"startTime":1768268615951,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":332327,"timestamp":114015777,"id":1757,"parentId":1737,"tags":{"name":"server/next-font-manifest.js","cache":"MISS"},"startTime":1768268615951,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":410719,"timestamp":113973628,"id":1748,"parentId":1737,"tags":{"name":"static/chunks/framework-63d70eb4e76697e6.js","cache":"MISS"},"startTime":1768268615908,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":479582,"timestamp":114003393,"id":1752,"parentId":1737,"tags":{"name":"static/chunks/498-05477d3729b4e23d.js","cache":"MISS"},"startTime":1768268615938,"traceId":"606b740dac8ad442"},{"name":"minify-js","duration":517999,"timestamp":113983297,"id":1751,"parentId":1737,"tags":{"name":"static/chunks/700-80036c1b7cf7a171.js","cache":"MISS"},"startTime":1768268615918,"traceId":"606b740dac8ad442"},{"name":"minify-webpack-plugin-optimize","duration":583213,"timestamp":113918108,"id":1737,"parentId":977,"tags":{"compilationName":"client","mangle":"[object Object]"},"startTime":1768268615853,"traceId":"606b740dac8ad442"},{"name":"minify-css","duration":623625,"timestamp":114501877,"id":1759,"parentId":1758,"tags":{"file":"static/css/7589734ea56736fa.css","cache":"MISS"},"startTime":1768268616437,"traceId":"606b740dac8ad442"},{"name":"css-minimizer-plugin","duration":623938,"timestamp":114501582,"id":1758,"parentId":977,"tags":{},"startTime":1768268616436,"traceId":"606b740dac8ad442"},{"name":"seal","duration":1888359,"timestamp":113258430,"id":1721,"parentId":977,"tags":{},"startTime":1768268615193,"traceId":"606b740dac8ad442"},{"name":"webpack-compilation","duration":6885625,"timestamp":108261673,"id":977,"parentId":974,"tags":{"name":"client"},"startTime":1768268610196,"traceId":"606b740dac8ad442"},{"name":"emit","duration":17537,"timestamp":115147764,"id":1760,"parentId":974,"tags":{},"startTime":1768268617083,"traceId":"606b740dac8ad442"},{"name":"webpack-close","duration":622866,"timestamp":115167128,"id":1761,"parentId":974,"tags":{"name":"client"},"startTime":1768268617102,"traceId":"606b740dac8ad442"},{"name":"webpack-generate-error-stats","duration":3768,"timestamp":115790109,"id":1762,"parentId":1761,"tags":{},"startTime":1768268617725,"traceId":"606b740dac8ad442"},{"name":"run-webpack-compiler","duration":7780396,"timestamp":108013880,"id":974,"parentId":973,"tags":{},"startTime":1768268609949,"traceId":"606b740dac8ad442"},{"name":"format-webpack-messages","duration":114,"timestamp":115794287,"id":1763,"parentId":973,"tags":{},"startTime":1768268617729,"traceId":"606b740dac8ad442"},{"name":"worker-main-client","duration":7781228,"timestamp":108013387,"id":973,"parentId":1,"tags":{},"startTime":1768268609948,"traceId":"606b740dac8ad442"},{"name":"verify-and-lint","duration":4766577,"timestamp":115874326,"id":1767,"parentId":1,"tags":{},"startTime":1768268617809,"traceId":"606b740dac8ad442"},{"name":"verify-typescript-setup","duration":8833088,"timestamp":115866489,"id":1766,"parentId":1,"tags":{},"startTime":1768268617801,"traceId":"606b740dac8ad442"},{"name":"check-static-error-page","duration":12420,"timestamp":124719908,"id":1770,"parentId":1769,"tags":{},"startTime":1768268626655,"traceId":"606b740dac8ad442"},{"name":"check-page","duration":2125,"timestamp":124797696,"id":1771,"parentId":1769,"tags":{"page":"/_app"},"startTime":1768268626732,"traceId":"606b740dac8ad442"},{"name":"check-page","duration":805,"timestamp":124799046,"id":1773,"parentId":1769,"tags":{"page":"/_document"},"startTime":1768268626734,"traceId":"606b740dac8ad442"},{"name":"check-page","duration":1978,"timestamp":124798871,"id":1772,"parentId":1769,"tags":{"page":"/_error"},"startTime":1768268626734,"traceId":"606b740dac8ad442"},{"name":"is-page-static","duration":367115,"timestamp":124811450,"id":1779,"parentId":1775,"tags":{},"startTime":1768268626746,"traceId":"606b740dac8ad442"},{"name":"check-page","duration":379330,"timestamp":124799308,"id":1775,"parentId":1769,"tags":{"page":"/"},"startTime":1768268626734,"traceId":"606b740dac8ad442"},{"name":"is-page-static","duration":372260,"timestamp":124811574,"id":1781,"parentId":1777,"tags":{},"startTime":1768268626746,"traceId":"606b740dac8ad442"},{"name":"check-page","duration":384417,"timestamp":124799470,"id":1777,"parentId":1769,"tags":{"page":"/settings"},"startTime":1768268626734,"traceId":"606b740dac8ad442"},{"name":"is-page-static","duration":395600,"timestamp":124811522,"id":1780,"parentId":1776,"tags":{},"startTime":1768268626746,"traceId":"606b740dac8ad442"},{"name":"check-page","duration":407777,"timestamp":124799401,"id":1776,"parentId":1769,"tags":{"page":"/project/[id]"},"startTime":1768268626734,"traceId":"606b740dac8ad442"},{"name":"is-page-static","duration":410764,"timestamp":124801898,"id":1778,"parentId":1774,"tags":{},"startTime":1768268626737,"traceId":"606b740dac8ad442"},{"name":"check-page","duration":413606,"timestamp":124799110,"id":1774,"parentId":1769,"tags":{"page":"/_not-found"},"startTime":1768268626734,"traceId":"606b740dac8ad442"},{"name":"static-check","duration":493627,"timestamp":124719116,"id":1769,"parentId":1,"tags":{},"startTime":1768268626654,"traceId":"606b740dac8ad442"},{"name":"generate-required-server-files","duration":495,"timestamp":125212895,"id":1783,"parentId":1,"tags":{},"startTime":1768268627148,"traceId":"606b740dac8ad442"},{"name":"write-routes-manifest","duration":3622,"timestamp":125234140,"id":1785,"parentId":1,"tags":{},"startTime":1768268627169,"traceId":"606b740dac8ad442"},{"name":"load-dotenv","duration":45,"timestamp":125285692,"id":1788,"parentId":1787,"tags":{},"startTime":1768268627220,"traceId":"606b740dac8ad442"},{"name":"run-export-path-map","duration":531,"timestamp":126620712,"id":1789,"parentId":1787,"tags":{},"startTime":1768268628556,"traceId":"606b740dac8ad442"},{"name":"next-export","duration":2126401,"timestamp":125284524,"id":1787,"parentId":1,"tags":{},"startTime":1768268627219,"traceId":"606b740dac8ad442"},{"name":"move-exported-app-not-found-","duration":7321,"timestamp":127412045,"id":1790,"parentId":1786,"tags":{},"startTime":1768268629347,"traceId":"606b740dac8ad442"},{"name":"move-exported-page","duration":207316,"timestamp":127419524,"id":1791,"parentId":1786,"tags":{},"startTime":1768268629354,"traceId":"606b740dac8ad442"},{"name":"static-generation","duration":2646264,"timestamp":125279182,"id":1786,"parentId":1,"tags":{},"startTime":1768268627214,"traceId":"606b740dac8ad442"},{"name":"write-routes-manifest","duration":27314,"timestamp":127925665,"id":1792,"parentId":1,"tags":{},"startTime":1768268629860,"traceId":"606b740dac8ad442"},{"name":"node-file-trace-build","duration":9333892,"timestamp":125214866,"id":1784,"parentId":1,"tags":{"isTurbotrace":"false"},"startTime":1768268627150,"traceId":"606b740dac8ad442"},{"name":"apply-include-excludes","duration":645,"timestamp":134548778,"id":1793,"parentId":1,"tags":{},"startTime":1768268636484,"traceId":"606b740dac8ad442"},{"name":"print-tree-view","duration":2703,"timestamp":134549547,"id":1794,"parentId":1,"tags":{},"startTime":1768268636484,"traceId":"606b740dac8ad442"},{"name":"telemetry-flush","duration":43,"timestamp":134552258,"id":1795,"parentId":1,"tags":{},"startTime":1768268636487,"traceId":"606b740dac8ad442"},{"name":"next-build","duration":39217990,"timestamp":95334317,"id":1,"tags":{"buildMode":"default","isTurboBuild":"false","version":"15.5.9","has-custom-webpack-config":"false","use-build-worker":"true"},"startTime":1768268597269,"traceId":"606b740dac8ad442"}]
|