Skip to content

Commit efe9395

Browse files
authored
Merge pull request #22 from browserslist/fix/shebang
shebang fix
2 parents 94260f1 + 2c861a5 commit efe9395

File tree

4 files changed

+437
-485
lines changed

4 files changed

+437
-485
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

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+
812
## [1.1.0-beta] - 2019-05-01
913
### Summary
1014
The size of RegExp for `defaults` has decreased by ~63%.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "browserslist-useragent-regexp",
3-
"version": "1.1.0-beta",
3+
"version": "1.1.1-beta",
44
"description": "A utility to compile browserslist query to a RegExp to test browser useragent.",
55
"author": "dangreen",
66
"license": "MIT",
@@ -62,9 +62,9 @@
6262
"jest": "^24.3.0",
6363
"lint-staged": "^8.1.0",
6464
"rollup": "^1.10.1",
65+
"rollup-plugin-add-shebang": "^0.3.0",
6566
"rollup-plugin-babel": "^4.2.0",
6667
"rollup-plugin-commonjs": "^9.3.4",
67-
"rollup-plugin-shebang": "^0.1.5",
6868
"rollup-plugin-tslint": "^0.2.2",
6969
"rollup-plugin-typescript2": "^0.21.0",
7070
"size-limit": "^1.0.0",

rollup.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import commonjs from 'rollup-plugin-commonjs';
22
import babel from 'rollup-plugin-babel';
33
import typescript from 'rollup-plugin-typescript2';
44
import tslint from 'rollup-plugin-tslint';
5-
import shebang from 'rollup-plugin-shebang';
5+
import shebang from 'rollup-plugin-add-shebang';
66
import { DEFAULT_EXTENSIONS } from '@babel/core';
77
import pkg from './package.json';
88

0 commit comments

Comments
 (0)