We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebfead4 commit 935ad4dCopy full SHA for 935ad4d
4 files changed
.babelrc
@@ -0,0 +1,6 @@
1
+{
2
+ "presets": [
3
+ "@babel/preset-env"
4
+ ]
5
+ }
6
+
.travis.yml
@@ -0,0 +1,17 @@
+language: node_js
+notifications:
+ email: false
+node_js:
+ - node
+cache:
7
+ directories:
8
+ - ~/.npm
9
+ - .jest
10
+before_script:
11
+ - npm install -g npm@latest
12
+before_install:
13
+ - npm run env prod
14
+script:
15
+ - npm test
16
+after_success:
17
+ - coverage
0 commit comments