Skip to content

Commit 1d34cef

Browse files
authored
STCLI-182 export babelOptions, not babelConfig (#266)
`babelConfig` is not exported from `stripes-webpack`, `babelOptions` is. Re-export that one. Corrects the typo in #265 that made it into a do-nothing PR. Refs STCLI-182
1 parent ea489c7 commit 1d34cef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 2.4.0 (IN PROGRESS)
44

5-
* Export babel config. Refs STCLI-182, STRIPES-742.
5+
* Re-export babel config options. Refs STCLI-182, STRIPES-742.
66

77
## [2.3.1](https://github.com/folio-org/stripes-cli/tree/v2.3.1) (2021-06-15)
88
* Updated @octokit/rest to ^10.6.0 so that @octokit/core > 3 peerDependency could be resolved. Refs STCLI-178.

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
const { babelConfig } = require('@folio/stripes-webpack');
1+
const { babelOptions } = require('@folio/stripes-webpack');
22

33
module.exports = {
4-
babelConfig,
4+
babelOptions,
55
};
66

0 commit comments

Comments
 (0)