knowns 0.1.2 → 0.1.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/CHANGELOG.md +27 -0
- package/dist/index.js +68 -32
- package/dist/ui/index.css +1 -0
- package/dist/ui/index.html +12 -0
- package/dist/ui/main.css +1 -0
- package/dist/ui/main.js +431 -0
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "knowns",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "CLI tool for dev teams to manage tasks and documentation",
|
|
5
5
|
"module": "index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -23,7 +23,10 @@
|
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
25
|
"dev": "bun run --watch src/index.ts",
|
|
26
|
-
"build": "bun build
|
|
26
|
+
"build": "bun run build:cli && bun run build:ui && bun run build:copy-html",
|
|
27
|
+
"build:cli": "bun build src/index.ts --outdir dist --target bun && bun build src/mcp/server.ts --outdir dist/mcp --target bun",
|
|
28
|
+
"build:ui": "bun build src/ui/main.tsx --outdir dist/ui --target browser --minify && bun build src/ui/index.css --outdir dist/ui --target browser --minify",
|
|
29
|
+
"build:copy-html": "cp src/ui/index.html dist/ui/index.html",
|
|
27
30
|
"start": "bun run src/index.ts",
|
|
28
31
|
"mcp": "bun run src/mcp/server.ts",
|
|
29
32
|
"test": "bun test",
|