diff --git a/.travis.yml b/.travis.yml index fc712860..b84b744d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,7 @@ language: node_js +branches: + only: + - master node_js: - "4" - "6" diff --git a/README.md b/README.md index ff6f2887..f45614aa 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ command: webpack --profile --json > stats.json ``` -If you're on Windows and using PowerShell, you can generate the stats file with this command to [avoid BOM issues](https://github.com/th0r/webpack-bundle-analyzer/issues/47): +If you're on Windows and using PowerShell, you can generate the stats file with this command to [avoid BOM issues](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/47): ``` webpack --profile --json | Out-file 'stats.json' -Encoding OEM @@ -116,7 +116,7 @@ This is the size of running the file(s) through gzip compression. This is a known caveat when `webpack.optimize.ModuleConcatenationPlugin` is used. The way `ModuleConcatenationPlugin` works is that it merges multiple modules into a single one, and so that resulting module doesn't have edges anymore. -If you are interested to drill down to exact dependencies, try analyzing your bundle without `ModuleConcatenationPlugin`. See [issue #115](https://github.com/th0r/webpack-bundle-analyzer/issues/115) for more discussion. +If you are interested to drill down to exact dependencies, try analyzing your bundle without `ModuleConcatenationPlugin`. See [issue #115](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/115) for more discussion. ## Contributing diff --git a/package.json b/package.json index 718c0510..1e5b7778 100644 --- a/package.json +++ b/package.json @@ -4,14 +4,14 @@ "description": "Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap", "author": "Yury Grunin ", "license": "MIT", - "homepage": "https://github.com/th0r/webpack-bundle-analyzer", - "changelog": "https://github.com/th0r/webpack-bundle-analyzer/blob/master/CHANGELOG.md", + "homepage": "https://github.com/webpack-contrib/webpack-bundle-analyzer", + "changelog": "https://github.com/webpack-contrib/webpack-bundle-analyzer/blob/master/CHANGELOG.md", "bugs": { - "url": "https://github.com/th0r/webpack-bundle-analyzer/issues" + "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/th0r/webpack-bundle-analyzer.git" + "url": "git+https://github.com/webpack-contrib/webpack-bundle-analyzer.git" }, "main": "lib/index.js", "bin": "lib/bin/analyzer.js",