Skip to content

Commit

Permalink
Document/v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Apr 4, 2024
1 parent efa981c commit 293f660
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.5

- Cleanup

## 0.0.4

- Cleanup
Expand Down
4 changes: 3 additions & 1 deletion Source/Function/Document.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ export default (async (...[File]: Parameters<Type>) => {
[
"typedoc",
"--commentStyle all",
`--customCss ${resolve(`${Current}/../../Stylesheet/Theme.css`)}`,
`--customCss ${(await import("path")).resolve(
`${Current}/../../Stylesheet/Theme.css`
)}`,
"--includeVersion",
"--out ./Documentation",
// TODO: FIX THIS
Expand Down
2 changes: 1 addition & 1 deletion Target/Class/Document.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env node
var e=new(await import("commander")).Command().name("Document").version("0.0.4").description("\u{1F4C3}\u2000Document.").argument("<File...>","File.").action((await import("../Function/Document.js")).default).parse();export{e as default};
var e=new(await import("commander")).Command().name("Document").version("0.0.5").description("\u{1F4C3}\u2000Document.").argument("<File...>","File.").action((await import("../Function/Document.js")).default).parse();export{e as default};
2 changes: 1 addition & 1 deletion Target/Function/Document.js

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playform/document",
"version": "0.0.4",
"version": "0.0.5",
"private": false,
"description": "📃 Document.",
"keywords": [
Expand Down

0 comments on commit 293f660

Please sign in to comment.