Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ writing, this is a rolling-release project without any meaningful versioning
whatsoever. Tags/releases may be created for the sole purpose of documenting
major updates to the project.

## 2021-12-23

### Changed

- Minify client script
([#322](https://github.com/giscus/giscus/pull/322)).

## 2021-12-15

### Fixed
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
"scripts": {
"cscript": "tsc client.ts --outDir public",
"cthemes": "postcss styles/themes/*.css --dir public/themes --config styles/themes",
"mscript": "curl -d output_info=compiled_code --data-urlencode js_code@public/client.js https://closure-compiler.appspot.com/compile -o public/client.js",
"dev": "yarn cscript --watch --preserveWatchOutput & yarn cthemes --watch & next dev",
"build": "yarn cscript && yarn cthemes && next build",
"build": "yarn cscript && yarn cthemes && yarn mscript && next build",
"start": "next start",
"lint": "eslint . --cache && stylelint **/*.css"
},
Expand Down