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

Fix/3253/electron build #3389

Merged
merged 12 commits into from
Nov 2, 2023
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ jobs:
npm run test
npm run build
npm run package
npm run package:zip
docker build -t codecharta/codecharta-visualization .

- name: Add Changelog Entries to Release
Expand Down
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
node_modules
install.js
build
script
plop-templates
dist
assets
Expand All @@ -12,6 +11,7 @@ __snapshots__
Dockerfile
*.glsl
.*
*.sh
*.hbs
*.kt
*.txt
Expand Down
7 changes: 1 addition & 6 deletions visualization/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,7 @@ $ npm run package
$ npm run package:local
```

For distribution the different application folders they need to be zipped. This command creates a `.zip` compressed file for every folder inside `dist/applications` and puts them in the `dist/packages` folder:

```bash
# You may not be able to zip every OS/arch combo on every OS. You might need to adjust the script/package-zips.js for your usage.
$ npm run package:zip
```
> For each application there will be a `.zip` file inside the `dist/packages` folder. Zipping is part of the `npm run package` process. You can check the scripts inside `script/app*.js` for details.

#### Dev

Expand Down
Loading