Skip to content

Commit

Permalink
Merge pull request #3 from runejs/feature/networking-cleanup
Browse files Browse the repository at this point in the history
Core 1.4.0: Networking Cleanup
  • Loading branch information
Tynarus authored Jul 27, 2021
2 parents 01b5e57 + 630ead1 commit 8747fa9
Show file tree
Hide file tree
Showing 9 changed files with 525 additions and 286 deletions.
304 changes: 199 additions & 105 deletions package-lock.json

Large diffs are not rendered by default.

30 changes: 18 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"name": "@runejs/core",
"version": "1.3.2",
"version": "1.4.0",
"description": "Core logging, networking, and buffer functionality for RuneJS applications.",
"main": "index.js",
"types": "index.d.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"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"
"copy-documents:windows": "copy package.json dist && copy README.md dist && copy .npmignore dist && copy LICENSE dist",
"package": "rimraf dist && npm run build && npm run copy-documents && cd dist && npm publish --dry-run",
"package:windows": "rimraf dist && npm run build && npm run copy-documents:windows && cd dist && npm publish --dry-run"
},
"repository": {
"type": "git",
Expand All @@ -21,15 +23,19 @@
},
"homepage": "https://github.com/runejs/core#readme",
"dependencies": {
"js-yaml": "^3.14.0",
"pino": "^6.11.2",
"pino-pretty": "^4.7.1",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
"js-yaml": "^3.14.1",
"pino": "^6.13.0",
"pino-pretty": "^4.8.0"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/pino": "^6.3.6",
"ts-node": "^9.1.1"
"@types/node": "^14.17.6",
"@types/pino": "^6.3.11",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"tslib": ">=2.1.0",
"typescript": ">=4.2.0"
},
"peerDependencies": {
"tslib": ">=2.1.0"
}
}
Loading

0 comments on commit 8747fa9

Please sign in to comment.