Skip to content

Commit

Permalink
Replace rollup-plugin-sourcemaps with rollup-plugin-sourcemaps2 (#4740)
Browse files Browse the repository at this point in the history
  • Loading branch information
birkskyum authored Sep 22, 2024
1 parent 8ff7d2a commit 718e0cb
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 61 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
### 🐞 Bug fixes
- Fix circle won't render on mesa 24.1 with AMD GPU ([#4062](https://github.com/maplibre/maplibre-gl-js/issues/4062))
- Fix hash router for urls ending with a hashtag ([#4730](https://github.com/maplibre/maplibre-gl-js/pull/4730))
- Replace rollup-plugin-sourcemaps with rollup-plugin-sourcemaps2 ([#4740](https://github.com/maplibre/maplibre-gl-js/pull/4740))
- _...Add new stuff here..._

## 4.7.0
Expand Down
66 changes: 9 additions & 57 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
"vt-pbf": "^3.1.3"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"@mapbox/mapbox-gl-rtl-text": "^0.3.0",
"@mapbox/mvt-fixtures": "^3.10.0",
"@rollup/plugin-commonjs": "^26.0.1",
Expand Down Expand Up @@ -80,6 +79,7 @@
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"address": "^2.0.3",
"autoprefixer": "^10.4.20",
"benchmark": "^2.1.4",
"canvas": "^2.11.2",
"cssnano": "^7.0.6",
Expand Down Expand Up @@ -122,7 +122,7 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.22.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-sourcemaps2": "^0.4.1",
"rw": "^1.3.3",
"semver": "^7.6.3",
"shuffle-seed": "^1.1.6",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import fs from 'fs';
import sourcemaps from 'rollup-plugin-sourcemaps';
import sourcemaps from 'rollup-plugin-sourcemaps2';
import {plugins, watchStagingPlugin} from './build/rollup_plugins';
import banner from './build/banner';
import {RollupOptions} from 'rollup';
Expand Down
2 changes: 1 addition & 1 deletion test/bench/rollup_config_benchmarks.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import fs from 'fs';
import sourcemaps from 'rollup-plugin-sourcemaps';
import sourcemaps from 'rollup-plugin-sourcemaps2';
import replace from '@rollup/plugin-replace';
import {plugins, nodeResolve} from '../../build/rollup_plugins';
import commonjs from '@rollup/plugin-commonjs';
Expand Down

0 comments on commit 718e0cb

Please sign in to comment.