Skip to content

Commit

Permalink
Fix/2823/Fix Web Package (#2934)
Browse files Browse the repository at this point in the history
* Change zip path to not contain a directory up order

* Add entry for zip fix

* Remove temporary test file

#2823
  • Loading branch information
phanlezz committed Aug 9, 2022
1 parent 0a77f1d commit 2093f11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/)
- Fix release tag [#2954](https://github.com/MaibornWolff/codecharta/pull/2954)
- Prevent dark map on unhover [#2959](https://github.com/MaibornWolff/codecharta/pull/2959)
- Zoom in/out time [#2959](https://github.com/MaibornWolff/codecharta/pull/2959)
- Fix webpack build package being corrupt if zipped under linux by changing the compression path [#2934](https://github.com/MaibornWolff/codecharta/pull/2934)

## [1.102] - 2022-08-04

Expand Down
4 changes: 2 additions & 2 deletions visualization/script/build-nwjs.js
Expand Up @@ -54,9 +54,9 @@ const nw = new NwBuilder({
)
});
zipPromises.push(zip({
source: path.join("..", "webpack"),
source: "webpack",
destination: baseZipPath + "web.zip",
cwd: nw.options.buildDir
cwd: path.join(nw.options.buildDir, "..")
}));

await Promise.all(zipPromises);
Expand Down

0 comments on commit 2093f11

Please sign in to comment.