1
0
miroir de https://github.com/therootcompany/greenlock-express.js.git synchronisé 2024-11-16 17:28:59 +00:00

v2.7.14: announce deadline

Cette révision appartient à :
AJ ONeal 2019-08-17 21:59:00 -06:00
Parent f3bae8580b
révision 8732029eb1
2 fichiers modifiés avec 70 ajouts et 19 suppressions

Voir le fichier

@ -1,6 +1,6 @@
{ {
"name": "greenlock-express", "name": "greenlock-express",
"version": "2.7.13", "version": "2.7.14",
"description": "Free SSL and managed or automatic HTTPS for node.js with Express, Koa, Connect, Hapi, and all other middleware systems.", "description": "Free SSL and managed or automatic HTTPS for node.js with Express, Koa, Connect, Hapi, and all other middleware systems.",
"main": "index.js", "main": "index.js",
"homepage": "https://greenlock.domains", "homepage": "https://greenlock.domains",

Voir le fichier

@ -1,5 +1,5 @@
#!/usr/bin/env node #!/usr/bin/env node
'use strict'; "use strict";
// BG WH \u001b[47m // BG WH \u001b[47m
// BOLD \u001b[1m // BOLD \u001b[1m
@ -7,20 +7,71 @@
// GREEN \u001b[32m // GREEN \u001b[32m
// RESET \u001b[0m // RESET \u001b[0m
[ '', var grabbers = [
'\u001b[31m===============================\u001b[0m', [
'\u001b[31m==\u001b[0m Do you rely on Greenlock? \u001b[31m==\u001b[0m', "",
'\u001b[31m===============================\u001b[0m', "================================================================================",
'', "",
" 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥",
"🔥 🔥",
"🔥 Do you rely on Greenlock? 🔥",
"🔥 🔥",
" 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥"
],
[
"",
"================================================================================",
"",
" 🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒",
"🍒 🍒",
"🍒 Do you rely on Greenlock? 🍒",
"🍒 🍒",
" 🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒"
],
[
"",
"================================================================================",
"",
" 👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇",
"👉 👈",
"👉 Do you rely on Greenlock? 👈",
"👉 👈",
" 👆👆👆👆👆👆👆👆👆👆👆👆👆👆👆 "
],
[
"",
"================================================================================",
"",
" 👀 👀 👀 👀 👀 👀 👀 👀 👀 👀 👀 ",
"👀 👀",
"👀 Do you rely on Greenlock? 👀",
"👀 👀",
" 👀 👀 👀 👀 👀 👀 👀 👀 👀 👀 👀 ",
]
];
setTimeout(function() {
grabbers[Math.floor(Math.random() * grabbers.length)].concat([
"",
"Hey! Let's Encrypt will \u001b[31mSTOP WORKING\u001b[0m with Greenlock v2 at the end of October,", "Hey! Let's Encrypt will \u001b[31mSTOP WORKING\u001b[0m with Greenlock v2 at the end of October,",
"and \u001b[31mWITHOUT YOUR HELP\u001b[0m we won't get the next release out in time.", "and \u001b[31mWITHOUT YOUR HELP\u001b[0m we won't get the next release out in time.",
'', "",
"If Greenlock has saved you time and money, and taken stress out of your life,", "If Greenlock has saved you time and money, and taken stress out of your life,",
"or you just love it, please reach out to return the favor today:", "or you just love it, please reach out to return the favor today:",
'', "",
'\u001b[31mSAVE GREENLOCK:\u001b[0m', "\u001b[31mSAVE GREENLOCK:\u001b[0m",
'https://indiegogo.com/at/greenlock', "https://indiegogo.com/at/greenlock",
'' "",
].forEach(function (line) { "================================================================================",
""
]).forEach(function(line) {
console.info(line); console.info(line);
}); });
}, 300);
setTimeout(function() {
// give time to read
}, 1500);