Skip to content

Commit 56723b2

Browse files
committed
Merge branch 'feature/publish-to-npm' into develop
2 parents 1cd056a + 365e49d commit 56723b2

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
{
2-
"name": "simplelog",
2+
"name": "simplelog-decorator",
3+
"version": "0.1.0",
34
"type": "module",
5+
"author": {
6+
"email": "[email protected]",
7+
"name": "Mateo Sheshi",
8+
"url": "https://github.com/devsheva"
9+
},
10+
"main": "dist/logger.js",
11+
"types": "dist/logger.d.ts",
412
"description": "A simple logging library",
513
"devDependencies": {
614
"@vitest/coverage-v8": "^2.0.5",

tsconfig.build.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"declaration": true
5+
},
36
"exclude": [
47
"spec/**/*.ts",
58
"test/**/*.ts"

0 commit comments

Comments
 (0)