| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 9a1e01c commit 4f68c7c
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2317,14 +2317,17 @@ added: | |||
| 2317 | 2317 | - v18.11.0 | |
| 2318 | 2318 | - v16.19.0 | |
| 2319 | 2319 | changes: | |
| 2320 | + - version: REPLACEME | ||
| 2321 | + pr-url: https://github.com/nodejs/node/pull/52074 | ||
| 2322 | + description: Watch mode is now stable. | ||
| 2320 | 2323 | - version: | |
| 2321 | 2324 | - v19.2.0 | |
| 2322 | 2325 | - v18.13.0 | |
| 2323 | 2326 | pr-url: https://github.com/nodejs/node/pull/45214 | |
| 2324 | 2327 | description: Test runner now supports running in watch mode. | |
| 2325 | 2328 | --> | |
| 2326 | 2329 | ||
| 2327 | - > Stability: 1 - Experimental | ||
| 2330 | + > Stability: 2 - Stable | ||
| 2328 | 2331 | ||
| 2329 | 2332 | Starts Node.js in watch mode. | |
| 2330 | 2333 | When in watch mode, changes in the watched files cause the Node.js process to | |
@@ -2346,9 +2349,13 @@ node --watch index.js | |||
| 2346 | 2349 | added: | |
| 2347 | 2350 | - v18.11.0 | |
| 2348 | 2351 | - v16.19.0 | |
| 2352 | + changes: | ||
| 2353 | + - version: REPLACEME | ||
| 2354 | + pr-url: https://github.com/nodejs/node/pull/52074 | ||
| 2355 | + description: Watch mode is now stable. | ||
| 2349 | 2356 | --> | |
| 2350 | 2357 | ||
| 2351 | - > Stability: 1 - Experimental | ||
| 2358 | + > Stability: 2 - Stable | ||
| 2352 | 2359 | ||
| 2353 | 2360 | Starts Node.js in watch mode and specifies what paths to watch. | |
| 2354 | 2361 | When in watch mode, changes in the watched paths cause the Node.js process to | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -18,7 +18,6 @@ const { | |||
| 18 | 18 | exitCodes: { kNoFailure }, | |
| 19 | 19 | } = internalBinding('errors'); | |
| 20 | 20 | const { getOptionValue } = require('internal/options'); | |
| 21 | - const { emitExperimentalWarning } = require('internal/util'); | ||
| 22 | 21 | const { FilesWatcher } = require('internal/watch_mode/files_watcher'); | |
| 23 | 22 | const { green, blue, red, white, clear } = require('internal/util/colors'); | |
| 24 | 23 | ||
@@ -117,7 +116,6 @@ async function restart() { | |||
| 117 | 116 | } | |
| 118 | 117 | } | |
| 119 | 118 | ||
| 120 | - emitExperimentalWarning('Watch mode'); | ||
| 121 | 119 | start(); | |
| 122 | 120 | watcher | |
| 123 | 121 | .on('changed', restart) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments