bazelbuild / examples

Examples for Bazel
http://bazel.build
Apache License 2.0
800 stars 497 forks source link

[Bug] Run `pnpm run build` for frontend examples: dependencies out of date #465

Open dkthezero opened 3 weeks ago

dkthezero commented 3 weeks ago

node -v: v22.2.0 npm -v: 10.7.0 Reproduce:

Fix: Update dependencies in next.js/package.json to the latest version

 "dependencies": {
    "@bazel-example/one": "workspace:*",
    "is-even": "1.0.0",
    "next": "14.2.3",
    "react": "18.3.1",
    "react-dom": "18.3.1"
  },
  "devDependencies": {
    "@bazel/ibazel": "0.25.0",
    "@testing-library/jest-dom": "6.4.5",
    "@testing-library/react": "16.0.0",
    "@types/is-even": "1.0.2",
    "@types/jest": "29.5.12",
    "@types/node": "20.14.2",
    "@types/react": "18.3.3",
    "@types/react-dom": "18.3.0",
    "eslint": "9.4.0",
    "eslint-config-next": "14.2.3",
    "jest-cli": "29.7.0",
    "jest-junit": "16.0.0",
    "jest-environment-jsdom": "29.7.0",
    "jest-transform-stub": "2.0.0",
    "typescript": "5.4.5"
  }
}