Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

npm publish and upstream fetch #2

Merged
merged 29 commits into from
Aug 19, 2021
Merged
Show file tree
Hide file tree
Changes from 28 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
155edb7
Fix tests timeout (#435)
deanshub Apr 13, 2021
e5b617e
Fixes #417 missing module chunks (#433)
deanshub Apr 13, 2021
d4f25f9
Fix changelog username link texts
valscion Apr 13, 2021
0dcfb85
v4.4.1
valscion Apr 13, 2021
96f4ab1
Bump url-parse from 1.4.7 to 1.5.1 (#443)
dependabot[bot] May 7, 2021
9029c9b
Bump postcss from 8.1.6 to 8.2.10 (#446)
dependabot[bot] May 12, 2021
2bcf474
check this.compiler.outputFileSystem.constructor is not undefined (#447)
kedarv May 17, 2021
591303a
v4.4.2
valscion May 17, 2021
0ca4f2d
Update deps
th0r May 22, 2021
299b06f
Merge pull request #448 from webpack-contrib/update-deps
th0r May 22, 2021
318ff51
Remove unused `exports-loader`
th0r May 22, 2021
5d516ad
Merge pull request #449 from webpack-contrib/remove-exports-loader
th0r May 22, 2021
f15527e
Bump hosted-git-info from 2.8.8 to 2.8.9 (#445)
dependabot[bot] May 23, 2021
1e5143e
Bump browserslist from 4.14.6 to 4.16.6 in /test/webpack-versions/5.4…
dependabot[bot] May 27, 2021
9bf4302
Bump dns-packet from 1.3.1 to 1.3.4 (#451)
dependabot[bot] May 27, 2021
09d987f
Bump ws from 7.4.5 to 7.4.6 (#452)
dependabot[bot] May 29, 2021
794767f
Bump normalize-url from 4.5.0 to 4.5.1 (#455)
dependabot[bot] Jun 9, 2021
ce864dc
Bump ssri from 6.0.1 to 6.0.2 in /test/webpack-versions/4.44.2 (#441)
dependabot[bot] Jun 9, 2021
d96ebed
Bump elliptic from 6.5.3 to 6.5.4 in /test/webpack-versions/4.44.2 (#…
dependabot[bot] Jun 9, 2021
99f0516
Merge remote-tracking branch 'upstream/master'
shlior7 Aug 18, 2021
638bff5
npm publish
shlior7 Aug 19, 2021
c0abe2d
npm publish
shlior7 Aug 19, 2021
3476028
Merge branch 'updated-from-upstream' of github.com:wix-incubator/webp…
shlior7 Aug 19, 2021
effc295
lint fix
shlior7 Aug 19, 2021
c6062aa
npmpublic
shlior7 Aug 19, 2021
2a3502e
name-change
shlior7 Aug 19, 2021
da1b8c1
test title change
shlior7 Aug 19, 2021
c4057ff
yarnrc
shlior7 Aug 19, 2021
501ca62
fixed yarnrc
shlior7 Aug 19, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
}]
],
"plugins": [
["@babel/plugin-proposal-class-properties", {"loose": true}]
["@babel/plugin-proposal-class-properties", {"loose": true}],
["@babel/plugin-proposal-private-methods", {"loose": true}]
]
}
35 changes: 35 additions & 0 deletions .github/workflows/npm_publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# This workflow will do a clean install of node dependencies, and publish the package to the npm registry

name: Publish Webpack-Bundle-Analyzer Package

on:
push:
branches:
-master

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout the repository
uses: actions/checkout@v2

- name: Setup .npmrc file to publish to npm
uses: actions/setup-node@v2
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
run: yarn install

- name: Build the application
run: yarn build

- name: Publish to npm
run: npm publish --access public

env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}

2 changes: 1 addition & 1 deletion .npm-upgrade.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
"reason": "Current version of Webpack Dev Server doesn't work with v4"
}
}
}
}
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry=https://registry.npmjs.org/
1 change: 1 addition & 0 deletions .yarnrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry=https://registry.npmjs.org/
24 changes: 18 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,31 @@ _Note: Gaps between patch versions are faulty, broken or test releases._

## UNRELEASED

## 4.4.2

* **Bug Fix**
* Fix failure with `compiler.outputFileSystem.constructor` being `undefined` ([#447](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/447) by [@kedarv](https://github.com/kedarv) and [@alexander-akait](https://github.com/alexander-akait))
* **NOTE:** This fix doesn't have added test coverage so the fix might break in future versions unless test coverage is added later.

## 4.4.1

* **Bug Fix**
* Fix missing module chunks ([#433](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/433) by [@deanshub](https://github.com/deanshub))

* **Internal**
* Fix tests timing out in CI ([#435](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/435) by [@deanshub](https://github.com/deanshub))
* Fix command in issue template ([#428](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/428) by [@cncolder](https://github.com/cncolder))

## 4.4.0

* **Improvement**
* Keep treemap labels visible during zooming animations for better user experience ([#414](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/414) by [@
stanislawosinski](https://github.com/stanislawosinski))
* Keep treemap labels visible during zooming animations for better user experience ([#414](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/414) by [@stanislawosinski](https://github.com/stanislawosinski))

* **Bug Fix**
* Don't show an empty tooltip when hovering over the FoamTree attribution group or between top-level groups ([#413](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/413) by [@
stanislawosinski](https://github.com/stanislawosinski))
* Don't show an empty tooltip when hovering over the FoamTree attribution group or between top-level groups ([#413](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/413) by [@stanislawosinski](https://github.com/stanislawosinski))

* **Internal**
* Upgrade FoamTree to version 3.5.0, replace vendor dependency with an NPM package ([#412](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/412) by [@
stanislawosinski](https://github.com/stanislawosinski))
* Upgrade FoamTree to version 3.5.0, replace vendor dependency with an NPM package ([#412](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/412) by [@stanislawosinski](https://github.com/stanislawosinski))

## 4.3.0

Expand Down
2 changes: 1 addition & 1 deletion client/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export class Store {
};
}

module.weight = module[sizeProp];
module.weight = Math.abs(module[sizeProp]);
filteredModules.push(module);
}

Expand Down
Loading