Skip to content

Commit

Permalink
Merge branch 'release/2.0.1'
Browse files Browse the repository at this point in the history
* release/2.0.1:
  release 2.0.1
  upgrade deps
  upgrade Babel 6 to Babel 7
  • Loading branch information
pmb0 committed Nov 4, 2019
2 parents e81ea87 + cab2399 commit a26aa46
Show file tree
Hide file tree
Showing 5 changed files with 1,909 additions and 1,769 deletions.
14 changes: 6 additions & 8 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
{
"presets": [
[
"env",
"@babel/preset-env",
{
"targets": {
"browsers": [
"last 2 versions",
"safari >= 7"
]
}
"corejs": 3,
"useBuiltIns": "entry"
}
]
],
"plugins": ["babel-plugin-transform-object-rest-spread"]
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
]
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# embetty

## v2.0.1, 2019-11-04

- Upgraded Babel to v7.

## v2.0.0, 2019-11-04

- embetty no longer includes the Twitter-thread by default
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@heise/embetty",
"version": "2.0.0",
"version": "2.0.1",
"main": "index.js",
"license": "MIT",
"scripts": {
Expand Down Expand Up @@ -62,13 +62,13 @@
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@heise/embetty-server": "^1.2.7",
"@webcomponents/webcomponentsjs": "^2.2.10",
"autoprefixer": "^9.3.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-loader": "^8.0.6",
"cache-loader": "^4.0.0",
"css-loader": "^1.0.0",
"eslint": "^6.5.1",
Expand Down
4 changes: 2 additions & 2 deletions polyfills.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
require('core-js')
require('regenerator-runtime/runtime')
require('whatwg-fetch')

try {
Expand All @@ -7,5 +9,3 @@ try {

require('@webcomponents/webcomponentsjs')
require('intersection-observer')
require('core-js/stable')
require('regenerator-runtime/runtime')
Loading

0 comments on commit a26aa46

Please sign in to comment.