Release 10.1.5 (this time hopefully for real)

As I was making the release, I found a bug in the Makefile that still
prevented the locale JSON files from being properly generated.
This commit is contained in:
JC Brand 2023-06-29 23:09:49 +02:00
parent 9114db8764
commit 5e02b9bd5d
1 changed files with 6 additions and 1 deletions

View File

@ -203,9 +203,14 @@ src/headless/dist/converse-headless.js: src webpack/webpack.common.js node_modul
src/headless/dist/converse-headless.min.js: src webpack/webpack.common.js node_modules @converse/headless
npm run headless
dist:: node_modules src/* | dist/website.css dist/website.min.css dist/converse-no-dependencies.js
dist:: node_modules src/* | dist/website.css dist/website.min.css
npm run headless
npm run build
# This step is necessary to properly generate JSON files from the .po
# files. The nodeps config uses preset-env with IE11 to turn all template
# literals into old JS strings, which is required because gettext 0.21
# doesn't support template literals.
npm run nodeps
.PHONY: install
install:: dist