Skip to content

Commit

Permalink
Merge pull request #190 from hckrnews/feature/update-20230719
Browse files Browse the repository at this point in the history
Say hello
  • Loading branch information
w3nl authored Jul 19, 2023
2 parents a20d328 + 6e472a8 commit 9246c29
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
5 changes: 3 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hckrnews/objects",
"description": "Create valid JavaScript objects",
"version": "6.0.6",
"version": "6.0.7",
"author": {
"name": "Pieter Wigboldus",
"url": "https://hckr.news/"
Expand All @@ -14,7 +14,8 @@
"test": "c8 node --test src/",
"cpd": "node_modules/jscpd/bin/jscpd src",
"vulnerabilities": "npm audit --production",
"build": "microbundle --target node src/objects.js"
"build": "microbundle --target node src/objects.js",
"postinstall": "node postinstall.js"
},
"type": "module",
"files": [
Expand All @@ -29,7 +30,8 @@
"dist/objects.module.mjs",
"dist/objects.module.mjs.map",
"dist/objects.umd.cjs",
"dist/objects.umd.cjs.map"
"dist/objects.umd.cjs.map",
"postinstall.js"
],
"main": "dist/objects.umd.cjs",
"source": "src/objects.js",
Expand Down
1 change: 1 addition & 0 deletions postinstall.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('Thanks for using my package! π★-s');

0 comments on commit 9246c29

Please sign in to comment.