Skip to content

Update docs and package file #34

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 13, 2024
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
14 changes: 8 additions & 6 deletions documentation/source/index.rst
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
Welcome to Command interface's documentation!
=============================================
*****************
command-interface
*****************

.. toctree::
:maxdepth: 2
:caption: Contents:
:hidden:

This is a system for building command-driven interfaces in Dylan.

It can currently be used to declaratively design terminal-based
command interfaces, commonly called shells or CLIs.
It can currently be used to declaratively design terminal-based command
interfaces, commonly called shells or CLIs (for Command Line Interface).

We also strive to implement graphical command interfaces in a similar
manner to Symbolics Genera, including support for full graphical and
markup output.

(Full documentation is still TBD.)


Indices and tables
==================

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
6 changes: 3 additions & 3 deletions dylan-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"name": "command-interface",
"description": "Interactive command interface system for Dylan",
"keywords": [ "command-line" ],
"version": "0.1.1",
"version": "0.1.2",
"url": "https://github.com/dylan-lang/command-interface",
"category" : "utilities",
"contact": "dylan-lang@googlegroups.com",
"dependencies": [],
"dev-dependencies": [
"testworks@3.2.0",
"sphinx-extensions@0.2.0"
"testworks",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree that is less maintenance work, but it is a good practice? Is ok for developer dependencies only?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right, I only do it for dev deps. (And my world is colored by the fact that we used to do everything at master all the time, so using package versions at all is somewhat new in Dylandia.)

"sphinx-extensions"
],
"license": "MIT",
"license-url": "https://opensource.org/license/mit"
Expand Down