next-translate-plugin 2.0.1 โ†’ 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-translate-plugin",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Tiny and powerful i18n plugin to translate your Next.js pages.",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -35,7 +35,8 @@
35
35
  "loader*",
36
36
  "template*",
37
37
  "types*",
38
- "utils*"
38
+ "utils*",
39
+ "postinstall-message.js"
39
40
  ],
40
41
  "scripts": {
41
42
  "build": "yarn clean && cross-env NODE_ENV=production && yarn tsc",
@@ -49,7 +50,7 @@
49
50
  "test:coverage": "cross-env NODE_ENV=test jest --env=jsdom --coverage",
50
51
  "test:watch": "cross-env NODE_ENV=test jest --env=jsdom --watch",
51
52
  "tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && node build-packages.js",
52
- "postinstall": "node postinstall-message.js"
53
+ "postinstall": "node ./postinstall-message.js"
53
54
  },
54
55
  "dependencies": {
55
56
  "typescript": "4.5.2"
@@ -0,0 +1,18 @@
1
+ console.log('\x1b[31m%s\x1b[0m', `----------------------------------\n`);
2
+
3
+ console.log('\x1b[36m%s\x1b[0m', `Hi there!\n`);
4
+
5
+ console.log('\x1b[36m%s\x1b[0m', `Thank you for using Next-translate and Next-translate-plugin. I'm happy to see that it's been helpful to so many people ๐Ÿงก\n`);
6
+
7
+ console.log('\x1b[36m%s\x1b[0m', `As much as I enjoy maintaining and developing new features for the library, it unfortunately doesn't pay the bills. If you believe in the project and would like to support its continued growth, please consider making a donation. Any amount, no matter how small, will be greatly appreciated and will help me to continue dedicating my time to this project.\n`);
8
+
9
+ console.log('\x1b[36m%s\x1b[0m', `Also, I would be incredibly grateful if you could help me spread the word about the library and encourage any large companies you know to consider supporting the project.\n`);
10
+
11
+ console.log('\x1b[36m%s\x1b[0m', `Thank you from the bottom of my heart ๐Ÿ˜Š๐Ÿค—\n`);
12
+
13
+ console.log('\x1b[31m%s\x1b[0m', `Become a sponsor: https://github.com/sponsors/aralroca\n`);
14
+
15
+ console.log('\x1b[31m%s\x1b[0m', `----------------------------------\n`);
16
+
17
+
18
+