Skip to content

Commit

Permalink
Merge pull request #5 from customink/transpile-es5
Browse files Browse the repository at this point in the history
Fix package.json & webpack/babel to transpile to ES5
  • Loading branch information
Kate Piette authored Feb 3, 2022
2 parents c9f52e0 + f7d3a04 commit e001b7b
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.1] - 2022-02-03

### Changed

- Added `browserslist` section to `package.json` to specify that babel should transpile to ES5

## [0.5.0] - 2022-02-01

### Added
Expand Down
5 changes: 4 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
module.exports = {
presets: [['@babel/preset-env', {targets: {node: 'current'}}]]
presets: ['@babel/preset-env'],
plugins: [
["@babel/transform-runtime"]
]
};
2 changes: 1 addition & 1 deletion dist/signalerjs.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e001b7b

Please sign in to comment.