dotmd-cli 0.8.7 → 0.9.0

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Beyond
3
+ Copyright (c) 2026 Robert Owens
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/bin/dotmd.mjs CHANGED
File without changes
@@ -83,6 +83,13 @@ export const presets = {
83
83
  actionable: ['--status', 'active,ready', '--has-next-step', '--sort', 'updated', '--all'],
84
84
  };
85
85
 
86
+ // ─── Notion ──────────────────────────────────────────────────────────────────
87
+ // IMPORTANT: Use environment variables for tokens — never hardcode secrets in config files.
88
+ // export const notion = {
89
+ // token: process.env.NOTION_TOKEN,
90
+ // databaseId: process.env.NOTION_DATABASE_ID,
91
+ // };
92
+
86
93
  // ─── Function Hooks ──────────────────────────────────────────────────────────
87
94
  // Hooks are optional. Each receives a default implementation it can wrap or replace.
88
95
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dotmd-cli",
3
- "version": "0.8.7",
3
+ "version": "0.9.0",
4
4
  "description": "CLI for managing markdown documents with YAML frontmatter — index, query, validate, graph, export, Notion sync, AI summaries.",
5
5
  "type": "module",
6
6
  "license": "MIT",