From f26b005807da749bbdc80e51b67d15447a1c99ab Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Mon, 26 Jul 2021 18:20:07 -0700 Subject: [PATCH] Deprecated the legacy boot.js file --- lib/jasmine-core/boot.js | 2 ++ lib/jasmine-core/boot/boot.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/lib/jasmine-core/boot.js b/lib/jasmine-core/boot.js index 0b5af405..048ac2ba 100644 --- a/lib/jasmine-core/boot.js +++ b/lib/jasmine-core/boot.js @@ -162,4 +162,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. return destination; } + env.deprecated('boot.js is deprecated. Please use boot0.js and boot1.js instead.', + { ignoreRunnable: true }); }()); diff --git a/lib/jasmine-core/boot/boot.js b/lib/jasmine-core/boot/boot.js index b52272df..7354f283 100644 --- a/lib/jasmine-core/boot/boot.js +++ b/lib/jasmine-core/boot/boot.js @@ -140,4 +140,6 @@ return destination; } + env.deprecated('boot.js is deprecated. Please use boot0.js and boot1.js instead.', + { ignoreRunnable: true }); }());