Skip to content

Commit

Permalink
Dependency update. Remove sysinfo-module.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexagon committed Jun 4, 2024
1 parent 8ae63f5 commit c02a232
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 83 deletions.
4 changes: 2 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
"@cross/env": "jsr:@cross/env@~1.0.2",
"@cross/fs": "jsr:@cross/fs@~0.1.11",
"@cross/jwt": "jsr:@cross/jwt@~0.4.7",
"@cross/kv": "jsr:@cross/kv@^0.15.6",
"@cross/kv": "jsr:@cross/kv@^0.15.8",
"@cross/runtime": "jsr:@cross/runtime@~1.0.0",
"@cross/service": "jsr:@cross/service@~1.0.3",
"@cross/test": "jsr:@cross/test@~0.0.9",
"@cross/utils": "jsr:@cross/utils@~0.12.0",
"@cross/utils": "jsr:@cross/utils@~0.13.0",
"@hexagon/croner": "jsr:@hexagon/croner@~8.0.2",
"@oak/oak": "jsr:@oak/oak@~16.0.0",
"@pup/api-client": "jsr:@pup/api-client@~2.0.0",
Expand Down
1 change: 1 addition & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ All notable changes to this project will be documented in this section.

- fix(core): Replace `Deno.Kv` with `@cross/kv` for cross-runtime compatibility, more compact logs and avoiding `--unstable`
- fix(core): Internal changes to support Node and Bun
- fix(core): Removes the `sysinfo.ts`-module in favor of `@cross/utils/sysinfo`

## [1.0.0-rc.39] - 2024-05-04

Expand Down
2 changes: 1 addition & 1 deletion docs/src/examples/basic-webinterface/pup.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"plugins": [
{
// Use full uri to plugin, e.g. jsr:@pup/plugin-web-interface
"url": "jsr:@pup/plugin-web-interface@^2.0.2",
"url": "jsr:@pup/plugin-web-interface",
"options": {
"port": 8002
}
Expand Down
79 changes: 0 additions & 79 deletions lib/common/sysinfo.ts

This file was deleted.

2 changes: 1 addition & 1 deletion lib/core/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { ApiApplicationState, ApiProcessState } from "@pup/api-definitions"
import { KV } from "@cross/kv"

import { Prop } from "../common/prop.ts"
import { loadAvg, memoryUsage, systemMemoryInfo, uptime } from "../common/sysinfo.ts"
import { loadAvg, memoryUsage, systemMemoryInfo, uptime } from "@cross/utils/sysinfo"
import { getCurrentOS, getCurrentRuntime, getCurrentVersion } from "@cross/runtime"
import { pid } from "@cross/utils"

Expand Down

0 comments on commit c02a232

Please sign in to comment.