@logtape/syslog 1.3.1 → 1.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@logtape/syslog",
3
- "version": "1.3.1",
3
+ "version": "1.3.3",
4
4
  "description": "Syslog sink for LogTape",
5
5
  "keywords": [
6
6
  "logging",
@@ -44,8 +44,11 @@
44
44
  "./package.json": "./package.json"
45
45
  },
46
46
  "sideEffects": false,
47
+ "files": [
48
+ "dist/"
49
+ ],
47
50
  "peerDependencies": {
48
- "@logtape/logtape": "^1.3.1"
51
+ "@logtape/logtape": "^1.3.3"
49
52
  },
50
53
  "devDependencies": {
51
54
  "@alinea/suite": "^0.6.3",
package/deno.json DELETED
@@ -1,34 +0,0 @@
1
- {
2
- "name": "@logtape/syslog",
3
- "version": "1.3.1",
4
- "license": "MIT",
5
- "exports": "./src/mod.ts",
6
- "exclude": [
7
- "coverage/",
8
- "npm/",
9
- ".dnt-import-map.json"
10
- ],
11
- "tasks": {
12
- "build": "pnpm build",
13
- "test": "deno test --allow-net --allow-env=TEMP,TMP,TMPDIR,HOSTNAME --allow-sys",
14
- "test:node": {
15
- "dependencies": [
16
- "build"
17
- ],
18
- "command": "node --experimental-transform-types --test"
19
- },
20
- "test:bun": {
21
- "dependencies": [
22
- "build"
23
- ],
24
- "command": "bun test"
25
- },
26
- "test-all": {
27
- "dependencies": [
28
- "test",
29
- "test:node",
30
- "test:bun"
31
- ]
32
- }
33
- }
34
- }
package/src/mod.ts DELETED
@@ -1,16 +0,0 @@
1
- /**
2
- * Syslog sink for LogTape.
3
- *
4
- * This module provides a syslog sink that sends log messages to a syslog server
5
- * following the RFC 5424 specification.
6
- *
7
- * @module
8
- */
9
-
10
- export type {
11
- SyslogFacility,
12
- SyslogProtocol,
13
- SyslogSinkOptions,
14
- SyslogTlsOptions,
15
- } from "./syslog.ts";
16
- export { getSyslogSink } from "./syslog.ts";