netcron 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of netcron might be problematic. Click here for more details.
- package/.cache/replit/__replit_disk_meta.json +1 -0
- package/.cache/replit/nix/env.json +1 -0
- package/.config/configstore/update-notifier-npm.json +4 -0
- package/.config/configstore/update-notifier-npm.json.1735545094 +4 -0
- package/.config/nvm/.dockerignore +16 -0
- package/.config/nvm/.editorconfig +28 -0
- package/.config/nvm/.gitattributes +1 -0
- package/.config/nvm/.github/FUNDING.yml +12 -0
- package/.config/nvm/.github/ISSUE_TEMPLATE.md +44 -0
- package/.config/nvm/.github/SECURITY.md +3 -0
- package/.config/nvm/.github/workflows/latest-npm.yml +81 -0
- package/.config/nvm/.github/workflows/lint.yml +77 -0
- package/.config/nvm/.github/workflows/rebase.yml +23 -0
- package/.config/nvm/.github/workflows/release.yml +32 -0
- package/.config/nvm/.github/workflows/require-allow-edits.yml +21 -0
- package/.config/nvm/.github/workflows/shellcheck.yml +58 -0
- package/.config/nvm/.github/workflows/tests.yml +56 -0
- package/.config/nvm/.github/workflows/toc.yml +37 -0
- package/.config/nvm/.github/workflows/windows-npm.yml +134 -0
- package/.config/nvm/.mailmap +1 -0
- package/.config/nvm/.travis.yml +100 -0
- package/.config/nvm/CODE_OF_CONDUCT.md +125 -0
- package/.config/nvm/CONTRIBUTING.md +115 -0
- package/.config/nvm/Dockerfile +111 -0
- package/.config/nvm/GOVERNANCE.md +10 -0
- package/.config/nvm/LICENSE.md +22 -0
- package/.config/nvm/Makefile +85 -0
- package/.config/nvm/PROJECT_CHARTER.md +49 -0
- package/.config/nvm/README.md +1047 -0
- package/.config/nvm/ROADMAP.md +9 -0
- package/.config/nvm/bash_completion +99 -0
- package/.config/nvm/install.sh +479 -0
- package/.config/nvm/nvm-exec +17 -0
- package/.config/nvm/nvm.sh +4417 -0
- package/.config/nvm/package.json +51 -0
- package/.config/nvm/rename_test.sh +52 -0
- package/.config/nvm/test/common.sh +103 -0
- package/.config/nvm/test/fast/Aliases/'nvm alias' should not accept aliases with slashes +26 -0
- package/.config/nvm/test/fast/Aliases/'nvm unalias' should accept aliases when they shadow a built-in alias +17 -0
- package/.config/nvm/test/fast/Aliases/'nvm unalias' should not accept aliases with names equal to built-in alias +25 -0
- package/.config/nvm/test/fast/Aliases/'nvm unalias' should not accept aliases with slashes +26 -0
- package/.config/nvm/test/fast/Aliases/Running 'nvm alias /313/202aliasname/313/203 /313/202target/313/203' again should change the target" +24 -0
- package/.config/nvm/test/fast/Aliases/Running 'nvm alias /313/202aliasname/313/203' should list but one alias" +4 -0
- package/.config/nvm/test/fast/Aliases/Running 'nvm alias' lists implicit aliases when they do not exist +26 -0
- package/.config/nvm/test/fast/Aliases/Running 'nvm alias' lists manual aliases instead of implicit aliases when present +49 -0
- package/.config/nvm/test/fast/Aliases/Running 'nvm alias' should list all aliases +48 -0
- package/.config/nvm/test/fast/Aliases/circular/nvm_resolve_alias +36 -0
- package/.config/nvm/test/fast/Aliases/circular/nvm_resolve_local_alias +36 -0
- package/.config/nvm/test/fast/Aliases/circular/setup +9 -0
- package/.config/nvm/test/fast/Aliases/circular/teardown +9 -0
- package/.config/nvm/test/fast/Aliases/lts/'nvm alias' should ensure LTS alias dir exists +18 -0
- package/.config/nvm/test/fast/Aliases/lts/setup_dir +10 -0
- package/.config/nvm/test/fast/Aliases/lts/teardown_dir +10 -0
- package/.config/nvm/test/fast/Aliases/nvm_ensure_default_set +20 -0
- package/.config/nvm/test/fast/Aliases/nvm_list_aliases calls nvm_get_colors +22 -0
- package/.config/nvm/test/fast/Aliases/nvm_list_aliases works with LTS aliases +31 -0
- package/.config/nvm/test/fast/Aliases/nvm_list_aliases works with no LTS aliases present +21 -0
- package/.config/nvm/test/fast/Aliases/nvm_print_alias_path calls nvm_get_colors +28 -0
- package/.config/nvm/test/fast/Aliases/nvm_print_formatted_alias calls nvm_get_colors +21 -0
- package/.config/nvm/test/fast/Aliases/nvm_resolve_alias +33 -0
- package/.config/nvm/test/fast/Aliases/nvm_resolve_local_alias +35 -0
- package/.config/nvm/test/fast/Aliases/setup +16 -0
- package/.config/nvm/test/fast/Aliases/teardown +17 -0
- package/.config/nvm/test/fast/Listing paths/Running 'nvm which 0.0.2' should display only version 0.0.2 +27 -0
- package/.config/nvm/test/fast/Listing paths/Running 'nvm which foo' should return a nonzero exit code when not found +6 -0
- package/.config/nvm/test/fast/Listing paths/teardown +3 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls --no-alias' does not call into nvm_alias +34 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls --no-alias' with a pattern errors +15 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls 0.0.2' should display only version 0.0.2 +21 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls 0.2' should display only 0.2.x versions +42 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls foo' should return a nonzero exit code when not found +6 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls io' should return NA +6 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls node_' should return a nonzero exit code when not found +6 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls stable' and 'nvm ls unstable' should return the appropriate implicit alias +29 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls system' should include 'system' when appropriate +21 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' calls into nvm_alias +35 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' should display all installed versions +44 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' should filter out '.nvm' +10 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' should filter out 'versions' +10 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' should include 'system' when appropriate +21 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' should list versions in the 'versions' directory +12 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' should not show a trailing slash +42 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' with node-like versioning vx.x.x should only list a matched version +11 -0
- package/.config/nvm/test/fast/Listing versions/Running 'nvm ls' with nounset should not fail +23 -0
- package/.config/nvm/test/fast/Listing versions/Using a nonstandard IFS should not break +19 -0
- package/.config/nvm/test/fast/Listing versions/teardown +16 -0
- package/.config/nvm/test/fast/Running 'nvm alias' should create a file in the alias directory +11 -0
- package/.config/nvm/test/fast/Running 'nvm current' should display current nvm environment +13 -0
- package/.config/nvm/test/fast/Running 'nvm deactivate' should unset the nvm environment variables +25 -0
- package/.config/nvm/test/fast/Running 'nvm install' with '--reinstall-packages-from' requires a valid version +59 -0
- package/.config/nvm/test/fast/Running 'nvm install' with an invalid version fails nicely +15 -0
- package/.config/nvm/test/fast/Running 'nvm unalias' should remove the alias file +13 -0
- package/.config/nvm/test/fast/Running 'nvm uninstall' should remove the appropriate directory +12 -0
- package/.config/nvm/test/fast/Running 'nvm uninstall' with incorrect file permissions fails nicely +14 -0
- package/.config/nvm/test/fast/Running 'nvm unload' should unset all function and variables +30 -0
- package/.config/nvm/test/fast/Running 'nvm use foo' where 'foo' is circular aborts +39 -0
- package/.config/nvm/test/fast/Running 'nvm use iojs' uses latest io.js version +37 -0
- package/.config/nvm/test/fast/Running 'nvm use system' should work as expected +44 -0
- package/.config/nvm/test/fast/Running 'nvm use x' should create and change the 'current' symlink +36 -0
- package/.config/nvm/test/fast/Running 'nvm use x' should not create the 'current' symlink if $NVM_SYMLINK_CURRENT is false +86 -0
- package/.config/nvm/test/fast/Running 'nvm use' should drop CR char automatically +33 -0
- package/.config/nvm/test/fast/Set Colors/nvm_echo_with_colors +21 -0
- package/.config/nvm/test/fast/Set Colors/nvm_err_with_colors +19 -0
- package/.config/nvm/test/fast/Set Colors/nvm_print_default_alias calls nvm_get_colors +24 -0
- package/.config/nvm/test/fast/Set Colors/nvm_print_versions calls nvm_get_colors +52 -0
- package/.config/nvm/test/fast/Sourcing nvm.sh should make the nvm command available +7 -0
- package/.config/nvm/test/fast/Sourcing nvm.sh should not modify parameters of caller +7 -0
- package/.config/nvm/test/fast/Unit tests/mocks/LTS_names.txt +8 -0
- package/.config/nvm/test/fast/Unit tests/mocks/iojs.org-dist-index.tab +42 -0
- package/.config/nvm/test/fast/Unit tests/mocks/lts-star.txt +1 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nodejs.org-dist-index.tab +671 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nodejs.org-download-nightly-index.tab +2915 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm ls-remote iojs.txt +41 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm ls-remote lts.txt +194 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm ls-remote node.txt +670 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm ls-remote.txt +711 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote LTS argon.txt +36 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote LTS nightly argon.txt +1 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote LTS nightly.txt +26 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote LTS.txt +194 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote nightly.txt +150 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote stable nightly.txt +1 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote stable.txt +1 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote.txt +670 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_ls_remote_iojs.txt +41 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_make_alias LTS alias calls.txt +9 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_print_implicit_alias remote stable nightly.txt +1 -0
- package/.config/nvm/test/fast/Unit tests/mocks/nvm_print_implicit_alias remote stable.txt +1 -0
- package/.config/nvm/test/fast/Unit tests/mocks/project_dirs/nested-both/a/b/c/d/.gitkeep +0 -0
- package/.config/nvm/test/fast/Unit tests/mocks/project_dirs/nested-both/package.json +0 -0
- package/.config/nvm/test/fast/Unit tests/mocks/project_dirs/nested-n_m/a/b/c/d/.gitkeep +0 -0
- package/.config/nvm/test/fast/Unit tests/mocks/project_dirs/nested-pkg/a/b/c/d/.gitkeep +0 -0
- package/.config/nvm/test/fast/Unit tests/mocks/project_dirs/nested-pkg/package.json +0 -0
- package/.config/nvm/test/fast/Unit tests/mocks/project_dirs/no-nesting-both/package.json +0 -0
- package/.config/nvm/test/fast/Unit tests/mocks/project_dirs/no-nesting-pkg/package.json +0 -0
- package/.config/nvm/test/fast/Unit tests/nvm ls-remote +73 -0
- package/.config/nvm/test/fast/Unit tests/nvm set_colors +52 -0
- package/.config/nvm/test/fast/Unit tests/nvm version-remote +51 -0
- package/.config/nvm/test/fast/Unit tests/nvm_add_iojs_prefix +9 -0
- package/.config/nvm/test/fast/Unit tests/nvm_alias +32 -0
- package/.config/nvm/test/fast/Unit tests/nvm_alias LTS-N +36 -0
- package/.config/nvm/test/fast/Unit tests/nvm_alias_path +7 -0
- package/.config/nvm/test/fast/Unit tests/nvm_change_path +57 -0
- package/.config/nvm/test/fast/Unit tests/nvm_check_for_help +9 -0
- package/.config/nvm/test/fast/Unit tests/nvm_clang_version +62 -0
- package/.config/nvm/test/fast/Unit tests/nvm_command_info +58 -0
- package/.config/nvm/test/fast/Unit tests/nvm_compare_checksum +72 -0
- package/.config/nvm/test/fast/Unit tests/nvm_compute_checksum +23 -0
- package/.config/nvm/test/fast/Unit tests/nvm_curl_libz_support +39 -0
- package/.config/nvm/test/fast/Unit tests/nvm_curl_use_compression +38 -0
- package/.config/nvm/test/fast/Unit tests/nvm_curl_version +32 -0
- package/.config/nvm/test/fast/Unit tests/nvm_die_on_prefix +192 -0
- package/.config/nvm/test/fast/Unit tests/nvm_download +18 -0
- package/.config/nvm/test/fast/Unit tests/nvm_download_artifact +55 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ensure_default_set +15 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ensure_version_installed +72 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ensure_version_prefix +12 -0
- package/.config/nvm/test/fast/Unit tests/nvm_extract_tarball +12 -0
- package/.config/nvm/test/fast/Unit tests/nvm_find_project_dir +36 -0
- package/.config/nvm/test/fast/Unit tests/nvm_find_up +26 -0
- package/.config/nvm/test/fast/Unit tests/nvm_format_version +20 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_arch +85 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_artifact_compression +22 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_checksum +45 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_checksum_alg +20 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_checksum_binary +20 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_colors +79 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_default_packages +92 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_download_slug +111 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_latest missing curl or wget +20 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_minor_version +45 -0
- package/.config/nvm/test/fast/Unit tests/nvm_get_mirror +32 -0
- package/.config/nvm/test/fast/Unit tests/nvm_has +11 -0
- package/.config/nvm/test/fast/Unit tests/nvm_has_non_aliased +24 -0
- package/.config/nvm/test/fast/Unit tests/nvm_has_solaris_binary +32 -0
- package/.config/nvm/test/fast/Unit tests/nvm_has_system_iojs +27 -0
- package/.config/nvm/test/fast/Unit tests/nvm_has_system_node +27 -0
- package/.config/nvm/test/fast/Unit tests/nvm_install_binary_extract +59 -0
- package/.config/nvm/test/fast/Unit tests/nvm_install_binary_nosource +30 -0
- package/.config/nvm/test/fast/Unit tests/nvm_install_latest_npm +58 -0
- package/.config/nvm/test/fast/Unit tests/nvm_install_no_progress_bar +43 -0
- package/.config/nvm/test/fast/Unit tests/nvm_iojs_prefix +7 -0
- package/.config/nvm/test/fast/Unit tests/nvm_iojs_version_has_solaris_binary +17 -0
- package/.config/nvm/test/fast/Unit tests/nvm_is_alias +20 -0
- package/.config/nvm/test/fast/Unit tests/nvm_is_iojs_version +10 -0
- package/.config/nvm/test/fast/Unit tests/nvm_is_merged_node_version +10 -0
- package/.config/nvm/test/fast/Unit tests/nvm_is_natural_num +17 -0
- package/.config/nvm/test/fast/Unit tests/nvm_is_valid_version +13 -0
- package/.config/nvm/test/fast/Unit tests/nvm_is_version_installed +54 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ls_current +39 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ls_remote +86 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ls_remote LTS aliases +49 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ls_remote nightly +65 -0
- package/.config/nvm/test/fast/Unit tests/nvm_ls_remote_iojs +37 -0
- package/.config/nvm/test/fast/Unit tests/nvm_make_alias +19 -0
- package/.config/nvm/test/fast/Unit tests/nvm_node_prefix +7 -0
- package/.config/nvm/test/fast/Unit tests/nvm_node_version_has_solaris_binary +33 -0
- package/.config/nvm/test/fast/Unit tests/nvm_normalize_lts +38 -0
- package/.config/nvm/test/fast/Unit tests/nvm_num_version_groups +24 -0
- package/.config/nvm/test/fast/Unit tests/nvm_print_alias_path +44 -0
- package/.config/nvm/test/fast/Unit tests/nvm_print_color_code +20 -0
- package/.config/nvm/test/fast/Unit tests/nvm_print_default_alias +38 -0
- package/.config/nvm/test/fast/Unit tests/nvm_print_implicit_alias errors +25 -0
- package/.config/nvm/test/fast/Unit tests/nvm_print_implicit_alias success +106 -0
- package/.config/nvm/test/fast/Unit tests/nvm_print_npm_version +28 -0
- package/.config/nvm/test/fast/Unit tests/nvm_remote_version +78 -0
- package/.config/nvm/test/fast/Unit tests/nvm_remote_versions +77 -0
- package/.config/nvm/test/fast/Unit tests/nvm_stdout_is_terminal +32 -0
- package/.config/nvm/test/fast/Unit tests/nvm_strip_iojs_prefix +10 -0
- package/.config/nvm/test/fast/Unit tests/nvm_strip_path +24 -0
- package/.config/nvm/test/fast/Unit tests/nvm_supports_xz +42 -0
- package/.config/nvm/test/fast/Unit tests/nvm_tree_contains_path +31 -0
- package/.config/nvm/test/fast/Unit tests/nvm_use_if_needed +24 -0
- package/.config/nvm/test/fast/Unit tests/nvm_validate_implicit_alias +20 -0
- package/.config/nvm/test/fast/Unit tests/nvm_version +48 -0
- package/.config/nvm/test/fast/Unit tests/nvm_version_dir +11 -0
- package/.config/nvm/test/fast/Unit tests/nvm_version_greater +15 -0
- package/.config/nvm/test/fast/Unit tests/nvm_version_path +14 -0
- package/.config/nvm/test/fast/Unit tests/nvm_wrap_with_color_code +1 -0
- package/.config/nvm/test/fast/nvm should remove the last trailing slash in $NVM_DIR +18 -0
- package/.config/nvm/test/fast/setup +14 -0
- package/.config/nvm/test/fast/setup_dir +18 -0
- package/.config/nvm/test/fast/teardown +12 -0
- package/.config/nvm/test/fast/teardown_dir +15 -0
- package/.config/nvm/test/install_script/install_nvm_from_git +129 -0
- package/.config/nvm/test/install_script/nvm_check_global_modules +65 -0
- package/.config/nvm/test/install_script/nvm_detect_profile +126 -0
- package/.config/nvm/test/install_script/nvm_do_install +18 -0
- package/.config/nvm/test/install_script/nvm_download +18 -0
- package/.config/nvm/test/install_script/nvm_install_dir +25 -0
- package/.config/nvm/test/install_script/nvm_install_with_aliased_dot +24 -0
- package/.config/nvm/test/install_script/nvm_install_with_node_version +12 -0
- package/.config/nvm/test/install_script/nvm_profile_is_bash_or_zsh +14 -0
- package/.config/nvm/test/install_script/nvm_reset +38 -0
- package/.config/nvm/test/install_script/nvm_source +43 -0
- package/.config/nvm/test/installation_iojs/install already installed uses it +25 -0
- package/.config/nvm/test/installation_iojs/install from binary +22 -0
- package/.config/nvm/test/installation_iojs/install from source +22 -0
- package/.config/nvm/test/installation_iojs/install two versions and use the latest one +25 -0
- package/.config/nvm/test/installation_iojs/install version specified in .nvmrc from binary +22 -0
- package/.config/nvm/test/installation_iojs/install version specified in .nvmrc from source +23 -0
- package/.config/nvm/test/installation_iojs/install while reinstalling packages +31 -0
- package/.config/nvm/test/installation_iojs/nvm install v1 works +19 -0
- package/.config/nvm/test/installation_iojs/setup_dir +5 -0
- package/.config/nvm/test/installation_iojs/teardown_dir +16 -0
- package/.config/nvm/test/installation_node/default-packages +123 -0
- package/.config/nvm/test/installation_node/install LTS +29 -0
- package/.config/nvm/test/installation_node/install already installed uses it +23 -0
- package/.config/nvm/test/installation_node/install from binary +23 -0
- package/.config/nvm/test/installation_node/install from binary with binary flag set +37 -0
- package/.config/nvm/test/installation_node/install from source +29 -0
- package/.config/nvm/test/installation_node/install from source with thread parameter +33 -0
- package/.config/nvm/test/installation_node/install from source without V8 snapshot for ARM +25 -0
- package/.config/nvm/test/installation_node/install hook +45 -0
- package/.config/nvm/test/installation_node/install latest npm +51 -0
- package/.config/nvm/test/installation_node/install on bash with ERR trap and set -E +50 -0
- package/.config/nvm/test/installation_node/install two versions and use the latest one +24 -0
- package/.config/nvm/test/installation_node/install version specified in .nvmrc from binary +20 -0
- package/.config/nvm/test/installation_node/install while reinstalling packages +46 -0
- package/.config/nvm/test/installation_node/install with --alias +11 -0
- package/.config/nvm/test/installation_node/install with --default +11 -0
- package/.config/nvm/test/installation_node/install with --latest-npm +12 -0
- package/.config/nvm/test/installation_node/setup_dir +5 -0
- package/.config/nvm/test/installation_node/teardown_dir +18 -0
- package/.config/nvm/test/mocks/isainfo_amd64 +5 -0
- package/.config/nvm/test/mocks/isainfo_x86 +5 -0
- package/.config/nvm/test/mocks/pkg_info_amd64 +4 -0
- package/.config/nvm/test/mocks/pkg_info_fail +1 -0
- package/.config/nvm/test/mocks/pkg_info_x86 +1 -0
- package/.config/nvm/test/mocks/uname_linux_armv8l +5 -0
- package/.config/nvm/test/mocks/uname_osx_amd64 +5 -0
- package/.config/nvm/test/mocks/uname_osx_x86 +5 -0
- package/.config/nvm/test/mocks/uname_smartos_amd64 +5 -0
- package/.config/nvm/test/mocks/uname_smartos_x86 +5 -0
- package/.config/nvm/test/slow/Running 'nvm current' should display current nvm environment +9 -0
- package/.config/nvm/test/slow/nvm exec/Preamble works and respects 'silent' flag +30 -0
- package/.config/nvm/test/slow/nvm exec/Running 'nvm exec --lts' should work +18 -0
- package/.config/nvm/test/slow/nvm exec/Running 'nvm exec 0.x' should work +15 -0
- package/.config/nvm/test/slow/nvm exec/Running 'nvm exec' should pick up .nvmrc version +16 -0
- package/.config/nvm/test/slow/nvm exec/Running 'nvm exec' with help should not parse +9 -0
- package/.config/nvm/test/slow/nvm exec/setup_dir +10 -0
- package/.config/nvm/test/slow/nvm exec/teardown_dir +13 -0
- package/.config/nvm/test/slow/nvm reinstall-packages/Running 'nvm copy-packages $(nvm ls current)' should error out +17 -0
- package/.config/nvm/test/slow/nvm reinstall-packages/setup_dir +11 -0
- package/.config/nvm/test/slow/nvm reinstall-packages/should work as expected +31 -0
- package/.config/nvm/test/slow/nvm reinstall-packages/teardown_dir +13 -0
- package/.config/nvm/test/slow/nvm reinstall-packages/test-npmlink/index.js +2 -0
- package/.config/nvm/test/slow/nvm reinstall-packages/test-npmlink/package.json +10 -0
- package/.config/nvm/test/slow/nvm reinstall-packages/works with no installs +18 -0
- package/.config/nvm/test/slow/nvm run/Running 'nvm run --harmony --version' should work +8 -0
- package/.config/nvm/test/slow/nvm run/Running 'nvm run --lts' should work +15 -0
- package/.config/nvm/test/slow/nvm run/Running 'nvm run 0.x' should error out sensibly when 0.x is not installed +16 -0
- package/.config/nvm/test/slow/nvm run/Running 'nvm run 0.x' should work +8 -0
- package/.config/nvm/test/slow/nvm run/Running 'nvm run' should pick up .nvmrc version +25 -0
- package/.config/nvm/test/slow/nvm run/setup_dir +11 -0
- package/.config/nvm/test/slow/nvm run/teardown_dir +14 -0
- package/.config/nvm/test/slow/nvm uninstall/Running 'nvm uninstall 0.12.6' uninstalls v0.12.6 +33 -0
- package/.config/nvm/test/slow/nvm uninstall/Running 'nvm uninstall' with incorrect file permissions fails nicely +30 -0
- package/.config/nvm/test/slow/nvm uninstall/setup_dir +4 -0
- package/.config/nvm/test/slow/nvm uninstall/teardown_dir +5 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use --lts' uses latest LTS version +22 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use --lts=foo' uses latest 'foo' LTS version +22 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use iojs' uses latest io.js version +20 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use node --silent' doesn't print anything +13 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use node' uses latest stable node version +20 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use v1.0.0' uses iojs-v1.0.0 iojs version +20 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use' calls 'nvm_die_on_prefix' +22 -0
- package/.config/nvm/test/slow/nvm use/Running 'nvm use' with nvmrc containing not intalled version +28 -0
- package/.config/nvm/test/slow/nvm use/setup_dir +23 -0
- package/.config/nvm/test/slow/nvm use/teardown_dir +22 -0
- package/.config/nvm/test/slow/nvm_get_latest/nvm_get_latest +101 -0
- package/.config/nvm/test/slow/nvm_get_latest/nvm_get_latest failed redirect +25 -0
- package/.config/nvm/test/sourcing/Sourcing nvm.sh global alias bug +30 -0
- package/.config/nvm/test/sourcing/Sourcing nvm.sh should keep version if one is active +20 -0
- package/.config/nvm/test/sourcing/Sourcing nvm.sh should use the default if available and no nvm node is loaded +28 -0
- package/.config/nvm/test/sourcing/Sourcing nvm.sh with --install and .nvmrc should install it +27 -0
- package/.config/nvm/test/sourcing/Sourcing nvm.sh with --install should install the default +32 -0
- package/.config/nvm/test/sourcing/Sourcing nvm.sh with --no-use should not use anything +31 -0
- package/.config/nvm/test/sourcing/Sourcing nvm.sh with no default should return 0 +11 -0
- package/.config/nvm/test/sourcing/setup +14 -0
- package/.config/nvm/test/sourcing/teardown +7 -0
- package/.config/nvm/test/xenial/install from source +29 -0
- package/.config/nvm/test/xenial/install from source implicitly +23 -0
- package/.config/nvm/test/xenial/install from source with thread parameter +33 -0
- package/.config/nvm/test/xenial/install from source without V8 snapshot for ARM +25 -0
- package/.config/nvm/test/xenial/install hook +45 -0
- package/.config/nvm/test/xenial/install version specified in .nvmrc from source +20 -0
- package/.config/nvm/test/xenial/node 0.6.21 should install 0.6.21-pre +11 -0
- package/.config/nvm/update_test_mocks.sh +59 -0
- package/.gitattributes +2 -0
- package/.replit +84 -0
- package/.upm/store.json +1 -0
- package/Extra/Database/index.js +470 -0
- package/Extra/ExtraAddons.js +82 -0
- package/Extra/ExtraFindUID.js +62 -0
- package/Extra/ExtraGetThread.js +340 -0
- package/Extra/ExtraScreenShot.js +430 -0
- package/Extra/ExtraUptimeRobot.js +38 -0
- package/Extra/Html/Classic/script.js +833 -0
- package/Extra/Html/Classic/style.css +1222 -0
- package/Extra/Security/Index.js +173 -0
- package/Extra/Security/Step_1.js +6 -0
- package/Extra/Security/Step_2.js +22 -0
- package/Extra/Security/Step_3.js +22 -0
- package/Extra/Src/Change_Environment.js +24 -0
- package/Extra/Src/Check_Update.js +66 -0
- package/Extra/Src/History.js +115 -0
- package/Extra/Src/Instant_Update.js +64 -0
- package/Extra/Src/Last-Run.js +65 -0
- package/Extra/Src/Release_Memory.js +41 -0
- package/Extra/Src/image/checkmate.jpg +0 -0
- package/Extra/Src/uuid.js +137 -0
- package/Func/AcceptAgreement.js +31 -0
- package/Func/ClearCache.js +64 -0
- package/Func/ReportV1.js +54 -0
- package/Index.js +378 -0
- package/LICENSE +21 -0
- package/Language/index.json +224 -0
- package/Main.js +1110 -0
- package/README.md +144 -0
- package/broadcast.js +40 -0
- package/logger.js +66 -0
- package/package.json +231 -0
- package/replit.nix +8 -0
- package/src/Dev_Horizon_Data.js +125 -0
- package/src/Premium.js +25 -0
- package/src/Screenshot.js +83 -0
- package/src/addExternalModule.js +16 -0
- package/src/addUserToGroup.js +79 -0
- package/src/changeAdminStatus.js +79 -0
- package/src/changeArchivedStatus.js +41 -0
- package/src/changeAvt.js +85 -0
- package/src/changeBio.js +65 -0
- package/src/changeBlockedStatus.js +36 -0
- package/src/changeGroupImage.js +106 -0
- package/src/changeNickname.js +45 -0
- package/src/changeThreadColor.js +62 -0
- package/src/changeThreadEmoji.js +42 -0
- package/src/createNewGroup.js +70 -0
- package/src/createPoll.js +60 -0
- package/src/deleteMessage.js +45 -0
- package/src/deleteThread.js +43 -0
- package/src/forwardAttachment.js +48 -0
- package/src/getAccessToken.js +28 -0
- package/src/getCurrentUserID.js +7 -0
- package/src/getEmojiUrl.js +27 -0
- package/src/getFriendsList.js +73 -0
- package/src/getMessage.js +80 -0
- package/src/getThreadHistory.js +537 -0
- package/src/getThreadInfo.js +425 -0
- package/src/getThreadList.js +213 -0
- package/src/getThreadMain.js +220 -0
- package/src/getThreadPictures.js +59 -0
- package/src/getUID.js +59 -0
- package/src/getUserID.js +62 -0
- package/src/getUserInfo.js +113 -0
- package/src/getUserInfoMain.js +65 -0
- package/src/getUserInfoV2.js +32 -0
- package/src/getUserInfoV3.js +63 -0
- package/src/getUserInfoV4.js +55 -0
- package/src/getUserInfoV5.js +61 -0
- package/src/handleFriendRequest.js +46 -0
- package/src/handleMessageRequest.js +49 -0
- package/src/httpGet.js +49 -0
- package/src/httpPost.js +48 -0
- package/src/httpPostFormData.js +41 -0
- package/src/listenMqtt.js +786 -0
- package/src/logout.js +68 -0
- package/src/markAsDelivered.js +48 -0
- package/src/markAsRead.js +70 -0
- package/src/markAsReadAll.js +43 -0
- package/src/markAsSeen.js +51 -0
- package/src/muteThread.js +47 -0
- package/src/removeUserFromGroup.js +49 -0
- package/src/resolvePhotoUrl.js +37 -0
- package/src/searchForThread.js +43 -0
- package/src/sendMessage.js +379 -0
- package/src/sendTypingIndicator.js +80 -0
- package/src/setMessageReaction.js +109 -0
- package/src/setPostReaction.js +102 -0
- package/src/setTitle.js +74 -0
- package/src/threadColors.js +39 -0
- package/src/unfriend.js +43 -0
- package/src/unsendMessage.js +40 -0
- package/utils.js +1684 -0
@@ -0,0 +1,33 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
# Source nvm
|
6
|
+
\. ../../../nvm.sh
|
7
|
+
|
8
|
+
# Version to install/uninstall
|
9
|
+
NVM_TEST_VERSION=0.12.6
|
10
|
+
|
11
|
+
# Make sure it's not already here
|
12
|
+
[ -e ../../../$NVM_TEST_VERSION ] && rm -R ../../../$NVM_TEST_VERSION
|
13
|
+
|
14
|
+
# Install it
|
15
|
+
nvm install $NVM_TEST_VERSION
|
16
|
+
|
17
|
+
# Make sure it installed
|
18
|
+
nvm ls | grep "$NVM_TEST_VERSION" || die "Failed to install node"
|
19
|
+
|
20
|
+
# Switch to another version so we can uninstall
|
21
|
+
nvm use 0.12.7
|
22
|
+
|
23
|
+
# if zsh, set "nomatch" opt to reproduce failure from https://github.com/nvm-sh/nvm/issues/1228
|
24
|
+
if nvm_has "setopt"; then
|
25
|
+
setopt nomatch
|
26
|
+
fi
|
27
|
+
|
28
|
+
# Uninstall it
|
29
|
+
nvm uninstall $NVM_TEST_VERSION
|
30
|
+
|
31
|
+
# Make sure it uninstalled
|
32
|
+
nvm ls | grep "$NVM_TEST_VERSION"
|
33
|
+
[ "$?" != "0" ] || die "Failed to uninstall node"
|
@@ -0,0 +1,30 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
# Source nvm
|
6
|
+
\. ../../../nvm.sh
|
7
|
+
|
8
|
+
# Version to install/uninstall
|
9
|
+
NVM_TEST_VERSION=5.10.1
|
10
|
+
|
11
|
+
# Make sure it's not already here
|
12
|
+
[ -e ../../../$NVM_TEST_VERSION ] && rm -R ../../../$NVM_TEST_VERSION
|
13
|
+
|
14
|
+
# Install it
|
15
|
+
nvm install $NVM_TEST_VERSION
|
16
|
+
|
17
|
+
# Make sure it installed
|
18
|
+
nvm ls | grep "$NVM_TEST_VERSION" || die "Failed to install node"
|
19
|
+
|
20
|
+
# Install global module as root
|
21
|
+
npm_path=$(which npm)
|
22
|
+
sudo -n "$npm_path" install jspm@'<2' -g || die 'either sudo failed, or `npm install jspm -g` failed`'
|
23
|
+
|
24
|
+
# Switch to another version so we can uninstall
|
25
|
+
nvm use 0.12.7
|
26
|
+
|
27
|
+
# Attempt to uninstall it
|
28
|
+
RETURN_MESSAGE="$(nvm uninstall $NVM_TEST_VERSION 2>&1)"
|
29
|
+
CHECK_FOR="Cannot uninstall, incorrect permissions on installation folder"
|
30
|
+
test "${RETURN_MESSAGE#*$CHECK_FOR}" != "$RETURN_MESSAGE" || die "Failed to show error message"
|
@@ -0,0 +1,22 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
set -ex
|
4
|
+
|
5
|
+
die () { echo "$@" ; exit 1; }
|
6
|
+
|
7
|
+
\. ../../../nvm.sh
|
8
|
+
|
9
|
+
nvm deactivate >/dev/null 2>&1 || die 'deactivate failed'
|
10
|
+
|
11
|
+
nvm use --lts || die 'nvm use --lts failed'
|
12
|
+
OUTPUT="$(nvm current)"
|
13
|
+
EXPECTED_OUTPUT="$(nvm_resolve_alias 'lts/*')"
|
14
|
+
|
15
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \
|
16
|
+
|| die "'nvm use --lts' + 'nvm current' did not output '$EXPECTED_OUTPUT'; got '$OUTPUT'"
|
17
|
+
|
18
|
+
OUTPUT="$(nvm use --silent --lts)"
|
19
|
+
EXPECTED_OUTPUT=""
|
20
|
+
|
21
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \
|
22
|
+
|| die "'nvm use --silent --lts' output was not silenced '$EXPECTED_OUTPUT'; got '$OUTPUT'"
|
package/.config/nvm/test/slow/nvm use/Running 'nvm use --lts=foo' uses latest 'foo' LTS version
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
set -ex
|
4
|
+
|
5
|
+
die () { echo "$@" ; exit 1; }
|
6
|
+
|
7
|
+
\. ../../../nvm.sh
|
8
|
+
|
9
|
+
nvm deactivate 2>&1 >/dev/null || die 'deactivate failed'
|
10
|
+
|
11
|
+
nvm use --lts=testing || die 'nvm use --lts=testing failed'
|
12
|
+
OUTPUT="$(nvm current)"
|
13
|
+
EXPECTED_OUTPUT="$(nvm_resolve_alias 'lts/testing')"
|
14
|
+
|
15
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \
|
16
|
+
|| die "'nvm use --lts=testing' + 'nvm current' did not output '$EXPECTED_OUTPUT'; got '$OUTPUT'"
|
17
|
+
|
18
|
+
OUTPUT="$(nvm use --silent --lts=testing)"
|
19
|
+
EXPECTED_OUTPUT=""
|
20
|
+
|
21
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \
|
22
|
+
|| die "'nvm use --silent --lts=testing' output was not silenced '$EXPECTED_OUTPUT'; got '$OUTPUT'"
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
\. ../../../nvm.sh
|
6
|
+
|
7
|
+
nvm deactivate 2>&1 >/dev/null || die 'deactivate failed'
|
8
|
+
|
9
|
+
nvm use iojs || die 'nvm use iojs failed'
|
10
|
+
OUTPUT="$(nvm current)"
|
11
|
+
EXPECTED_OUTPUT="iojs-v1.0.1"
|
12
|
+
|
13
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \
|
14
|
+
|| die "'nvm use iojs' + 'nvm current' did not output '$EXPECTED_OUTPUT'; got '$OUTPUT'"
|
15
|
+
|
16
|
+
OUTPUT="$(nvm use --silent iojs)"
|
17
|
+
EXPECTED_OUTPUT=""
|
18
|
+
|
19
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \
|
20
|
+
|| die "'nvm use --silent iojs' output was not silenced '$EXPECTED_OUTPUT'; got '$OUTPUT'"
|
@@ -0,0 +1,13 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
\. ../../../nvm.sh
|
6
|
+
|
7
|
+
nvm deactivate 2>&1 >/dev/null || die 'deactivate failed'
|
8
|
+
|
9
|
+
OUTPUT=$(nvm use node --silent || die 'nvm use node failed')
|
10
|
+
EXPECTED_OUTPUT=""
|
11
|
+
|
12
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \
|
13
|
+
|| die "'nvm use node --silent' output was not silenced to '$EXPECTED_OUTPUT'; got '$OUTPUT'"
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
\. ../../../nvm.sh
|
6
|
+
|
7
|
+
nvm deactivate 2>&1 >/dev/null || die 'deactivate failed'
|
8
|
+
|
9
|
+
nvm use node || die 'nvm use node failed'
|
10
|
+
OUTPUT="$(nvm current)"
|
11
|
+
EXPECTED_OUTPUT="$(nvm_version stable)"
|
12
|
+
|
13
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \
|
14
|
+
|| die "'nvm use node' + 'nvm current' did not output '$EXPECTED_OUTPUT'; got '$OUTPUT'"
|
15
|
+
|
16
|
+
OUTPUT="$(nvm use --silent node)"
|
17
|
+
EXPECTED_OUTPUT=""
|
18
|
+
|
19
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \
|
20
|
+
|| die "'nvm use --silent node' output was not silenced '$EXPECTED_OUTPUT'; got '$OUTPUT'"
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
\. ../../../nvm.sh
|
6
|
+
|
7
|
+
nvm deactivate 2>&1 >/dev/null || die 'deactivate failed'
|
8
|
+
|
9
|
+
nvm use 'v1.0.0' || die 'nvm use v1.0.0 failed'
|
10
|
+
OUTPUT="$(nvm current)"
|
11
|
+
EXPECTED_OUTPUT="$(nvm_version v1.0.0)"
|
12
|
+
|
13
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \
|
14
|
+
|| die "'nvm use v1.0.0' + 'nvm current' did not output '$EXPECTED_OUTPUT'; got '$OUTPUT'"
|
15
|
+
|
16
|
+
OUTPUT="$(nvm use --silent 'v1.0.0')"
|
17
|
+
EXPECTED_OUTPUT=""
|
18
|
+
|
19
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \
|
20
|
+
|| die "'nvm use --silent v1.0.0' output was not silenced '$EXPECTED_OUTPUT'; got '$OUTPUT'"
|
@@ -0,0 +1,22 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
\. ../../../nvm.sh
|
6
|
+
|
7
|
+
nvm deactivate >/dev/null 2>&1 || die 'deactivate failed'
|
8
|
+
|
9
|
+
nvm_die_on_prefix() {
|
10
|
+
echo >&2 "| $1 | $2 |"
|
11
|
+
return 3
|
12
|
+
}
|
13
|
+
|
14
|
+
OUTPUT="$(nvm use --silent node)"
|
15
|
+
EXPECTED_OUTPUT=""
|
16
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \
|
17
|
+
|| die "'nvm use --silent node' did not call through to 'nvm_die_on_prefix' and give output '$EXPECTED_OUTPUT'; got '$OUTPUT'"
|
18
|
+
|
19
|
+
EXIT_CODE="$(nvm use --silent node >/dev/null 2>&1; echo $?)"
|
20
|
+
EXPECTED_CODE="11"
|
21
|
+
[ "_$EXIT_CODE" = "_$EXPECTED_CODE" ] \
|
22
|
+
|| die "'nvm use --silent node' when 'nvm_die_on_prefix' fails did not return '$EXPECTED_CODE'; got '$EXIT_CODE'"
|
package/.config/nvm/test/slow/nvm use/Running 'nvm use' with nvmrc containing not intalled version
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
\. ../../../nvm.sh
|
6
|
+
|
7
|
+
nvm deactivate 2>&1 >/dev/null || die 'deactivate failed'
|
8
|
+
|
9
|
+
echo "foo" > .nvmrc
|
10
|
+
|
11
|
+
# running nvm use with .nvmrc should not print the version information
|
12
|
+
OUTPUT="$(nvm use 2>&1)"
|
13
|
+
EXIT_CODE=$?
|
14
|
+
EXPECTED_OUTPUT="Found '$PWD/.nvmrc' with version <foo>
|
15
|
+
N/A: version \"foo\" is not yet installed.
|
16
|
+
|
17
|
+
You need to run \`nvm install\` to install and use the node version specified in \`.nvmrc\`."
|
18
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die "expected 'nvm use' with nvmrc to give $EXPECTED_OUTPUT, got $OUTPUT"
|
19
|
+
[ "_$EXIT_CODE" = "_3" ] || die "expected 'nvm use' with nvmrc to exit with 3, got $EXIT_CODE"
|
20
|
+
|
21
|
+
# --silent should not print anything
|
22
|
+
OUTPUT=$(nvm use --silent)
|
23
|
+
EXPECTED_OUTPUT=""
|
24
|
+
|
25
|
+
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \
|
26
|
+
|| die "'nvm use --silent' output was not silenced to '$EXPECTED_OUTPUT'; got '$OUTPUT'"
|
27
|
+
|
28
|
+
rm .nvmrc
|
@@ -0,0 +1,23 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
\. ../../../nvm.sh
|
4
|
+
|
5
|
+
mkdir -p "${NVM_DIR}/.nvm_use_bak"
|
6
|
+
if [ -d "${NVM_DIR}/v*" ]; then
|
7
|
+
mv "${NVM_DIR}/v*" "${NVM_DIR}/.nvm_use_bak/"
|
8
|
+
fi
|
9
|
+
mkdir -p "${NVM_DIR}/.nvm_use_lts_alias_bak"
|
10
|
+
if [ -d "${NVM_DIR}/alias/lts" ]; then
|
11
|
+
mv "${NVM_DIR}/alias/lts/*" "${NVM_DIR}/.nvm_use_lts_alias_bak/"
|
12
|
+
fi
|
13
|
+
|
14
|
+
for VERSION in "0.8.7" "0.9.1" "0.10.1" "0.11.1"; do
|
15
|
+
nvm install "v$VERSION"
|
16
|
+
done
|
17
|
+
|
18
|
+
for VERSION in "1.0.0" "1.0.1"; do
|
19
|
+
nvm install "iojs-v$VERSION"
|
20
|
+
done
|
21
|
+
|
22
|
+
nvm_make_alias lts/testing 0.10.1
|
23
|
+
nvm_make_alias 'lts/*' lts/testing
|
@@ -0,0 +1,22 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
\. ../../../nvm.sh
|
4
|
+
|
5
|
+
for VERSION in "0.8.7" "0.9.1" "0.10.1" "0.11.1"; do
|
6
|
+
nvm uninstall "$VERSION"
|
7
|
+
done
|
8
|
+
|
9
|
+
for VERSION in "1.0.0" "1.0.1"; do
|
10
|
+
nvm uninstall "iojs-v$VERSION"
|
11
|
+
done
|
12
|
+
|
13
|
+
if [ -d "${NVM_DIR}/.nvm_use_bak/*" ]; then
|
14
|
+
mv "${NVM_DIR}/.nvm_use_bak/*" "${NVM_DIR}"
|
15
|
+
rmdir "${NVM_DIR}/.nvm_use_bak"
|
16
|
+
fi
|
17
|
+
|
18
|
+
if [ -d "${NVM_DIR}/.nvm_use_lts_alias_bak" ]; then
|
19
|
+
rm -rf "${NVM_DIR}/alias/lts/*"
|
20
|
+
mv "${NVM_DIR}/.nvm_use_lts_alias_bak/*" "${NVM_DIR}/alias/lts/"
|
21
|
+
rmdir "${NVM_DIR}/.nvm_use_lts_alias_bak"
|
22
|
+
fi
|
@@ -0,0 +1,101 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; cleanup ; exit 1; }
|
4
|
+
|
5
|
+
cleanup() {
|
6
|
+
unset -f curl wget nvm_has
|
7
|
+
}
|
8
|
+
|
9
|
+
\. ../../../nvm.sh
|
10
|
+
|
11
|
+
EXPECTED_VERSION="v12.3.456"
|
12
|
+
URL="https://github.com/nvm-sh/nvm/releases/tag/$EXPECTED_VERSION"
|
13
|
+
EXPECTED_CURL_ARGS="--compressed -q -w %{url_effective}\n -L -s -S https://latest.nvm.sh -o /dev/null"
|
14
|
+
EXPECTED_WGET_ARGS="-q https://latest.nvm.sh --server-response -O /dev/null"
|
15
|
+
|
16
|
+
curl() {
|
17
|
+
if [ $# -eq 1 ] && [ "$1" = "-V" ]; then
|
18
|
+
echo "
|
19
|
+
curl 7.47.0 (x86_64-pc-linux-gnu) libcurl/7.47.0 GnuTLS/3.4.10 zlib/1.2.8 libidn/1.32 librtmp/2.3
|
20
|
+
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtmp rtsp smb smbs smtp smtps telnet tftp
|
21
|
+
Features: AsynchDNS IDN IPv6 Largefile GSS-API Kerberos SPNEGO NTLM NTLM_WB SSL libz TLS-SRP UnixSockets"
|
22
|
+
elif [ "_$*" != "_$EXPECTED_CURL_ARGS" ]; then
|
23
|
+
echo >&2 "expected args ($EXPECTED_CURL_ARGS), got ($*)"
|
24
|
+
return 1
|
25
|
+
else
|
26
|
+
echo $URL
|
27
|
+
fi
|
28
|
+
}
|
29
|
+
wget() {
|
30
|
+
if [ "_$*" != "_$EXPECTED_WGET_ARGS" ]; then
|
31
|
+
echo >&2 "expected args ($EXPECTED_WGET_ARGS), got ($*)"
|
32
|
+
return 1
|
33
|
+
else
|
34
|
+
local WGET_CONTENTS
|
35
|
+
WGET_CONTENTS="
|
36
|
+
HTTP/1.1 301 Moved Permanently
|
37
|
+
Location: https://github.com/nvm-sh/nvm/releases/latest
|
38
|
+
Content-Type: text/html; charset=utf-8
|
39
|
+
Content-Length: 84
|
40
|
+
Date: Mon, 22 Dec 2014 02:11:15 GMT
|
41
|
+
HTTP/1.1 302 Found
|
42
|
+
Server: GitHub.com
|
43
|
+
Date: Mon, 22 Dec 2014 02:11:15 GMT
|
44
|
+
Content-Type: text/html; charset=utf-8
|
45
|
+
Transfer-Encoding: chunked
|
46
|
+
Status: 302 Found
|
47
|
+
X-XSS-Protection: 1; mode=block
|
48
|
+
X-Frame-Options: deny
|
49
|
+
Content-Security-Policy: default-src *; script-src assets-cdn.github.com collector-cdn.github.com; object-src assets-cdn.github.com; style-src 'self' 'unsafe-inline' 'unsafe-eval' assets-cdn.github.com; img-src 'self' data: assets-cdn.github.com identicons.github.com www.google-analytics.com collector.githubapp.com *.githubusercontent.com *.gravatar.com *.wp.com; media-src 'none'; frame-src 'self' render.githubusercontent.com gist.github.com www.youtube.com player.vimeo.com checkout.paypal.com; font-src assets-cdn.github.com; connect-src 'self' ghconduit.com:25035 live.github.com uploads.github.com www.google-analytics.com s3.amazonaws.com
|
50
|
+
Cache-Control: no-cache
|
51
|
+
Vary: X-PJAX
|
52
|
+
Location: $URL
|
53
|
+
X-UA-Compatible: IE=Edge,chrome=1
|
54
|
+
Set-Cookie: logged_in=no; domain=.github.com; path=/; expires=Fri, 22-Dec-2034 02:11:15 GMT; secure; HttpOnly
|
55
|
+
Set-Cookie: _gh_sess=eyJzZXNzaW9uX2lkIjoiNTMzNGNjZWUxM2VhZjNhN2M3MzIwZWUxNGYwNzhmNDkiLCJzcHlfcmVwbyI6ImNyZWF0aW9uaXgvbnZtIiwic3B5X3JlcG9fYXQiOjE0MTkyMTQyNzV9--e2fa4cf5305d61aa58c0e0bf21fdb335a9660dcf; path=/; secure; HttpOnly
|
56
|
+
X-Request-Id: 4b99bf200157dd845f76ab83e4093acc
|
57
|
+
X-Runtime: 0.030872
|
58
|
+
X-Rack-Cache: miss
|
59
|
+
X-GitHub-Request-Id: 45B56780:3913:880EF6:54977DC3
|
60
|
+
Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
|
61
|
+
X-Content-Type-Options: nosniff
|
62
|
+
Vary: Accept-Encoding
|
63
|
+
X-Served-By: ef97014f01ea59c1ef337fe51a4d0331
|
64
|
+
HTTP/1.1 200 OK
|
65
|
+
Server: GitHub.com
|
66
|
+
Date: Mon, 22 Dec 2014 02:11:15 GMT
|
67
|
+
Content-Type: text/html; charset=utf-8
|
68
|
+
Transfer-Encoding: chunked
|
69
|
+
Status: 200 OK
|
70
|
+
X-XSS-Protection: 1; mode=block
|
71
|
+
X-Frame-Options: deny
|
72
|
+
Content-Security-Policy: default-src *; script-src assets-cdn.github.com collector-cdn.github.com; object-src assets-cdn.github.com; style-src 'self' 'unsafe-inline' 'unsafe-eval' assets-cdn.github.com; img-src 'self' data: assets-cdn.github.com identicons.github.com www.google-analytics.com collector.githubapp.com *.githubusercontent.com *.gravatar.com *.wp.com; media-src 'none'; frame-src 'self' render.githubusercontent.com gist.github.com www.youtube.com player.vimeo.com checkout.paypal.com; font-src assets-cdn.github.com; connect-src 'self' ghconduit.com:25035 live.github.com uploads.github.com www.google-analytics.com s3.amazonaws.com
|
73
|
+
Cache-Control: no-cache, private
|
74
|
+
Vary: X-PJAX
|
75
|
+
X-UA-Compatible: IE=Edge,chrome=1
|
76
|
+
Set-Cookie: _gh_sess=eyJzZXNzaW9uX2lkIjoiNTMzNGNjZWUxM2VhZjNhN2M3MzIwZWUxNGYwNzhmNDkiLCJzcHlfcmVwbyI6ImNyZWF0aW9uaXgvbnZtIiwic3B5X3JlcG9fYXQiOjE0MTkyMTQyNzUsIl9jc3JmX3Rva2VuIjoiemZTVDNIRGo0QzF0dzkyNXp6NFBRdGJVbTl4NSsxTGo1cngwVFQ3NDVwdz0ifQ%3D%3D--b72bfd5241907dcf557b226e74351ff39f0e9ede; path=/; secure; HttpOnly
|
77
|
+
X-Request-Id: 305b0d158bf8c0b3fa488a33d7687091
|
78
|
+
X-Runtime: 0.038544
|
79
|
+
X-Rack-Cache: miss
|
80
|
+
X-GitHub-Request-Id: 45B56780:3913:880F19:54977DC3
|
81
|
+
Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
|
82
|
+
X-Content-Type-Options: nosniff
|
83
|
+
Vary: Accept-Encoding
|
84
|
+
X-Served-By: 926b734ea1992f8ee1f88ab967a93dac
|
85
|
+
"
|
86
|
+
"$WGET_CONTENTS" | while read line
|
87
|
+
do
|
88
|
+
>&2 echo "$line"
|
89
|
+
done
|
90
|
+
fi
|
91
|
+
}
|
92
|
+
|
93
|
+
OUTPUT="$(nvm_get_latest)"
|
94
|
+
EXIT_CODE="$(nvm_get_latest >/dev/null 2>&1 ; echo $?)"
|
95
|
+
[ "_$OUTPUT" = "_$EXPECTED_VERSION" ] \
|
96
|
+
|| die "success path did not return version '$EXPECTED_VERSION', got '$OUTPUT'"
|
97
|
+
[ "_$EXIT_CODE" = "_0" ] \
|
98
|
+
|| die "success path did not exit with code 0, got $EXIT_CODE"
|
99
|
+
|
100
|
+
|
101
|
+
cleanup
|
@@ -0,0 +1,25 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; cleanup ; exit 1; }
|
4
|
+
|
5
|
+
cleanup() {
|
6
|
+
unset -f curl wget
|
7
|
+
}
|
8
|
+
|
9
|
+
\. ../../../nvm.sh
|
10
|
+
|
11
|
+
curl() {
|
12
|
+
return 1
|
13
|
+
}
|
14
|
+
wget() {
|
15
|
+
return 1
|
16
|
+
}
|
17
|
+
|
18
|
+
OUTPUT="$(nvm_get_latest 2>&1)"
|
19
|
+
EXIT_CODE="$(nvm_get_latest >/dev/null 2>&1 ; echo $?)"
|
20
|
+
[ "_$OUTPUT" = "_https://latest.nvm.sh did not redirect to the latest release on GitHub" ] \
|
21
|
+
|| die "failed redirect did not report correct error message, got '$OUTPUT'"
|
22
|
+
[ "_$EXIT_CODE" = "_2" ] \
|
23
|
+
|| die "failed redirect did not exit with code 2, got $EXIT_CODE"
|
24
|
+
|
25
|
+
cleanup
|
@@ -0,0 +1,30 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
if [ -n "${ZSH_VERSION-}" ]; then
|
6
|
+
# these are set by omz: https://github.com/ohmyzsh/ohmyzsh/tree/1ac40cd4456230f09bf0258b173304929d118992/plugins/common-aliases
|
7
|
+
alias -g R='| less -S'
|
8
|
+
alias -g G='| less -S'
|
9
|
+
# these are set by yadr: https://github.com/skwp/dotfiles/blob/5c487de9b81cd4265ecc9df74477e410ffbda6a1/zsh/zsh-aliases.zsh
|
10
|
+
alias -g C='| wc -l'
|
11
|
+
alias -g H='| head'
|
12
|
+
alias -g L="| less"
|
13
|
+
alias -g N="| /dev/null"
|
14
|
+
alias -g S='| sort'
|
15
|
+
alias -g G='| grep'
|
16
|
+
fi
|
17
|
+
|
18
|
+
OUTPUT=$(\. ../../nvm.sh || echo 'sourcing returned nonzero exit code')
|
19
|
+
UNEXPECTED_OUTPUT="sourcing returned nonzero exit code"
|
20
|
+
[ "_$OUTPUT" != "_$UNEXPECTED_OUTPUT" ] || die "Sourcing nvm.sh should not fail"
|
21
|
+
|
22
|
+
if [ -n "${ZSH_VERSION-}" ]; then
|
23
|
+
unalias \R
|
24
|
+
unalias \G
|
25
|
+
unalias \C
|
26
|
+
unalias \H
|
27
|
+
unalias \L
|
28
|
+
unalias \N
|
29
|
+
unalias \S
|
30
|
+
fi
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
echo '0.10.1' > ../../alias/default || die "couldn't create default alias"
|
6
|
+
|
7
|
+
\. ../../nvm.sh || die 'sourcing returned nonzero exit code'
|
8
|
+
|
9
|
+
NVM_TARGET=0.10.3
|
10
|
+
NVM_DEFAULT="$(nvm_resolve_local_alias default)"
|
11
|
+
|
12
|
+
[ "_$NVM_DEFAULT" != "_$NVM_TARGET" ] || die "default $NVM_DEFAULT is the same as target $NVM_TARGET"
|
13
|
+
|
14
|
+
nvm use $NVM_TARGET || die "nvm use $NVM_TARGET failed"
|
15
|
+
|
16
|
+
\. ../../nvm.sh || die 'sourcing returned nonzero exit code'
|
17
|
+
|
18
|
+
NVM_CURRENT="$(nvm current)"
|
19
|
+
|
20
|
+
[ "_${NVM_CURRENT#v}" = "_$NVM_TARGET" ] || die "node version not retained after sourcing"
|
@@ -0,0 +1,28 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
\. ../common.sh
|
6
|
+
|
7
|
+
# We need to unload nvm again first, as by the time this test is run,
|
8
|
+
# despite being unloaded in setup, the inherited PATH still contains
|
9
|
+
# an nvm-installed node version. We have to reset NVM_DIR after the unload.
|
10
|
+
\. ../../nvm.sh || die 'sourcing returned nonzero exit code'
|
11
|
+
NVM_DIR_CACHED="$NVM_DIR"
|
12
|
+
nvm unload || die 'unloading returned nonzero exit code'
|
13
|
+
NVM_DIR="$NVM_DIR_CACHED"
|
14
|
+
|
15
|
+
echo '0.10.1' > ../../alias/default || die 'creation of default alias failed'
|
16
|
+
|
17
|
+
# Now to begin the real test
|
18
|
+
\. ../../nvm.sh || die 'sourcing returned nonzero exit code'
|
19
|
+
|
20
|
+
NVM_LS_CURRENT_NOT_GREPPED="$(nvm ls current | strip_colors)"
|
21
|
+
NVM_LS_CURRENT="$(nvm ls current | strip_colors | \grep -o v0.10.1)"
|
22
|
+
[ "_$NVM_LS_CURRENT" = '_v0.10.1' ] || die "'nvm ls current' did not return '-> v0.10.1', got '$NVM_LS_CURRENT_NOT_GREPPED'"
|
23
|
+
|
24
|
+
# NVM_LS_CURRENT_COLORED="$(nvm ls current | sed -n l)"
|
25
|
+
|
26
|
+
NVM_ALIAS_DEFAULT="$(nvm alias default | strip_colors)"
|
27
|
+
[ "_$NVM_ALIAS_DEFAULT" = "_default -> 0.10.1 (-> v0.10.1)" ] \
|
28
|
+
|| die "'nvm alias default did not return 'default -> 0.10.1 (-> v0.10.1)', got '$NVM_ALIAS_DEFAULT'"
|
@@ -0,0 +1,27 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
supports_source_options () {
|
5
|
+
[ "_$(echo 'echo $1' | . /dev/stdin yes)" = "_yes" ]
|
6
|
+
}
|
7
|
+
|
8
|
+
if ! supports_source_options; then
|
9
|
+
echo 'this shell does not support passing options on sourcing'
|
10
|
+
exit 0;
|
11
|
+
fi
|
12
|
+
|
13
|
+
echo '0.10.2' > ../../.nvmrc || die 'creation of .nvmrc failed'
|
14
|
+
|
15
|
+
\. ../../nvm.sh --install
|
16
|
+
EXIT_CODE="$(echo $?)"
|
17
|
+
|
18
|
+
echo 'sourcing complete.'
|
19
|
+
|
20
|
+
nvm_version 0.10.2 >/dev/null 2>&1 || die "v0.10.2 not installed: $(nvm ls)"
|
21
|
+
|
22
|
+
[ "_$(nvm_rc_version | \grep -o -e 'with version .*$')" = "_with version <0.10.2>" ] || die "nvm_rc_version $(nvm_rc_version)"
|
23
|
+
|
24
|
+
[ "_$EXIT_CODE" = "_0" ] || die "sourcing returned nonzero exit code: $EXIT_CODE"
|
25
|
+
|
26
|
+
NVM_LS_CURRENT="$(nvm ls current | \grep -o v0.10.2)"
|
27
|
+
[ "_$NVM_LS_CURRENT" = '_v0.10.2' ] || die "'nvm ls current' did not return '-> v0.10.2', got '$NVM_LS_CURRENT' `nvm ls`"
|
@@ -0,0 +1,32 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
\. ../common.sh
|
3
|
+
|
4
|
+
die () { echo "$@" ; exit 1; }
|
5
|
+
supports_source_options () {
|
6
|
+
[ "_$(echo 'echo $1' | . /dev/stdin yes)" = "_yes" ]
|
7
|
+
}
|
8
|
+
|
9
|
+
if ! supports_source_options; then
|
10
|
+
echo 'this shell does not support passing options on sourcing'
|
11
|
+
exit 0;
|
12
|
+
fi
|
13
|
+
|
14
|
+
echo '0.10.2' > ../../alias/default || die 'creation of default alias failed'
|
15
|
+
|
16
|
+
echo 'sourcing nvm with --install...'
|
17
|
+
|
18
|
+
\. ../../nvm.sh --install
|
19
|
+
EXIT_CODE="$(echo $?)"
|
20
|
+
|
21
|
+
echo 'sourcing complete.'
|
22
|
+
|
23
|
+
nvm_version 0.10.2 >/dev/null 2>&1 || die "v0.10.2 not installed: $(nvm ls)"
|
24
|
+
|
25
|
+
[ "_$EXIT_CODE" = "_0" ] || die "sourcing returned nonzero exit code: $EXIT_CODE"
|
26
|
+
|
27
|
+
NVM_LS_CURRENT="$(nvm ls current | strip_colors | command grep -o v0.10.2)"
|
28
|
+
[ "_$NVM_LS_CURRENT" = '_v0.10.2' ] || die "'nvm ls current' did not return '-> v0.10.2', got '$NVM_LS_CURRENT'"
|
29
|
+
|
30
|
+
NVM_ALIAS_DEFAULT="$(nvm alias default | strip_colors)"
|
31
|
+
[ "_$NVM_ALIAS_DEFAULT" = "_default -> 0.10.2 (-> v0.10.2)" ] \
|
32
|
+
|| die "'nvm alias default did not return 'default -> 0.10.2 (-> v0.10.2)', got '$NVM_ALIAS_DEFAULT'"
|
@@ -0,0 +1,31 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
supports_source_options () {
|
5
|
+
[ "_$(echo 'echo $1' | . /dev/stdin yes)" = "_yes" ]
|
6
|
+
}
|
7
|
+
|
8
|
+
if ! supports_source_options; then
|
9
|
+
echo 'this shell does not support passing options on sourcing'
|
10
|
+
exit 0;
|
11
|
+
fi
|
12
|
+
|
13
|
+
\. ../../nvm.sh
|
14
|
+
nvm install 4.1.0 || die 'install of v4.1.0 failed'
|
15
|
+
nvm_version 4.1.0 >/dev/null 2>&1 || die "v4.1.0 not installed: $(nvm ls)"
|
16
|
+
nvm deactivate || die 'nvm deactivate failed'
|
17
|
+
|
18
|
+
NVM_CURRENT="$(nvm current)"
|
19
|
+
[ "_$NVM_CURRENT" = '_none' ] || [ "_$NVM_CURRENT" = '_system' ] || die "'nvm current' did not return 'none' or 'system', got '$NVM_CURRENT' `nvm ls`"
|
20
|
+
|
21
|
+
nvm unload || die 'nvm unload failed'
|
22
|
+
|
23
|
+
\. ../../nvm.sh --no-use
|
24
|
+
EXIT_CODE="$(echo $?)"
|
25
|
+
|
26
|
+
echo 'sourcing complete.'
|
27
|
+
|
28
|
+
[ "_$EXIT_CODE" = "_0" ] || die "sourcing returned nonzero exit code: $EXIT_CODE"
|
29
|
+
|
30
|
+
NVM_CURRENT="$(nvm current)"
|
31
|
+
[ "_$NVM_CURRENT" = '_none' ] || [ "_$NVM_CURRENT" = '_system' ] || die "'nvm current' did not return 'none' or 'system', got '$NVM_CURRENT' `nvm ls`"
|
@@ -0,0 +1,11 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
die () { echo "$@" ; exit 1; }
|
4
|
+
|
5
|
+
touch ../../alias/default
|
6
|
+
rm ../../alias/default || die 'removal of default alias failed'
|
7
|
+
nvm_alias default && die '"nvm_alias default" did not fail'
|
8
|
+
|
9
|
+
set -e # necessary to fail internally with a nonzero code
|
10
|
+
|
11
|
+
\. ../../nvm.sh || die 'sourcing returned nonzero exit code'
|
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
mkdir -p ../../alias
|
4
|
+
rm -rf ../../alias/default
|
5
|
+
rm -f ../../.nvmrc
|
6
|
+
rm -rf ../../v0.10.7
|
7
|
+
rm -rf ../../v0.9.7
|
8
|
+
rm -rf ../../v0.9.12
|
9
|
+
|
10
|
+
\. ../../nvm.sh
|
11
|
+
nvm install 0.10.1 || echo >&2 'nvm install 0.10.1 failed'
|
12
|
+
nvm install 0.10.3 || echo >&2 'nvm install 0.10.3 failed'
|
13
|
+
nvm unalias default || 'removing default alias failed'
|
14
|
+
nvm unload || echo >&2 'nvm unload failed'
|