Skip to content

Commit

Permalink
Merge pull request #4 from startupheroes/fp-b-2
Browse files Browse the repository at this point in the history
B1: Fix #2, es5 problems, add babel plugins
  • Loading branch information
mskasal authored May 13, 2019
2 parents 2e46984 + 6fc34eb commit b244a4d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ module.exports = {
],
plugins: [
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-class-properties"
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-arrow-functions",
"@babel/plugin-transform-block-scoping",
"@babel/plugin-transform-classes"
]
};
2 changes: 1 addition & 1 deletion dist/fingerprint.js

Large diffs are not rendered by default.

Binary file modified dist/fingerprint.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/browser/fingerprint.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-block-scoping": "^7.4.4",
"@babel/plugin-transform-classes": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-loader": "^8.0.6",
Expand Down

0 comments on commit b244a4d

Please sign in to comment.