Skip to content

Commit

Permalink
Document/v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Jul 24, 2024
1 parent f81fded commit b2581c3
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.0

- Cleanup

## 0.0.12

- Cleanup
Expand Down
1 change: 0 additions & 1 deletion Source/Function/Document.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export default (async (...[File]: Parameters<Interface>) => {
await Exec(
[
"typedoc",
// TODO: FIX THIS
`--gitRemote ${_Error ? "origin" : Remote}`,
"--commentStyle all",
`--customCss ${(await import("path")).resolve(
Expand Down
10 changes: 5 additions & 5 deletions Stylesheet/Theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
--dark-color-background-secondary: #000;
--dark-code-background: #040404;
--color-accent: #2463eb;
--light-hl-0: #ffdd00;
--light-hl-1: #ff66ff;
--light-hl-2: #ff4444;
--light-hl-3: #44ffff;
--light-hl-4: #44ff44;
--light-hl-0: #b58900;
--light-hl-1: #d33682;
--light-hl-2: #dc322f;
--light-hl-3: #2aa198;
--light-hl-4: #859900;
--dark-hl-0: #ffdd00;
--dark-hl-1: #ff66ff;
--dark-hl-2: #ff4444;
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.12").description("\u{1F4C3}\u2001Document\u2001\u2014").argument("<File...>","\u{1F4DD}\u2001File\u2001\u2014").action((await import("../Function/Document.js")).default).parse();export{e as default};
var e=new(await import("commander")).Command().name("Document").version("0.1.0").description("\u{1F4C3}\u2001Document\u2001\u2014").argument("<File...>","\u{1F4DD}\u2001File\u2001\u2014").action((await import("../Function/Document.js")).default).parse();export{e as default};
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playform/document",
"version": "0.0.12",
"version": "0.1.0",
"private": false,
"description": "📃 Document —",
"keywords": [
Expand Down Expand Up @@ -46,10 +46,10 @@
"typedoc-plugin-zod": "1.2.0"
},
"devDependencies": {
"@playform/build": "0.1.1"
"@playform/build": "0.1.2"
},
"publishConfig": {
"provenance": true,
"access": "public"
"access": "public",
"provenance": true
}
}

0 comments on commit b2581c3

Please sign in to comment.