Skip to content

Commit d8dfd66

Browse files
author
Giuseppe Mandato - Hitmands
committed
fix(webpack): export Testing Utilities
1 parent 55ccabf commit d8dfd66

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "redux-fluent",
33
"license": "MIT",
4-
"version": "0.25.4",
4+
"version": "0.25.5",
55
"homepage": "https://github.com/Code-Y/redux-fluent#readme",
66
"description": "Tiny and eloquent way to manage a redux-like state manager",
77
"author": "Code-Y (https://github.com/Code-Y)",

webpack.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@ const config = ({ ENV }) => ({
2626
context: path.join(ROOT, 'src'),
2727
entry: {
2828
[pkg.name]: [`./${pkg.name}.js`],
29+
[`${pkg.name}.extra`]: [`./${pkg.name}.extra.js`],
2930
},
3031
output: {
3132
libraryTarget: 'commonjs2',
3233
path: path.join(ROOT, 'build'),
33-
filename: `[name]t.${ENV}.js`,
34+
filename: `[name].${ENV}.js`,
3435
},
3536
module: {
3637
rules: [

0 commit comments

Comments
 (0)