Skip to content

Commit fa16c4a

Browse files
committed
Tune package.json and remove hot loading
1 parent 197da51 commit fa16c4a

File tree

3 files changed

+8
-16
lines changed

3 files changed

+8
-16
lines changed

examples/counter/package.json

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,26 @@
11
{
22
"name": "counter-redux",
33
"version": "0.0.0",
4-
"description": "Counter example for redux",
4+
"description": "Counter example for ng2-redux",
55
"main": "server.js",
66
"scripts": {
77
"start": "node server.js"
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "https://github.com/gaearon/redux.git"
11+
"url": "https://github.com/wbuchwalter/ng2-redux.git"
1212
},
1313
"keywords": [
14-
"react",
15-
"reactjs",
16-
"hot",
17-
"reload",
18-
"hmr",
19-
"live",
20-
"edit",
21-
"webpack",
22-
"flux"
14+
"angular",
15+
"redux",
16+
"ng2-redux",
17+
"webpack"
2318
],
2419
"license": "MIT",
2520
"bugs": {
26-
"url": "https://github.com/gaearon/redux/issues"
21+
"url": "https://github.com/wbuchwalter/ng2-redux/issues"
2722
},
28-
"homepage": "https://github.com/gaearon/redux#readme",
23+
"homepage": "https://github.com/wbuchwalter/ng2-redux#readme",
2924
"dependencies": {
3025
"angular2": "2.0.0-alpha.30",
3126
"ng2-redux": "2.0.0-alpha.3",
@@ -41,7 +36,6 @@
4136
"babel-core": "^5.5.8",
4237
"babel-loader": "^5.1.4",
4338
"node-libs-browser": "^0.5.2",
44-
"react-hot-loader": "^1.2.7",
4539
"tsd": "^0.6.4",
4640
"typescript": "^1.6.2",
4741
"typescript-simple-loader": "^0.2.0",

examples/counter/server.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ var config = require('./webpack.config');
44

55
new WebpackDevServer(webpack(config), {
66
publicPath: config.output.publicPath,
7-
hot: true,
87
historyApiFallback: true,
98
stats: {
109
colors: true

examples/counter/webpack.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ module.exports = {
2121
publicPath: '/static/'
2222
},
2323
plugins: [
24-
new webpack.HotModuleReplacementPlugin(),
2524
new webpack.NoErrorsPlugin()
2625
],
2726
resolve: {

0 commit comments

Comments
 (0)