Skip to content

Commit

Permalink
Merge pull request #3 from dylan-lang/dev
Browse files Browse the repository at this point in the history
dylan-tool -> deft, new version: 0.1.0
  • Loading branch information
cgay authored May 4, 2024
2 parents a2c5f15 + 5af9d4d commit 482af3b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions dylan-package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"dependencies": [
"command-line-parser",
"dylan-tool",
"deft",
],
"category": "development tools",
"dev-dependencies": [
Expand All @@ -11,5 +11,5 @@
"description": "Generate docs for all Dylan catalog libraries",
"name": "gendoc",
"version": "0.1.0",
"url": "https://github.com/cgay/gendoc"
"url": "https://github.com/dylan-lang/gendoc"
}
2 changes: 1 addition & 1 deletion lib/gendoc.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ end function;

define function gendoc
(output-dir :: <directory-locator>)
dynamic-bind (dt_*verbose?* = #t)
dynamic-bind (deft-*verbose?* = #t)
let packages = fetch-packages(output-dir);
let root-index-file = file-locator(output-dir, $package-subdirectory, "index.rst");
fs/with-open-file(stream = root-index-file,
Expand Down
8 changes: 4 additions & 4 deletions lib/library.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ define library gendoc-lib
import: { table-extensions };
use command-line-parser;
use common-dylan;
use dylan-tool,
use deft,
import: { pacman, %pacman, shared };
use io,
import: { format, format-out, streams };
Expand Down Expand Up @@ -34,9 +34,9 @@ define module gendoc-impl
// TODO: export find-release from pacman
use %pacman,
prefix: "%pm/";
use shared, // shared:dylan-tool
// Not dt/ - https://github.com/dylan-lang/dylan-emacs-support/issues/36
prefix: "dt_";
use shared, // shared:deft
// Not "deft/", due to https://github.com/dylan-lang/dylan-emacs-support/issues/36
prefix: "deft-";
use streams,
prefix: "io/";
use strings;
Expand Down

0 comments on commit 482af3b

Please sign in to comment.