aboutsummaryrefslogtreecommitdiff
path: root/node_modules/nodemon/bin/postinstall.js
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-06-04 08:51:19 +0200
committerMinteck <contact@minteck.org>2022-06-04 08:51:19 +0200
commitb22f6770c8bd084d66950655203c61dd701b3d90 (patch)
tree873d7fb19584ec2709b95cc1ca05a1fc7cfd0fc4 /node_modules/nodemon/bin/postinstall.js
parent383285ecd5292bf9a825e05904955b937de84cc9 (diff)
downloadequestriadb-b22f6770c8bd084d66950655203c61dd701b3d90.tar.gz
equestriadb-b22f6770c8bd084d66950655203c61dd701b3d90.tar.bz2
equestriadb-b22f6770c8bd084d66950655203c61dd701b3d90.zip
Remove node_modules
Diffstat (limited to 'node_modules/nodemon/bin/postinstall.js')
-rwxr-xr-xnode_modules/nodemon/bin/postinstall.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/node_modules/nodemon/bin/postinstall.js b/node_modules/nodemon/bin/postinstall.js
deleted file mode 100755
index 34c8194..0000000
--- a/node_modules/nodemon/bin/postinstall.js
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env node
-
-function main() {
- if (process.env.SUPPRESS_SUPPORT || process.env.OPENCOLLECTIVE_HIDE || process.env.CI) {
- return;
- }
-
- const message = '\u001b[32mLove nodemon? You can now support the project via the open collective:\u001b[22m\u001b[39m\n > \u001b[96m\u001b[1mhttps://opencollective.com/nodemon/donate\u001b[0m\n';
-
- try {
- const Configstore = require('configstore');
- const pkg = require(__dirname + '/../package.json');
- const now = Date.now();
-
- var week = 1000 * 60 * 60 * 24 * 7;
-
- // create a Configstore instance with an unique ID e.g.
- // Package name and optionally some default values
- const conf = new Configstore(pkg.name);
- const last = conf.get('lastCheck');
-
- if (!last || now - week > last) {
- console.log(message);
- conf.set('lastCheck', now);
- }
- } catch (e) {
- console.log(message);
- }
-}
-
-main();