From d61d4651b9639a2d0af18c0bcfc3c9034c9a7e31 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 13 May 2024 12:24:58 -0600 Subject: [PATCH] chore: remove upcoming v3 notice --- package.json | 1 - scripts/postinstall | 24 ------------------------ 2 files changed, 25 deletions(-) delete mode 100755 scripts/postinstall diff --git a/package.json b/package.json index a28d431..281ed1a 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,6 @@ "scripts" ], "scripts": { - "postinstall": "node scripts/postinstall", "test": "node ./test.js" }, "repository": { diff --git a/scripts/postinstall b/scripts/postinstall deleted file mode 100755 index c4d6d8b..0000000 --- a/scripts/postinstall +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env node -'use strict'; - -// BG WH \u001b[47m -// BOLD \u001b[1m -// RED \u001b[31m -// GREEN \u001b[32m -// RESET \u001b[0m - -setTimeout(function() { - [ - '', - '\u001b[31mGreenlock and ACME.js v3 are on the way!\u001b[0m', - 'Watch for updates at https://indiegogo.com/at/greenlock', - '' - ] - .forEach(function(line) { - console.info(line); - }); -}, 300); - -setTimeout(function() { - // give time to read -}, 1500);