diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /devtools/shared/jsbeautify/UPGRADING.md | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | devtools/shared/jsbeautify/UPGRADING.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/devtools/shared/jsbeautify/UPGRADING.md b/devtools/shared/jsbeautify/UPGRADING.md new file mode 100644 index 0000000000..8d0ed4a93b --- /dev/null +++ b/devtools/shared/jsbeautify/UPGRADING.md @@ -0,0 +1,36 @@ +# UPGRADING + +1. `git clone https://github.com/beautify-web/js-beautify.git` + +2. `cd js-beautify` + +3. Retrieve the latest tag with + +``` +git describe --tags `git rev-list --tags --max-count=1` +``` + +4. Move to the latest tag `git checkout ${latestTag}` (`${latestTag}` should be replaced with + what was printed at step 3). + +5. `npm install` + +6. `npx webpack` + +7. Copy `js/lib/beautify.js` to `devtools/shared/jsbeautify/src/beautify-js.js` + +8. Copy `js/lib/beautify-html.js` to `devtools/shared/jsbeautify/src/beautify-html.js` + +9. Replace the following line at the bottom of the file: + +``` +var js_beautify = require('./beautify.js'); +``` + +with (changing `beautify.js` into `beautify-js.js`): + +``` +var js_beautify = require('./beautify-js.js'); +``` + +10. Copy `js/lib/beautify-css.js` to `devtools/shared/jsbeautify/src/beautify-css.js` |