diff options
author | Alex Pott <alex.a.pott@googlemail.com> | 2022-05-11 19:11:16 +0100 |
---|---|---|
committer | Alex Pott <alex.a.pott@googlemail.com> | 2022-05-11 19:11:16 +0100 |
commit | 8620063ae01376186157672fa3814657bfec770e (patch) | |
tree | 9518454cb4460f30b3fc7ab58e46238ff63dfbaf /core/scripts/js/babel-es6-watch.js | |
parent | 98fa7ce18115e0a70d386377b4f0e5e49e0725cf (diff) | |
download | drupal-8620063ae01376186157672fa3814657bfec770e.tar.gz drupal-8620063ae01376186157672fa3814657bfec770e.zip |
Issue #3278246 by lauriii, alexpott, nod_, justafish: Deprecate core/scripts/js/babel-es6-build.js for removal from 10.0.x
Diffstat (limited to 'core/scripts/js/babel-es6-watch.js')
-rw-r--r-- | core/scripts/js/babel-es6-watch.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/scripts/js/babel-es6-watch.js b/core/scripts/js/babel-es6-watch.js index c9d1b147e03e..2fbcfe3196d1 100644 --- a/core/scripts/js/babel-es6-watch.js +++ b/core/scripts/js/babel-es6-watch.js @@ -16,6 +16,8 @@ const chokidar = require('chokidar'); const changeOrAdded = require('./changeOrAdded'); const log = require('./log'); +console.warn('⚠️ yarn `watch:js` command is deprecated in drupal:9.4.0 and will be removed from drupal:10.0.0. This command is no longer needed in Drupal 10.0.0 once https://www.drupal.org/project/drupal/issues/3278415 is committed.️'); + // Match only on .es6.js files. const fileMatch = './**/*.es6.js'; // Ignore everything in node_modules |