Skip to content

Commit dd83188

Browse files
Darío Javier Craverogaearon
Darío Javier Cravero
authored andcommitted
> Added
- Dist build script (borrowed from flummox) to create distribution ready builds of redux that can be used in a browser directly. `dist/` is ignored by git. - Configuration for `cdnjs` autoimport from npm. > Changed - Clean up package.json by removing the unused browserify section; - Remove envify and babel-runtime as they aren't being used; - A change log :)
1 parent 6c7033e commit dd83188

File tree

7 files changed

+82
-8
lines changed

7 files changed

+82
-8
lines changed

.babelrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"stage": 0,
3-
"optional": ["runtime"]
4-
}
3+
"loose": "all"
4+
}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
node_modules
22
npm-debug.log
33
.DS_Store
4+
dist
45
lib
56
coverage
67
react.js

CHANGELOG

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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

package.json

+7-6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"description": "Atomic Flux with hot reloading",
55
"main": "lib/index.js",
66
"scripts": {
7+
"browser": "scripts/browser",
78
"build": "scripts/build",
89
"clean": "scripts/clean",
910
"lint": "scripts/lint",
@@ -53,13 +54,13 @@
5354
"webpack-dev-server": "^1.8.2"
5455
},
5556
"dependencies": {
56-
"babel-runtime": "^5.5.8",
57-
"envify": "^3.4.0",
5857
"invariant": "^2.0.0"
5958
},
60-
"browserify": {
61-
"transform": [
62-
"envify"
59+
"npmName": "redux",
60+
"npmFileMap": [{
61+
"basePath": "/dist/",
62+
"files": [
63+
"*.js"
6364
]
64-
}
65+
}]
6566
}

scripts/browser

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

scripts/prepublish

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
sh scripts/lint
44
sh scripts/clean
5+
sh scripts/browser
56
sh scripts/build

webpack.config.js

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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: /\.js$/, loaders: ['babel-loader'], exclude: /node_modules/ }
31+
]
32+
},
33+
output: {
34+
library: 'Redux',
35+
libraryTarget: 'var'
36+
},
37+
plugins: plugins,
38+
resolve: {
39+
extensions: ['', '.js']
40+
}
41+
};

0 commit comments

Comments
 (0)