Skip to content

Commit

Permalink
Bump rollup from 2.79.1 to 3.29.5 (#2720)
Browse files Browse the repository at this point in the history
* Bump rollup from 2.79.1 to 3.29.5

Bumps [rollup](https://github.com/rollup/rollup) from 2.79.1 to 3.29.5.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v2.79.1...v3.29.5)

---
updated-dependencies:
- dependency-name: rollup
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix issues from rollup 2->3 upgrade

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matt Fedderly <[email protected]>
  • Loading branch information
dependabot[bot] and mfedderly authored Sep 29, 2024
1 parent 5692841 commit 581b6a2
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .monorepolint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export default {
requireDependency({
options: {
devDependencies: {
rollup: "^2.79.1",
rollup: "^3.29.5",
},
},
includePackages: [MAIN_PACKAGE],
Expand Down
2 changes: 1 addition & 1 deletion packages/turf/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"camelcase": "^8.0.0",
"documentation": "^14.0.3",
"glob": "^10.3.10",
"rollup": "^2.79.1",
"rollup": "^3.29.5",
"rollup-plugin-polyfill-node": "^0.13.0",
"tape": "^5.7.2",
"tsup": "^8.0.1",
Expand Down
9 changes: 5 additions & 4 deletions packages/turf/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import nodeResolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import terser from "@rollup/plugin-terser";
import { babel } from "@rollup/plugin-babel";
import { readFileSync } from "fs";
import commonjs from "@rollup/plugin-commonjs";
import nodePolyfills from "rollup-plugin-polyfill-node";
import nodeResolve from "@rollup/plugin-node-resolve";
import terser from "@rollup/plugin-terser";

const pckg = require("./package.json");
const pckg = JSON.parse(readFileSync("./package.json", "utf-8"));
const input = "index.ts";

export default [
Expand Down
60 changes: 31 additions & 29 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 581b6a2

Please sign in to comment.