Skip to content

Commit

Permalink
fix: add postinstall message
Browse files Browse the repository at this point in the history
  • Loading branch information
stepan662 committed Sep 11, 2023
1 parent af155cb commit 6feb0c2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
"clean": "rm -rf dist lib",
"test": "jest --collect-coverage",
"develop": "concurrently \"rollup -c rollup.config.js -w\" \"tsc --declaration --emitDeclarationOnly --watch --preserveWatchOutput --project tsconfig.prod.json\" ",
"tsc": "tsc --noEmit"
"tsc": "tsc --noEmit",
"postinstall": "node ./postinstall.js"
},
"author": "Tolgee",
"license": "MIT",
Expand Down
10 changes: 10 additions & 0 deletions packages/core/postinstall.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
console.log('');
console.log('###############################################');
console.log('# #');
console.log('# Thank you for installing Tolgee SDK 🐭 #');
console.log('# If you like what we do, give us GitHub 🌟 #');
console.log('# #');
console.log('# https://github.com/tolgee/tolgee-platform #');
console.log('# #');
console.log('###############################################');
console.log('');

0 comments on commit 6feb0c2

Please sign in to comment.