File tree 4 files changed +437
-485
lines changed
4 files changed +437
-485
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 1.1.1-beta] - 2019-05-08
9
+ ### Fixed
10
+ - [ #11 ] ( https://github.com/browserslist/browserslist-useragent-regexp/issues/11 ) : ` rollup-plugin-shebang ` -> ` rollup-plugin-add-shebang `
11
+
8
12
## [ 1.1.0-beta] - 2019-05-01
9
13
### Summary
10
14
The size of RegExp for ` defaults ` has decreased by ~ 63%.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " browserslist-useragent-regexp" ,
3
- "version" : " 1.1.0 -beta" ,
3
+ "version" : " 1.1.1 -beta" ,
4
4
"description" : " A utility to compile browserslist query to a RegExp to test browser useragent." ,
5
5
"author" : " dangreen" ,
6
6
"license" : " MIT" ,
62
62
"jest" : " ^24.3.0" ,
63
63
"lint-staged" : " ^8.1.0" ,
64
64
"rollup" : " ^1.10.1" ,
65
+ "rollup-plugin-add-shebang" : " ^0.3.0" ,
65
66
"rollup-plugin-babel" : " ^4.2.0" ,
66
67
"rollup-plugin-commonjs" : " ^9.3.4" ,
67
- "rollup-plugin-shebang" : " ^0.1.5" ,
68
68
"rollup-plugin-tslint" : " ^0.2.2" ,
69
69
"rollup-plugin-typescript2" : " ^0.21.0" ,
70
70
"size-limit" : " ^1.0.0" ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import commonjs from 'rollup-plugin-commonjs';
2
2
import babel from 'rollup-plugin-babel' ;
3
3
import typescript from 'rollup-plugin-typescript2' ;
4
4
import tslint from 'rollup-plugin-tslint' ;
5
- import shebang from 'rollup-plugin-shebang' ;
5
+ import shebang from 'rollup-plugin-add- shebang' ;
6
6
import { DEFAULT_EXTENSIONS } from '@babel/core' ;
7
7
import pkg from './package.json' ;
8
8
You can’t perform that action at this time.
0 commit comments