From fca1296ef0e405f7b705a7c285686c08b61b323c Mon Sep 17 00:00:00 2001 From: Andrew den Hertog Date: Wed, 4 Sep 2024 15:30:11 -0400 Subject: [PATCH] cleanup Signed-off-by: Andrew den Hertog --- .github/workflows/release.yaml | 3 +-- .project/complete_drafts.txt | 0 files/project.dictionary | 1 - package.json | 2 +- webviews/codex-webviews/package.json | 6 +++--- 5 files changed, 5 insertions(+), 7 deletions(-) delete mode 100644 .project/complete_drafts.txt delete mode 100644 files/project.dictionary diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f050e6d1..d195ad90 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,7 +3,6 @@ name: Release on: push: branches: - - feat/ci - main jobs: @@ -34,4 +33,4 @@ jobs: - name: Publish to OpenVSX run: | - npx ovsx publish --no-dependencies -p ${{ secrets.OPENVSX_TOKEN }} \ No newline at end of file + npx ovsx publish --no-dependencies -p ${{ secrets.OPENVSX_TOKEN }} diff --git a/.project/complete_drafts.txt b/.project/complete_drafts.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/files/project.dictionary b/files/project.dictionary deleted file mode 100644 index ea5f75f1..00000000 --- a/files/project.dictionary +++ /dev/null @@ -1 +0,0 @@ -{"entries":[]} \ No newline at end of file diff --git a/package.json b/package.json index b37f93af..dfd004f6 100644 --- a/package.json +++ b/package.json @@ -681,7 +681,7 @@ ] }, "scripts": { - "vscode:prepublish": "npm run build:webviews && npm run compile", + "vscode:prepublish": "npm run build:ci && npm run compile", "compile": "webpack", "watch": "webpack --watch", "package": "webpack --mode production --devtool hidden-source-map", diff --git a/webviews/codex-webviews/package.json b/webviews/codex-webviews/package.json index e0a8a108..a338519e 100644 --- a/webviews/codex-webviews/package.json +++ b/webviews/codex-webviews/package.json @@ -5,9 +5,9 @@ "type": "module", "scripts": { "dev": "vite", - "build:ParallelView": "npx cross-env APP_NAME=ParallelView vite build", - "build:SemanticView": "npx cross-env APP_NAME=SemanticView vite build", - "build:TranslationNotesView": "npx cross-env APP_NAME=TranslationNotesView vite build", + "build:ParallelView": "cross-env APP_NAME=ParallelView vite build", + "build:SemanticView": "cross-env APP_NAME=SemanticView vite build", + "build:TranslationNotesView": "cross-env APP_NAME=TranslationNotesView vite build", "build:all": "npm run build:ParallelView && npm run build:TranslationNotesView && npm run build:SemanticView", "watch": "nodemon --watch src --ext ts,tsx --exec npm run build:all", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",