diff --git a/.github/workflows/schemas.yml b/.github/workflows/schemas.yml index 44cce52..f9917f4 100644 --- a/.github/workflows/schemas.yml +++ b/.github/workflows/schemas.yml @@ -12,8 +12,7 @@ jobs: - uses: folke/github/neovim@main - uses: actions/checkout@v4 - name: Build - run: | - nvim --cmd "set rtp^=." -l "lua/neoconf/build/init.lua" + run: ./scripts/build - name: Push changes uses: stefanzweifel/git-auto-commit-action@v5 with: diff --git a/.gitignore b/.gitignore index 61ab828..771c835 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,9 @@ *.log -.repro -.tests -build -debug -doc/tags +/.repro +/.tests +/build +/debug +/doc/tags foo.* node_modules tt.* diff --git a/README.md b/README.md index cd69280..40b65b4 100644 --- a/README.md +++ b/README.md @@ -274,7 +274,7 @@ local my_settings = Neoconf.get("neodev", defaults) - [x] [tailwindcss](https://github.com/tailwindlabs/tailwindcss-intellisense/tree/master/packages/vscode-tailwindcss/package.json) - [x] [terraformls](https://github.com/hashicorp/vscode-terraform/tree/master/package.json) - [x] [tsserver](https://github.com/microsoft/vscode/tree/main/extensions/typescript-language-features/package.json) -- [x] [volar](https://github.com/vuejs/language-tools/tree/master/packages/vscode-vue/package.json) +- [x] [volar](https://github.com/vuejs/language-tools/tree/master/extensions/vscode/package.json) - [x] [vtsls](https://github.com/yioneko/vtsls/tree/main/packages/service/configuration.schema.json) - [x] [vuels](https://github.com/vuejs/vetur/tree/master/package.json) - [x] [wgls_analyzer](https://github.com/wgsl-analyzer/wgsl-analyzer/tree/main/editors/code/package.json) diff --git a/scripts/build b/scripts/build new file mode 100755 index 0000000..2a300ef --- /dev/null +++ b/scripts/build @@ -0,0 +1,3 @@ +#!/bin/env bash + +nvim --cmd "set rtp^=." -l "lua/neoconf/build/init.lua"