logger: publish to npm

This commit is contained in:
Abdullah Atta
2023-08-01 09:33:45 +05:00
parent 387aeab319
commit 91cb2935eb

View File

@@ -4,8 +4,8 @@
"description": "A really simple logger with a pluggable interface.", "description": "A really simple logger with a pluggable interface.",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {
"pub": "tsc && np", "build": "tsc",
"build": "tsc" "prepublishOnly": "npm run build"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@@ -24,9 +24,5 @@
"releaseDraft": false, "releaseDraft": false,
"message": "chore: bump version to %s" "message": "chore: bump version to %s"
}, },
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
},
"devDependencies": {} "devDependencies": {}
} }