This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor(polyfill): use babel + browserslist for handling polyfills * refactor(dev): use prettier and eslint * refactor: took ownership of the package after break-up of the company * refactor(dependencies): upgrade webpack, remove unused lodash * feat: implement flexible stripe elements * chore: add year * chore: generate dist * refactor(docs): update readme for v1.0.0 * refactor: remove helper components, too much hassle, use StripeElement * refactor(docs): update readme * refactor(stripeElements): improve while testing * refactor: enable jest unit tests * test(stripeElements): test initStripe, createElements, createElement * refactor(build): generate build
- Loading branch information
1 parent
ede1605
commit ec8204c
Showing
25 changed files
with
7,873 additions
and
3,529 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
{ | ||
"presets": ["es2015"] | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", { | ||
"useBuiltIns": "usage", | ||
"corejs": 3 | ||
} | ||
] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
browser: true, | ||
node: true, | ||
}, | ||
parserOptions: { | ||
parser: 'babel-eslint', | ||
}, | ||
extends: [ | ||
'plugin:vue/recommended', | ||
'plugin:prettier/recommended', | ||
'prettier', | ||
], | ||
// required to lint *.vue files | ||
plugins: ['vue'], | ||
rules: { | ||
semi: [2, 'never'], | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module.exports = { | ||
semi: false, | ||
singleQuote: true, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.