diff options
| author | Shohei YOSHIDA <syohex@gmail.com> | 2023-09-05 12:50:51 +0900 |
|---|---|---|
| committer | Shohei YOSHIDA <syohex@gmail.com> | 2023-09-05 12:50:51 +0900 |
| commit | 1ec2fd373fd369e6151b35fb51b4d19a2a37ea7e (patch) | |
| tree | 2a77b501baa27e22e0683046fb341df5d11747be /src/_node | |
| parent | Merge pull request #1040 from zsh-users/fix-invalid-initialization (diff) | |
| download | zsh-completions-1ec2fd373fd369e6151b35fb51b4d19a2a37ea7e.tar zsh-completions-1ec2fd373fd369e6151b35fb51b4d19a2a37ea7e.tar.gz zsh-completions-1ec2fd373fd369e6151b35fb51b4d19a2a37ea7e.tar.bz2 zsh-completions-1ec2fd373fd369e6151b35fb51b4d19a2a37ea7e.tar.lz zsh-completions-1ec2fd373fd369e6151b35fb51b4d19a2a37ea7e.tar.xz zsh-completions-1ec2fd373fd369e6151b35fb51b4d19a2a37ea7e.tar.zst zsh-completions-1ec2fd373fd369e6151b35fb51b4d19a2a37ea7e.zip | |
Update node completion to v20.6.0
Diffstat (limited to 'src/_node')
| -rw-r--r-- | src/_node | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -28,7 +28,7 @@ # Description # ----------- # -# Completion script for Node.js v20.0.0 (https://nodejs.org) +# Completion script for Node.js v20.6.0 (https://nodejs.org) # # ------------------------------------------------------------------------------ # Authors @@ -85,6 +85,7 @@ _arguments -C \ '--enable-fips[enable FIPS crypto at startup]' \ '--enable-network-family-autoselection[enable network address family autosetection algorithm]' \ '--enable-source-maps[source map support]' \ + '--env-file=[set environment variables from supplied file]:envfile:_files' \ '--es-module-specifier-resolution=[extension resolution algorithm for es modules]:resolution algorithm:(explicit none)' \ '--experimental-import-meta-resolve[experimental ES Module import.meta.resolve() support]' \ '(--loader --experimental-loader)'{--loader,--experimental-loader}'=[Specify the module of a custom ECMAScript Module loader]: :_files' \ @@ -102,6 +103,7 @@ _arguments -C \ '--heap-prof-dir=[Directory where the V8 profiles generated by --heap-prof]: :_files -/' \ '--heap-prof-interval=[sampling interval in bytes for the V8 heap profile]: :number' \ '--heap-prof-name=[file name of the V8 heap profile generated]: :_files' \ + '--heapsnapshot-near-heap-limit=[Generate heapsnapshots whenever V8 is approaching the heap limit]:limit' \ '--heapsnapshot-signal=[Generate heap snapshot on specified signal]:signals:_signals -s' \ '--huge-max-old-generation-size[increase default maximum heap size with 16GB or more]' \ '--icu-data-dir=[set ICU data load path to dir (overrides NODE_ICU_DATA) note: linked-in ICU data is present]: :_directories' \ @@ -151,6 +153,7 @@ _arguments -C \ '--test-only[run tests with "only" option set]' \ '*--test-reporter=[report test output using the given reporter]:reporter:(tap spec dot)' \ '*--test-reporter-destination=[report given reporter to the given destination]:destination:_files' \ + '--test-shard=[run test at specific shard]:shard' \ '--throw-deprecation[throw an exception on deprecations]' \ '--title=[the process title to use on startup]:process title' \ '--tls-cipher-list=[use an alternative default TLS cipher list]:cipher list string' \ |
