File tree 7 files changed +82
-8
lines changed
7 files changed +82
-8
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"stage" : 0 ,
3
- "optional " : [ " runtime " ]
4
- }
3
+ "loose " : " all "
4
+ }
Original file line number Diff line number Diff line change 1
1
node_modules
2
2
npm-debug.log
3
3
.DS_Store
4
+ dist
4
5
lib
5
6
coverage
6
7
react.js
Original file line number Diff line number Diff line change
1
+ # Change Log
2
+ All notable changes to this project will be documented in this file.
3
+ This project adheres to [Semantic Versioning](http://semver.org/).
4
+
5
+ ## [Unreleased][unreleased]
6
+ ### Added
7
+ - Dist build script (borrowed from flummox) to create distribution ready builds of redux
8
+ that can be used in a browser directly. `dist/` is ignored by git.
9
+ - Configuration for `cdnjs` autoimport from npm.
10
+
11
+ ### Changed
12
+ - Clean up package.json by removing the unused browserify section;
13
+ - Remove envify and babel-runtime as they aren't being used;
14
+ - A change log :)
15
+
16
+ [unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.11.1...HEAD
Original file line number Diff line number Diff line change 4
4
"description" : " Atomic Flux with hot reloading" ,
5
5
"main" : " lib/index.js" ,
6
6
"scripts" : {
7
+ "browser" : " scripts/browser" ,
7
8
"build" : " scripts/build" ,
8
9
"clean" : " scripts/clean" ,
9
10
"lint" : " scripts/lint" ,
53
54
"webpack-dev-server" : " ^1.8.2"
54
55
},
55
56
"dependencies" : {
56
- "babel-runtime" : " ^5.5.8" ,
57
- "envify" : " ^3.4.0" ,
58
57
"invariant" : " ^2.0.0"
59
58
},
60
- "browserify" : {
61
- "transform" : [
62
- " envify"
59
+ "npmName" : " redux" ,
60
+ "npmFileMap" : [{
61
+ "basePath" : " /dist/" ,
62
+ "files" : [
63
+ " *.js"
63
64
]
64
- }
65
+ }]
65
66
}
Original file line number Diff line number Diff line change
1
+ #! /bin/sh -e
2
+
3
+ WEBPACK_CMD=node_modules/.bin/webpack
4
+
5
+ mkdir -p dist
6
+
7
+ $WEBPACK_CMD src/index.js dist/redux.js
8
+ NODE_ENV=production $WEBPACK_CMD src/index.js dist/redux.min.js
9
+
10
+ $WEBPACK_CMD src/react.js dist/redux-react.js
11
+ NODE_ENV=production $WEBPACK_CMD src/react.js dist/redux-react.min.js
12
+
13
+ $WEBPACK_CMD src/react-native.js dist/redux-react-native.js
14
+ NODE_ENV=production $WEBPACK_CMD src/react-native.js dist/redux-react-native.min.js
Original file line number Diff line number Diff line change 2
2
3
3
sh scripts/lint
4
4
sh scripts/clean
5
+ sh scripts/browser
5
6
sh scripts/build
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ var webpack = require ( 'webpack' ) ;
4
+
5
+ var plugins = [
6
+ new webpack . DefinePlugin ( {
7
+ 'process.env.NODE_ENV' : JSON . stringify ( process . env . NODE_ENV )
8
+ } ) ,
9
+ new webpack . optimize . OccurenceOrderPlugin ( )
10
+ ] ;
11
+
12
+ if ( process . env . NODE_ENV === 'production' ) {
13
+ plugins . push (
14
+ new webpack . optimize . UglifyJsPlugin ( {
15
+ compressor : {
16
+ screw_ie8 : true ,
17
+ warnings : false
18
+ }
19
+ } )
20
+ ) ;
21
+ }
22
+
23
+ module . exports = {
24
+ externals : {
25
+ 'react' : 'React' ,
26
+ 'react-native' : 'React'
27
+ } ,
28
+ module : {
29
+ loaders : [
30
+ { test : / \. j s $ / , loaders : [ 'babel-loader' ] , exclude : / n o d e _ m o d u l e s / }
31
+ ]
32
+ } ,
33
+ output : {
34
+ library : 'Redux' ,
35
+ libraryTarget : 'var'
36
+ } ,
37
+ plugins : plugins ,
38
+ resolve : {
39
+ extensions : [ '' , '.js' ]
40
+ }
41
+ } ;
You can’t perform that action at this time.
0 commit comments