Skip to content
This repository was archived by the owner on Oct 16, 2019. It is now read-only.

Commit 2a4702a

Browse files
authored
Merge pull request #121 from zalando-incubator/umd-fix-and-travis
Exports, Travis CI, and docs fixes
2 parents 8a1c0aa + 71d3e9e commit 2a4702a

File tree

115 files changed

+16333
-158131
lines changed

Some content is hidden

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

115 files changed

+16333
-158131
lines changed

.babelrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"presets": ["es2015"],
2+
"presets": ["env"],
33
"plugins": ["add-module-exports", "transform-es2015-modules-umd"]
44
}

.eslintrc

-18
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,6 @@
66
"mocha": true,
77
"browser": true
88
},
9-
"ecmaFeatures": {
10-
"arrowFunctions": true,
11-
"blockBindings": true,
12-
"classes": true,
13-
"defaultParams": true,
14-
"destructuring": true,
15-
"forOf": true,
16-
"generators": false,
17-
"modules": true,
18-
"objectLiteralComputedProperties": true,
19-
"objectLiteralDuplicateProperties": false,
20-
"objectLiteralShorthandMethods": true,
21-
"objectLiteralShorthandProperties": true,
22-
"spread": true,
23-
"superInFunctions": true,
24-
"templateStrings": true,
25-
"jsx": true
26-
},
279
"rules": {
2810
// possible errors
2911
"comma-dangle": [2, "never"],

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ build/Release
3131
# Dependency directory
3232
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
3333
node_modules
34-
3534
# Optional npm cache directory
3635
.npm
3736

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ cache:
55
notifications:
66
email: false
77
node_js:
8+
- '8'
89
- '7'
910
- '6'
1011
- '4'
@@ -19,8 +20,6 @@ script:
1920
after_success:
2021
- npm run cover:report-coverage
2122
- npm run semantic-release
22-
- npm run docs
23-
- npm run gh-pages-travis
2423
branches:
2524
except:
2625
- "/^v\\d+\\.\\d+\\.\\d+$/"

0 commit comments

Comments
 (0)