Skip to content

Commit b6c8d2a

Browse files
committedSep 19, 2018
Merge branch 'canary'
# Conflicts: # package.json
2 parents ae7e532 + 8e9b84b commit b6c8d2a

File tree

583 files changed

+8808
-11808
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

583 files changed

+8808
-11808
lines changed
 

‎.babelrc

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@
55
"@babel/preset-flow"
66
],
77
"plugins": [
8+
"@babel/plugin-syntax-dynamic-import",
89
"@babel/plugin-proposal-object-rest-spread",
910
"@babel/plugin-proposal-class-properties",
10-
"@babel/plugin-transform-runtime"
11+
["@babel/plugin-transform-runtime", {
12+
"corejs": 2
13+
}]
1114
]
1215
}

‎.circleci/config.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:8-browsers
6+
working_directory: ~/repo
7+
steps:
8+
- checkout
9+
- run: yarn install
10+
- run: yarn test

0 commit comments

Comments
 (0)
Please sign in to comment.