Skip to content

Commit 2aa6177

Browse files
authored
Merge pull request #65 from SpringRoll/release/2.0.1
Release/2.0.1
2 parents 84ced1e + 436f8d3 commit 2aa6177

8 files changed

+125
-98
lines changed

.babelrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
2+
"exclude": [ "node_modules/@babel/**", "node_modules/core-js/**" ],
23
"presets": [
34
[
45
"@babel/preset-env",
56
{
67
"useBuiltIns": "usage",
7-
"corejs": 2,
8+
"corejs": 3,
89
"targets": {
910
"android": "5",
1011
"ios": "10",

dist/SpringRoll-Container-umd.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/SpringRoll-Container-umd.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+114-91
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "springroll-container",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "The iframe controller for interacting with SpringRoll applications",
55
"main": "./dist/index.js",
66
"license": "MIT",
@@ -12,6 +12,8 @@
1212
"devDependencies": {
1313
"@babel/core": "^7.4.3",
1414
"@babel/preset-env": "^7.4.3",
15+
"@rollup/plugin-babel": "^5.2.0",
16+
"@rollup/plugin-node-resolve": "^9.0.0",
1517
"babel-loader": "^8.0.5",
1618
"chai": "^4.2.0",
1719
"dotenv": "^7.0.0",
@@ -46,7 +48,7 @@
4648
"dependencies": {
4749
"@babel/polyfill": "^7.4.3",
4850
"bellhop-iframe": "^3.2.0",
49-
"core-js": "^3.0.1",
51+
"core-js": "^3.6.5",
5052
"whatwg-fetch": "^3.0.0"
5153
},
5254
"keywords": [

rollup.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
const { eslint } = require('rollup-plugin-eslint');
22
const { terser } = require('rollup-plugin-terser');
33

4+
45
const base = {
56
plugins: [
67
// @ts-ignore

0 commit comments

Comments
 (0)