Skip to content

Commit

Permalink
Add documentation to the basic package
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcadman committed Nov 13, 2023
1 parent 8322c3f commit 2b78e8e
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion include/package/PackageDescription/Basic.juvix
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
module PackageDescription.Basic;

type Package := basicPackage;
--- A ;Package; defines the configuration for a Juvix package
type Package :=
--- A package with the following settings:
---
--- name: "my-project"
--- version: 0.0.0
--- dependencies: The default standard library
--- main: nothing
--- buildDir: nothing
---
--- Use this in situations where you don't want the package configuration file
--- to use the standard library.
basicPackage;

0 comments on commit 2b78e8e

Please sign in to comment.