@stacksjs/stx 0.1.12 → 0.1.16

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/dist/serve.d.ts CHANGED
@@ -29,7 +29,7 @@ export declare interface ServeOptions {
29
29
  onError?: (error: Error, request: Request) => Response | Promise<Response>
30
30
  }
31
31
  export declare interface ServeResult {
32
- server: Server
32
+ server: Server<any>
33
33
  stop: () => void
34
34
  url: string
35
35
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/stx",
3
3
  "type": "module",
4
- "version": "0.1.12",
4
+ "version": "0.1.16",
5
5
  "description": "A performant UI Framework. Powered by Bun.",
6
6
  "author": "Chris Breuer <chris@stacksjs.org>",
7
7
  "license": "MIT",
@@ -26,16 +26,16 @@
26
26
  "exports": {
27
27
  ".": {
28
28
  "types": "./dist/index.d.ts",
29
- "import": "./dist/src/index.js"
29
+ "import": "./dist/index.js"
30
30
  },
31
31
  "./*": {
32
32
  "import": "./dist/*"
33
33
  }
34
34
  },
35
- "module": "./dist/src/index.js",
35
+ "module": "./dist/index.js",
36
36
  "types": "./dist/index.d.ts",
37
37
  "bin": {
38
- "stx": "./dist/bin/cli.js"
38
+ "stx": "./dist/cli.js"
39
39
  },
40
40
  "files": [
41
41
  "LICENSE.md",
@@ -65,7 +65,6 @@
65
65
  "fresh": "bunx rimraf node_modules/ bun.lock && bun i",
66
66
  "changelog": "bunx changelogen --output CHANGELOG.md",
67
67
  "prepublishOnly": "bun run build && bun ./scripts/update-git-hash.ts && bun run compile:all && bun run zip:all",
68
- "release": "bun run changelog && bunx bumpp package.json --all",
69
68
  "test": "bun test --preload ./happy-dom.ts",
70
69
  "test:watch": "bun test --watch --preload ./happy-dom.ts",
71
70
  "test:coverage": "bun test --coverage --preload ./happy-dom.ts",
@@ -74,9 +73,9 @@
74
73
  "dependencies": {
75
74
  "@stacksjs/clapp": "^0.2.0",
76
75
  "@stacksjs/headwind": "^0.1.3",
77
- "@stacksjs/markdown": "0.0.1",
78
- "@stacksjs/sanitizer": "0.0.1",
79
- "bun-plugin-stx": "0.0.10",
76
+ "@stacksjs/markdown": "0.1.15",
77
+ "@stacksjs/sanitizer": "0.1.15",
78
+ "bun-plugin-stx": "0.1.15",
80
79
  "bunfig": "^0.15.0",
81
80
  "ts-syntax-highlighter": "^0.1.0"
82
81
  }