Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
twelch authored Oct 1, 2024
2 parents 45af40e + 581b6a2 commit f08d4dc
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 f08d4dc

Please sign in to comment.