Skip to content

Commit 4a1d63e

Browse files
committed
build: build and publish monaco and lsp
1 parent 3833f8e commit 4a1d63e

6 files changed

Lines changed: 10 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ jobs:
4040
- run: npm ci
4141
- run: npm run build-web
4242
- run: npm run test-web
43+
- run: npm run build-language-server
44+
- run: npm run build-monaco
4345
id: test
4446
- uses: actions/upload-artifact@v5
4547
if: ${{ failure() && steps.test.conclusion == 'failure' }}

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ jobs:
3737
- run: npm run update-version -- alpha ${{github.run_number}}
3838
- run: npm ci
3939
- run: npm run build-web
40+
- run: npm run build-language-server
41+
- run: npm run build-monaco
4042
- run: npm pack
4143
working-directory: ./packages/alphatab/
4244
- run: npm pack

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
- run: npm run update-version -- ${{github.run_number}}
2020
- run: npm ci
2121
- run: npm run build-web
22+
- run: npm run build-language-server
23+
- run: npm run build-monaco
2224
- run: npm pack
2325
working-directory: ./packages/alphatab/
2426
- run: npm pack

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@
3838
"test-vite": "npm run test --workspace=packages/vite",
3939

4040
"build-webpack": "npm run build --workspace=packages/webpack",
41-
"test-webpack": "npm run test --workspace=packages/webpack"
41+
"test-webpack": "npm run test --workspace=packages/webpack",
42+
43+
"build-monaco": "npm run build --workspace=packages/monaco"
44+
4245
},
4346
"devDependencies": {
4447
"concurrently": "^9.2.1"

packages/lsp/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "@coderline/alphatab-language-server",
33
"version": "1.7.0",
4-
"private": true,
54
"description": "A language server for alphaTab providing coding assistance for alphaTex.",
65
"keywords": [
76
"guitar",

packages/monaco/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "@coderline/alphatab-monaco",
33
"version": "1.7.0",
4-
"private": true,
54
"description": "A Monaco editor integration for alphaTab providing coding assistance for alphaTex.",
65
"keywords": [
76
"guitar",

0 commit comments

Comments
 (0)