Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ It intentionally contains no Obsidian API usage, no vault IO, no process exits,
- host-independent operation plans for common task mutations
- spec-normalized adapter helpers for CLI and mdbase-style consumers
- tasknotes-spec conformance operation helpers
- mdbase runtime provider, contract, event, dispatch, preflight, and host API types
- canonical mdbase record and event contract artifacts

Hosts own:

Expand Down Expand Up @@ -50,7 +50,6 @@ The package exports both the root module and focused subpath modules:
| `@tasknotes/model/frontmatter` | Markdown task document parse/serialize helpers |
| `@tasknotes/model/mdbase` | Canonical mdbase v0.3 config, contract, schema, and implementing-type generation |
| `@tasknotes/model/conformance` | tasknotes-spec conformance operation dispatcher |
| `@tasknotes/model/runtime` | Host-independent mdbase runtime provider and host contracts |

## Examples

Expand Down
99 changes: 2 additions & 97 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 1 addition & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tasknotes/model",
"version": "0.3.0-rc.4",
"version": "0.3.0-rc.5",
"description": "TaskNotes model, mapping, validation, recurrence, and operation-planning reference implementation.",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -95,11 +95,6 @@
"types": "./dist/types/conformance.d.ts",
"import": "./dist/esm/conformance.js",
"require": "./dist/cjs/conformance.cjs"
},
"./runtime": {
"types": "./dist/types/runtime.d.ts",
"import": "./dist/esm/runtime.js",
"require": "./dist/cjs/runtime.cjs"
}
},
"files": [
Expand All @@ -119,7 +114,6 @@
"test:package": "node scripts/smoke-package.mjs"
},
"dependencies": {
"@callumalpass/mdbase-runtime": "0.1.0-rc.1",
"rrule": "^2.8.1",
"yaml": "^2.3.1",
"zod": "^3.24.0"
Expand Down
3 changes: 1 addition & 2 deletions scripts/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@ const entries = [
"frontmatter",
"mdbase",
"conformance",
"runtime",
];

const external = ["@callumalpass/mdbase-runtime", "rrule", "yaml", "zod"];
const external = ["rrule", "yaml", "zod"];

await mkdir("dist/esm", { recursive: true });
await mkdir("dist/cjs", { recursive: true });
Expand Down
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@ export * from "./operations";
export * from "./frontmatter";
export * from "./mdbase";
export * from "./conformance";
export * from "./runtime";
27 changes: 0 additions & 27 deletions src/runtime.ts

This file was deleted.

11 changes: 0 additions & 11 deletions test/runtime.test.mjs

This file was deleted.