Skip to content

Commit

Permalink
one folder (#6)
Browse files Browse the repository at this point in the history
* one folder

* fix md
  • Loading branch information
lucasavila00 authored Jun 29, 2022
1 parent 31974c0 commit 730371a
Show file tree
Hide file tree
Showing 72 changed files with 1,216 additions and 2,130 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
uses: actions/checkout@v3
- name: Tests
run: |
make install
make static
make test
npm ci
npm run static
npm run test
echo "Check we are starting with clean git checkout"
if [ -n "$(git status -uno -s)" ]; then echo "git status is not clean"; false; fi
echo "Checking that it was built by building"
make md
npm run md
echo "Check that build was unnecessary"
if [ -n "$(git status -uno -s)" ]; then echo -e "!!! Unbuilt files."; false; fi
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
node_modules
dist
coverage/
node_modules/
*.exec.ts
*.exec.json
# *.exec.md
docs-ts-out/
File renamed without changes.
43 changes: 0 additions & 43 deletions Makefile

This file was deleted.

8 changes: 8 additions & 0 deletions docs-api-template/classes/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: Classes
has_children: true
permalink: /docs/api/classes
nav_order: 19
layout: default
parent: Api
---
7 changes: 7 additions & 0 deletions docs-api-template/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: Api
has_children: true
permalink: /docs/api
nav_order: 9
layout: default
---
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
18 changes: 6 additions & 12 deletions docs/api/classes/select-statement.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,19 +53,13 @@ Clickhouse specific syntax extensions.

```ts
clickhouse: {
with_: <NewSelection extends string>(
it: Record<NewSelection, SelectStatement<any, any>>
) => SelectStatement<Scope | NewSelection, Selection>;
prewhere: (
f: (
fields: Record<Scope | Selection, SafeString>
) => SafeString[] | SafeString
) => SelectStatement<Scope, Selection>;
with_: <NewSelection extends string>(it: Record<NewSelection, SelectStatement<any, any>>) =>
SelectStatement<Scope | NewSelection, Selection>
prewhere: (f: (fields: Record<Scope | Selection, SafeString>) => SafeString[] | SafeString) =>
SelectStatement<Scope, Selection>
replace: <NewSelection extends string>(
f: (
f: Record<Selection | Scope, SafeString> & NoSelectFieldsCompileError
) => ReplaceT<Selection>
) => SelectStatement<Scope, Selection | NewSelection>;
f: (f: Record<Selection | Scope, SafeString> & NoSelectFieldsCompileError) => ReplaceT<Selection>
) => SelectStatement<Scope, Selection | NewSelection>
}
```
Expand Down
4 changes: 0 additions & 4 deletions ex/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions ex/docs-api-template/classes/index.md

This file was deleted.

7 changes: 0 additions & 7 deletions ex/docs-api-template/index.md

This file was deleted.

Loading

0 comments on commit 730371a

Please sign in to comment.