Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Oct 3, 2023
1 parent 5863739 commit e22a6b4
Show file tree
Hide file tree
Showing 33 changed files with 4,238 additions and 0 deletions.
743 changes: 743 additions & 0 deletions Documentation/Class/Theme.Theme.html

Large diffs are not rendered by default.

82 changes: 82 additions & 0 deletions Documentation/Function/Build.Build.html

Large diffs are not rendered by default.

77 changes: 77 additions & 0 deletions Documentation/Function/Build.Exec.html

Large diffs are not rendered by default.

71 changes: 71 additions & 0 deletions Documentation/Function/Build.deepmerge.html

Large diffs are not rendered by default.

73 changes: 73 additions & 0 deletions Documentation/Function/Build.resolve.html

Large diffs are not rendered by default.

77 changes: 77 additions & 0 deletions Documentation/Function/Exec.Exec.html

Large diffs are not rendered by default.

63 changes: 63 additions & 0 deletions Documentation/Function/File.File.html

Large diffs are not rendered by default.

76 changes: 76 additions & 0 deletions Documentation/Function/JSON.JSON.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions Documentation/Function/Load.load.html

Large diffs are not rendered by default.

86 changes: 86 additions & 0 deletions Documentation/Interface/Build.Type.html

Large diffs are not rendered by default.

81 changes: 81 additions & 0 deletions Documentation/Interface/Exec.Type.html

Large diffs are not rendered by default.

67 changes: 67 additions & 0 deletions Documentation/Interface/File.Type.html

Large diffs are not rendered by default.

80 changes: 80 additions & 0 deletions Documentation/Interface/JSON.Type.html

Large diffs are not rendered by default.

71 changes: 71 additions & 0 deletions Documentation/Interface/Load.Type.html

Large diffs are not rendered by default.

88 changes: 88 additions & 0 deletions Documentation/Interface/Mapping.Type.html

Large diffs are not rendered by default.

124 changes: 124 additions & 0 deletions Documentation/Interface/Theme.Type.html

Large diffs are not rendered by default.

68 changes: 68 additions & 0 deletions Documentation/Module/Build.html

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions Documentation/Module/ESBuild.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions Documentation/Module/Exec.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions Documentation/Module/File.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions Documentation/Module/JSON.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions Documentation/Module/Load.html

Large diffs are not rendered by default.

61 changes: 61 additions & 0 deletions Documentation/Module/Mapping.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions Documentation/Module/Theme.html

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions Documentation/Module/TypeScriptESBuild.html

Large diffs are not rendered by default.

51 changes: 51 additions & 0 deletions Documentation/Variable/Build.Current.html

Large diffs are not rendered by default.

51 changes: 51 additions & 0 deletions Documentation/Variable/Build.Pipe.html

Large diffs are not rendered by default.

51 changes: 51 additions & 0 deletions Documentation/Variable/ESBuild.ESBuild.html

Large diffs are not rendered by default.

51 changes: 51 additions & 0 deletions Documentation/Variable/TypeScriptESBuild.TypeScriptESBuild.html

Large diffs are not rendered by default.

57 changes: 57 additions & 0 deletions Documentation/assets/highlight.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
:root {
--light-hl-0: #795E26;
--dark-hl-0: #DCDCAA;
--light-hl-1: #000000;
--dark-hl-1: #D4D4D4;
--light-hl-2: #A31515;
--dark-hl-2: #CE9178;
--light-hl-3: #0000FF;
--dark-hl-3: #569CD6;
--light-hl-4: #0451A5;
--dark-hl-4: #9CDCFE;
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
}

@media (prefers-color-scheme: light) { :root {
--hl-0: var(--light-hl-0);
--hl-1: var(--light-hl-1);
--hl-2: var(--light-hl-2);
--hl-3: var(--light-hl-3);
--hl-4: var(--light-hl-4);
--code-background: var(--light-code-background);
} }

@media (prefers-color-scheme: dark) { :root {
--hl-0: var(--dark-hl-0);
--hl-1: var(--dark-hl-1);
--hl-2: var(--dark-hl-2);
--hl-3: var(--dark-hl-3);
--hl-4: var(--dark-hl-4);
--code-background: var(--dark-code-background);
} }

:root[data-theme='light'] {
--hl-0: var(--light-hl-0);
--hl-1: var(--light-hl-1);
--hl-2: var(--light-hl-2);
--hl-3: var(--light-hl-3);
--hl-4: var(--light-hl-4);
--code-background: var(--light-code-background);
}

:root[data-theme='dark'] {
--hl-0: var(--dark-hl-0);
--hl-1: var(--dark-hl-1);
--hl-2: var(--dark-hl-2);
--hl-3: var(--dark-hl-3);
--hl-4: var(--dark-hl-4);
--code-background: var(--dark-code-background);
}

.hl-0 { color: var(--hl-0); }
.hl-1 { color: var(--hl-1); }
.hl-2 { color: var(--hl-2); }
.hl-3 { color: var(--hl-3); }
.hl-4 { color: var(--hl-4); }
pre, code { background: var(--code-background); }
59 changes: 59 additions & 0 deletions Documentation/assets/main.js

Large diffs are not rendered by default.

Loading

0 comments on commit e22a6b4

Please sign in to comment.