From 0e90150e9c6f79d5f0deb8bef242fe60baa06cfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Chalifour?= Date: Wed, 26 Aug 2020 15:40:59 +0200 Subject: [PATCH] chore(release): don't check for NODE_ENV to set banner --- rollup.config.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index e180ac32..14b8a11d 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -1,11 +1,8 @@ import { plugins } from '../../rollup.base.config'; -import { checkIsReleaseReady } from '../../scripts/checkIsReleaseReady'; import { getBundleBanner } from '../../scripts/getBundleBanner'; import pkg from './package.json'; -checkIsReleaseReady(); - if (!process.env.BUILD) { throw new Error('The `BUILD` environment variable is required to build.'); }