| Value | Color |
|---|---|
| \e[0;30m | Black |
| \e[0;31m | Red |
| \e[0;32m | Green |
| \e[0;33m | Yellow |
| \e[0;34m | Blue |
| \e[0;35m | Purple |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/node_modules/typescript/lib/_tsc.js b/node_modules/typescript/lib/_tsc.js | |
| index 612a1f7..53fa32a 100644 | |
| --- a/node_modules/typescript/lib/_tsc.js | |
| +++ b/node_modules/typescript/lib/_tsc.js | |
| @@ -7563,6 +7563,7 @@ var Diagnostics = { | |
| Compiles_the_current_project_with_additional_settings: diag(6929, 3 /* Message */, "Compiles_the_current_project_with_additional_settings_6929", "Compiles the current project, with additional settings."), | |
| true_for_ES2022_and_above_including_ESNext: diag(6930, 3 /* Message */, "true_for_ES2022_and_above_including_ESNext_6930", "`true` for ES2022 and above, including ESNext."), | |
| List_of_file_name_suffixes_to_search_when_resolving_a_module: diag(6931, 1 /* Error */, "List_of_file_name_suffixes_to_search_when_resolving_a_module_6931", "List of file name suffixes to search when resolving a module."), | |
| + Import_JSON_files_as_const_assertions: diag(6933, 3 /* Message */, "Import_JSON_files_as_const_assertions_6933", "Import JSON files as const assertions."), | |
| Variable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Adds some useful git aliases | |
| echo "Adding aliases" | |
| # Lists changes (i.e. commit messages) | |
| # "- " prefixed before each line after any whitespace for easily making a markdown list | |
| # You can optionally provide from and to tags. | |
| # `git ls-changes` will list changes from the last tag to HEAD | |
| # `git ls-changes tag_a` will list changes from tag_a to HEAD |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info"> | |
| <mime-type type="application/vnd.google-apps.document"> | |
| <comment>Google Docs</comment> | |
| <glob pattern="*.gdoc" /> | |
| </mime-type> | |
| <mime-type type="application/vnd.google-apps.drawing"> | |
| <comment>Google Drawings</comment> | |
| <glob pattern="*.gdraw" /> | |
| </mime-type> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # Installation: | |
| # 1. put this script somewhere in your path - `/usr/local/bin/powerdraw` is probably | |
| # a good idea. | |
| # 2. Give the script execution permissions, e.g. `sudo chmod a+x /usr/local/bin/powerdraw` | |
| # 3. Optional - add a sudoers file to allow users to execute this file without typing their | |
| # password over and over. For example, create `/etc/sudoers.d/allow-powerdraw` with the | |
| # following content: | |
| # %admin ALL = NOPASSWD: /usr/local/bin/powerdraw, /usr/local/bin/powerdraw -f |