Skip to content

Commit 2aac5ec

Browse files
committed
Finish 0.1.11
2 parents b009483 + 887e9e7 commit 2aac5ec

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

babel.config.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@ module.exports = function(api) {
77
presets: [
88
'@babel/flow',
99
[
10-
'@babel/preset-env',
10+
'@babel/env',
1111
{
1212
targets: {
1313
node: 6,
14-
chrome: 59,
15-
edge: 13,
16-
firefox: 50,
14+
browsers: ['last 4 version', '> 1%', 'not dead'],
1715
},
1816
forceAllTransforms: api.env("production"),
1917
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird-helpers",
3-
"version": "0.1.10",
3+
"version": "0.1.11",
44
"description": "SendBird helpers",
55
"main": "lib/index.js",
66
"repository": "https://github.com/agolovchuk/sendBird-helpers.git",

rollup.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ export default [
8383
}),
8484
flowEntry(),
8585
babel(),
86+
replace({
87+
'process.env.NODE_ENV': JSON.stringify('production')
88+
}),
8689
commonjs(),
8790
],
8891
external: id => !!reg && reg.test(id),

0 commit comments

Comments
 (0)