diff --git a/web/README.md b/web/README.md index b74719f0b1..6229e72055 100644 --- a/web/README.md +++ b/web/README.md @@ -42,6 +42,9 @@ To view pages using compiled KeymanWeb, * `-debug_embedded` - to compile a readable version of the embedded KMEA/KMEI code * `-no_minify` - - to disable the minification '/release/' build sections + - to disable the minified '/release/web' and '/release/embedded' build sections. + - the '/release/unminified/web' and '/release/unminified/embedded' folders will still be built. +* `-clean` + - to erase pre-existing build products before the build. If more than one target is specified, the last one will take precedence. \ No newline at end of file diff --git a/web/source/build.sh b/web/source/build.sh index 06cf6c19e3..949ca416f6 100755 --- a/web/source/build.sh +++ b/web/source/build.sh @@ -12,7 +12,8 @@ display_usage ( ) { echo " -embed to compile only the KMEA/KMEI embedded engine." echo " -web to compile only the KeymanWeb engine." echo " -debug_embedded to compile a readable version of the embedded KMEA/KMEI code" - echo " -no_minify to disable the minification '/release/' build sections" + echo " -no_minify to disable the minification '/release/' build sections -" + echo " the '/release/unminified' subfolders will still be built." echo " -clean to erase pre-existing build products before the build." echo "" echo " If more than one target is specified, the last one will take precedence."