Skip to content

Commit

Permalink
⬆️ Update webpack peer dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
goldhand committed Dec 29, 2016
1 parent 397dd3c commit 7639b05
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/package.json
Expand Up @@ -46,6 +46,6 @@
"style-loader": "^0.13.1",
"sw-precache-webpack-plugin": "^0.5.1",
"url-loader": "^0.5.7",
"webpack": "^2.1.0-beta.25"
"webpack": "^2.2.0-rc.3"
}
}
2 changes: 1 addition & 1 deletion examples/server.js
Expand Up @@ -14,7 +14,7 @@ app.use(express.static(root + '/dist'));
server = app.listen(port, host, serverStarted);

function serverStarted() {
console.log('Server started', host, port);
console.log('Server started', `${host}:${port}`);
console.log('Root directory', root);
console.log('Press Ctrl+C to exit...\n');
}
2 changes: 1 addition & 1 deletion examples/webpack.config.js
Expand Up @@ -34,7 +34,7 @@ module.exports = {
output: {
path: path.resolve(__dirname, 'dist/'),
filename: '[name]-[hash].js',
publicPath: 'http://localhost:8000/',
publicPath: 'http://localhost:3000/',
},

plugins: [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -38,7 +38,7 @@
},
"homepage": "https://github.com/goldhand/sw-precache-webpack-plugin#readme",
"peerDependencies": {
"webpack": "^1.1.0 || ^2 || ^2.1.0-beta"
"webpack": "^1 || ^2.1.0-beta || ^2.2.0-beta"
},
"dependencies": {
"del": "^2.2.2",
Expand Down

0 comments on commit 7639b05

Please sign in to comment.