File tree Expand file tree Collapse file tree 3 files changed +30
-37
lines changed Expand file tree Collapse file tree 3 files changed +30
-37
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @maplibre/maplibre-gl-style-spec" ,
3
3
"description" : " a specification for maplibre gl styles" ,
4
- "version" : " 18.0.1-pre.14 " ,
4
+ "version" : " 18.0.1-pre.15 " ,
5
5
"author" : " MapLibre" ,
6
6
"keywords" : [
7
7
" mapbox" ,
76
76
"jest-canvas-mock" : " ^2.4.0" ,
77
77
"jest-environment-jsdom" : " ^29.3.1" ,
78
78
"rollup" : " ^3.15.0" ,
79
- "rollup-plugin-executable " : " ^1.6.3 " ,
79
+ "rollup-plugin-preserve-shebang " : " ^1.0.1 " ,
80
80
"rollup-plugin-sourcemaps" : " ^0.6.3" ,
81
81
"semver" : " ^7.3.8" ,
82
82
"ts-jest" : " ^29.0.5" ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import resolve from '@rollup/plugin-node-resolve';
5
5
import typescript from '@rollup/plugin-typescript' ;
6
6
import json from '@rollup/plugin-json' ;
7
7
import minifyStyleSpec from './build/rollup_plugin_minify_style_spec' ;
8
- import executable from 'rollup-plugin-executable ' ;
8
+ import shebang from 'rollup-plugin-preserve-shebang ' ;
9
9
10
10
const rollupPlugins = [
11
11
minifyStyleSpec ( ) ,
@@ -63,7 +63,7 @@ const config: RollupOptions[] = [{
63
63
format : 'umd' ,
64
64
sourcemap : true
65
65
} ] ,
66
- plugins : [ ...rollupPlugins , executable ( ) ]
66
+ plugins : [ ...rollupPlugins , shebang ( ) ]
67
67
} ,
68
68
{
69
69
input : './bin/gl-style-migrate.ts' ,
@@ -78,7 +78,7 @@ const config: RollupOptions[] = [{
78
78
format : 'umd' ,
79
79
sourcemap : true
80
80
} ] ,
81
- plugins : [ ...rollupPlugins , executable ( ) ]
81
+ plugins : [ ...rollupPlugins , shebang ( ) ]
82
82
} ,
83
83
{
84
84
input : './bin/gl-style-validate.ts' ,
@@ -93,6 +93,6 @@ const config: RollupOptions[] = [{
93
93
format : 'umd' ,
94
94
sourcemap : true
95
95
} ] ,
96
- plugins : [ ...rollupPlugins , executable ( ) ]
96
+ plugins : [ ...rollupPlugins , shebang ( ) ]
97
97
} ] ;
98
98
export default config ;
You can’t perform that action at this time.
0 commit comments