Skip to content

Commit

Permalink
Adding new package building command and 1.3.2 bump to fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Tynarus committed Apr 11, 2021
1 parent a40eb52 commit 01b5e57
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tsconfig.json
src
.idea
dist/test.*
test.*
2 changes: 1 addition & 1 deletion package-lock.json

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

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{
"name": "@runejs/core",
"version": "1.3.1",
"version": "1.3.2",
"description": "Core logging, networking, and buffer functionality for RuneJS applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"start": "ts-node src/test.ts"
"start": "ts-node src/test.ts",
"copy-documents": "cp package.json dist && cp README.md dist && cp .npmignore dist && cp LICENSE dist",
"package": "rm -rf dist && npm run build && npm run copy-documents && cd dist && npm publish --dry-run"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 01b5e57

Please sign in to comment.