Skip to content

Commit

Permalink
codegen, etc..
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-cho committed Aug 21, 2024
1 parent 4b3646e commit ebc1367
Show file tree
Hide file tree
Showing 109 changed files with 13,252 additions and 323 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ jobs:

# - run: pnpm dlx vsce publish --pat ${{ secrets.VSCE_TOKEN }} --packagePath ../../dist/vscode-fluent-bit-*.vsix
# working-directory: clients/vscode
- run: pnpm dlx vsce ls --packagePath ../../dist/vscode-fluent-bit-*.vsix
working-directory: clients/vscode
# - run: pnpm dlx vsce ls --packagePath ../../dist/vscode-fluent-bit-*.vsix
# working-directory: clients/vscode

# TODO: ovsx
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ web_modules/
.next
out

# Nuxt.js build / generate output
# Nuxt.js build / Generate output
.nuxt
dist

Expand Down Expand Up @@ -284,7 +284,7 @@ dist

# Optional stylelint cache

# SvelteKit build / generate output
# SvelteKit build / Generate output
.svelte-kit

### VisualStudioCode ###
Expand Down
1 change: 1 addition & 0 deletions .idea/fluent-bit-lsp.iml

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

77 changes: 67 additions & 10 deletions Cargo.lock

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

8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
members = [
"fluent-bit-language-server", "ide-completion",
"flb-schema",
"fluent-bit-language-server",
"xtask",
]
resolver = "2"
Expand All @@ -12,3 +13,8 @@ license = "MIT OR Apache-2.0"

[workspace.dependencies]
anyhow = "1.0.86"
convert_case = "0.6.0"
serde = { version = "1.0.208", features = ["derive"] }
serde_json = "1.0.125"
xshell = "0.2.6"
flb-schema = { path = "flb-schema", version = "0.0.0" }
14 changes: 14 additions & 0 deletions flb-schema/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
name = "flb-schema"
version = "0.0.0"
publish = false

edition.workspace = true
license.workspace = true
rust-version.workspace = true

[dependencies]
anyhow.workspace = true
serde.workspace = true
serde_json.workspace = true
lazy-regex = "3.2.0"
Loading

0 comments on commit ebc1367

Please sign in to comment.