From 505b2432bfb0ab8a83ca78c702f72ee9bdb3e3fe Mon Sep 17 00:00:00 2001 From: Vinicius Reis Date: Wed, 6 Jul 2022 20:18:00 -0300 Subject: =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Upgrade=20dependencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - removes jest-raw-loader - add vue-demi Signed-off-by: Vinicius Reis --- jest-raw-loader.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 jest-raw-loader.js (limited to 'jest-raw-loader.js') diff --git a/jest-raw-loader.js b/jest-raw-loader.js new file mode 100644 index 000000000..16af98c7e --- /dev/null +++ b/jest-raw-loader.js @@ -0,0 +1,9 @@ +// jest-raw-loader compatibility with Jest version 28. +// See: https://github.com/keplersj/jest-raw-loader/pull/239 +module.exports = { + process: (content) => { + return { + code: 'module.exports = ' + JSON.stringify(content), + } + }, +} -- cgit v1.2.3