From f1dbb0298c801c77783a55d588f2d60148f23f1e Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 18 Mar 2023 16:33:46 +0100 Subject: [PATCH] build: enforce strict deprecation checks MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- rollup.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/rollup.config.mjs b/rollup.config.mjs index 8997445e..b1197e91 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -10,6 +10,7 @@ const isDocumentation = process.env.DOCUMENTATION export default { input: 'src/index.ts', + strictDeprecations: true, output: [ { ...(isDevelopmentBuild ? { dir: 'lib' } : { file: 'lib/index.js' }), -- 2.34.1