diff --git a/.vscode/settings.json b/.vscode/settings.json
index 317cf9a..d49fc8c 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,32 +1,39 @@
{
// File formatting
+ // General settings
+ "editor.wordWrap": "off",
+ "files.trimTrailingWhitespace": true,
+
+ // Language-specific settings
"[markdown]": {
"editor.detectIndentation": false,
"editor.insertSpaces": true,
"editor.tabSize": 4,
- "editor.wordWrap": "off",
- "files.trimTrailingWhitespace": true,
},
"[makefile]": {
"editor.detectIndentation": false,
"editor.insertSpaces": false,
"editor.tabSize": 8,
- "editor.wordWrap": "off",
- "files.trimTrailingWhitespace": true,
},
"[asciidoc]": {
"editor.detectIndentation": false,
"editor.insertSpaces": true,
"editor.tabSize": 2,
- "editor.wordWrap": "off",
- "files.trimTrailingWhitespace": true,
},
"[shellscript]": {
"editor.detectIndentation": false,
"editor.insertSpaces": false,
"editor.tabSize": 8,
- "editor.wordWrap": "off",
- "files.trimTrailingWhitespace": true,
+ },
+ "[javascript]": {
+ "editor.detectIndentation": false,
+ "editor.insertSpaces": true,
+ "editor.tabSize": 2,
+ },
+ "[typescript]": {
+ "editor.detectIndentation": false,
+ "editor.insertSpaces": true,
+ "editor.tabSize": 2,
},
"files.associations": {
"*.adoc": "asciidoc",
@@ -35,6 +42,8 @@
"*.sh": "shellscript",
"prerm": "shellscript",
"postinstall": "shellscript",
+ "*.js": "javascript",
+ "*.ts": "typescript",
"Makefile": "makefile"
},
diff --git a/docs/technical/architecture.md b/docs/technical/architecture.md
index 195e7a6..53a7dcf 100644
--- a/docs/technical/architecture.md
+++ b/docs/technical/architecture.md
@@ -222,7 +222,7 @@ flowchart TB;
setBundleUri["Set bundleUri
to the value of fetch.bundleUri"]
creationTokenExists{{"fetch.bundleCreationToken config is set?"}}
setCreationToken["Set minCreationToken
to the value\nof fetch.bundleCreationToken"]
- setCreationTokenZero["Set creationToken
to 0"]
+ setCreationTokenZero["Set minCreationToken
to 0"]
downloadAndUnbundle(["Download and unbundle from list"])
bundleSuccess{{"Bundles downloaded and unpacked successfully?"}}
saveCreationToken["Set fetch.bundleCreationToken to highest\nunbundled creationToken"]