Skip to content

Commit

Permalink
Publish to npm :)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgpholly committed May 12, 2023
1 parent 5cf164a commit 9c93894
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Custom
build/
lib/

# Logs
logs
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "bufferstuff",
"version": "1.0.0",
"description": "A set of utility classes for reading and writing binary data in NodeJS and the browser",
"main": "index.ts",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"updateCheck": "check-outdated",
"build": "tsc --build",
Expand All @@ -13,7 +14,7 @@
"url": "git+https://github.com/tgpholly/bufferStuff.git"
},
"keywords": [],
"author": "",
"author": "tgpholly",
"license": "MIT",
"bugs": {
"url": "https://github.com/tgpholly/bufferStuff/issues"
Expand All @@ -25,4 +26,4 @@
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}
}
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"esModuleInterop": true,
"resolveJsonModule": true,
"rootDir": "./",
"outDir": "./build",
"outDir": "./lib",
"strict": true,
"declaration": true
}
}
}

0 comments on commit 9c93894

Please sign in to comment.