We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e1973f7 + 417dd09 commit 3fde8bfCopy full SHA for 3fde8bf
package.json
@@ -2,7 +2,6 @@
2
"name": "ng-redux",
3
"version": "3.5.0",
4
"description": "Redux bindings for Angular.js",
5
- "browser": "dist/ng-redux.js",
6
"main": "lib/ng-redux.js",
7
"module": "es/ng-redux.js",
8
"typings": "./index.d.ts",
rollup.config.js
@@ -30,15 +30,15 @@ if (env === 'development' || env === 'production') {
30
config.format = 'umd';
31
config.moduleName = 'NgRedux';
32
config.plugins.push(
33
+ replace({
34
+ 'process.env.NODE_ENV': JSON.stringify(env)
35
+ }),
36
nodeResolve({
37
jsnext: true,
38
}),
39
commonjs(),
40
babel({
41
exclude: 'node_modules/**'
- }),
- replace({
- 'process.env.NODE_ENV': JSON.stringify(env)
42
})
43
)
44
}
0 commit comments