Skip to content

Commit

Permalink
Update rollup
Browse files Browse the repository at this point in the history
  • Loading branch information
skryukov committed Sep 24, 2024
1 parent 09f9181 commit 7fdfafa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/turbo-mount/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@
"devDependencies": {
"@babel/types": "^7.24.5",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
Expand All @@ -103,8 +104,7 @@
"prettier": "^3.2.5",
"react": ">= 17.0",
"react-dom": ">= 17.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"rollup": "^4.22.4",
"stimulus-vite-helpers": ">= 3.0",
"svelte": ">= 3.0",
"tslib": "^2.6.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import * as path from "node:path";
import * as fs from "node:fs";
import alias from '@rollup/plugin-alias';
import typescript from "@rollup/plugin-typescript";
import {terser} from "rollup-plugin-terser";
import terser from "@rollup/plugin-terser";

const pluginsPath = path.resolve(__dirname, 'src', 'plugins');
const pluginsPath = path.resolve(path.dirname('.'), 'src', 'plugins');

const external = [
"@hotwired/stimulus",
Expand Down

0 comments on commit 7fdfafa

Please sign in to comment.