diff --git a/settings.gradle.kts b/settings.gradle.kts index cccdfd0..ee5bef2 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -13,7 +13,7 @@ include( "oxsts.model", "oxsts.lang", "oxsts.lang.ide", - "oxsts-vs-code", + "semantifyr-vscode", ) rootProject.children.forEach { project -> diff --git a/subprojects/oxsts-vs-code/.gitignore b/subprojects/semantifyr-vscode/.gitignore similarity index 89% rename from subprojects/oxsts-vs-code/.gitignore rename to subprojects/semantifyr-vscode/.gitignore index afbb6f3..f264b44 100644 --- a/subprojects/oxsts-vs-code/.gitignore +++ b/subprojects/semantifyr-vscode/.gitignore @@ -2,6 +2,7 @@ # # SPDX-License-Identifier: EPL-2.0 +/.vscode-test/ /node_modules/ /dist/ /bin/ diff --git a/subprojects/oxsts-vs-code/.vscode-test.mjs b/subprojects/semantifyr-vscode/.vscode-test.mjs similarity index 100% rename from subprojects/oxsts-vs-code/.vscode-test.mjs rename to subprojects/semantifyr-vscode/.vscode-test.mjs diff --git a/subprojects/oxsts-vs-code/.vscode/extensions.json b/subprojects/semantifyr-vscode/.vscode/extensions.json similarity index 100% rename from subprojects/oxsts-vs-code/.vscode/extensions.json rename to subprojects/semantifyr-vscode/.vscode/extensions.json diff --git a/subprojects/oxsts-vs-code/.vscode/extensions.json.license b/subprojects/semantifyr-vscode/.vscode/extensions.json.license similarity index 100% rename from subprojects/oxsts-vs-code/.vscode/extensions.json.license rename to subprojects/semantifyr-vscode/.vscode/extensions.json.license diff --git a/subprojects/oxsts-vs-code/.vscode/launch.json b/subprojects/semantifyr-vscode/.vscode/launch.json similarity index 100% rename from subprojects/oxsts-vs-code/.vscode/launch.json rename to subprojects/semantifyr-vscode/.vscode/launch.json diff --git a/subprojects/oxsts-vs-code/.vscode/launch.json.license b/subprojects/semantifyr-vscode/.vscode/launch.json.license similarity index 100% rename from subprojects/oxsts-vs-code/.vscode/launch.json.license rename to subprojects/semantifyr-vscode/.vscode/launch.json.license diff --git a/subprojects/oxsts-vs-code/.vscode/settings.json b/subprojects/semantifyr-vscode/.vscode/settings.json similarity index 100% rename from subprojects/oxsts-vs-code/.vscode/settings.json rename to subprojects/semantifyr-vscode/.vscode/settings.json diff --git a/subprojects/oxsts-vs-code/.vscode/settings.json.license b/subprojects/semantifyr-vscode/.vscode/settings.json.license similarity index 100% rename from subprojects/oxsts-vs-code/.vscode/settings.json.license rename to subprojects/semantifyr-vscode/.vscode/settings.json.license diff --git a/subprojects/oxsts-vs-code/.vscode/tasks.json b/subprojects/semantifyr-vscode/.vscode/tasks.json similarity index 100% rename from subprojects/oxsts-vs-code/.vscode/tasks.json rename to subprojects/semantifyr-vscode/.vscode/tasks.json diff --git a/subprojects/oxsts-vs-code/.vscode/tasks.json.license b/subprojects/semantifyr-vscode/.vscode/tasks.json.license similarity index 100% rename from subprojects/oxsts-vs-code/.vscode/tasks.json.license rename to subprojects/semantifyr-vscode/.vscode/tasks.json.license diff --git a/subprojects/oxsts-vs-code/.vscodeignore b/subprojects/semantifyr-vscode/.vscodeignore similarity index 100% rename from subprojects/oxsts-vs-code/.vscodeignore rename to subprojects/semantifyr-vscode/.vscodeignore diff --git a/subprojects/oxsts-vs-code/build.gradle.kts b/subprojects/semantifyr-vscode/build.gradle.kts similarity index 100% rename from subprojects/oxsts-vs-code/build.gradle.kts rename to subprojects/semantifyr-vscode/build.gradle.kts diff --git a/subprojects/oxsts-vs-code/esbuild.js b/subprojects/semantifyr-vscode/esbuild.js similarity index 100% rename from subprojects/oxsts-vs-code/esbuild.js rename to subprojects/semantifyr-vscode/esbuild.js diff --git a/subprojects/oxsts-vs-code/eslint.config.mjs b/subprojects/semantifyr-vscode/eslint.config.mjs similarity index 100% rename from subprojects/oxsts-vs-code/eslint.config.mjs rename to subprojects/semantifyr-vscode/eslint.config.mjs diff --git a/subprojects/oxsts-vs-code/language-configuration.json b/subprojects/semantifyr-vscode/language-configuration.json similarity index 100% rename from subprojects/oxsts-vs-code/language-configuration.json rename to subprojects/semantifyr-vscode/language-configuration.json diff --git a/subprojects/oxsts-vs-code/language-configuration.json.license b/subprojects/semantifyr-vscode/language-configuration.json.license similarity index 100% rename from subprojects/oxsts-vs-code/language-configuration.json.license rename to subprojects/semantifyr-vscode/language-configuration.json.license diff --git a/subprojects/oxsts-vs-code/package-lock.json b/subprojects/semantifyr-vscode/package-lock.json similarity index 100% rename from subprojects/oxsts-vs-code/package-lock.json rename to subprojects/semantifyr-vscode/package-lock.json diff --git a/subprojects/oxsts-vs-code/package-lock.json.license b/subprojects/semantifyr-vscode/package-lock.json.license similarity index 100% rename from subprojects/oxsts-vs-code/package-lock.json.license rename to subprojects/semantifyr-vscode/package-lock.json.license diff --git a/subprojects/oxsts-vs-code/package.json b/subprojects/semantifyr-vscode/package.json similarity index 94% rename from subprojects/oxsts-vs-code/package.json rename to subprojects/semantifyr-vscode/package.json index d6b2610..a06cfda 100644 --- a/subprojects/oxsts-vs-code/package.json +++ b/subprojects/semantifyr-vscode/package.json @@ -1,7 +1,7 @@ { "name": "semantifyr", - "displayName": "Semantifyr", - "description": "OXSTS language support for VS Code", + "displayName": "Semantifyr VS Code", + "description": "VS Code integration for the Semantifyr tool", "version": "0.0.1", "engines": { "vscode": "^1.93.0" diff --git a/subprojects/oxsts-vs-code/package.json.license b/subprojects/semantifyr-vscode/package.json.license similarity index 100% rename from subprojects/oxsts-vs-code/package.json.license rename to subprojects/semantifyr-vscode/package.json.license diff --git a/subprojects/oxsts-vs-code/src/extension.ts b/subprojects/semantifyr-vscode/src/extension.ts similarity index 100% rename from subprojects/oxsts-vs-code/src/extension.ts rename to subprojects/semantifyr-vscode/src/extension.ts diff --git a/subprojects/oxsts-vs-code/src/test/extension.test.ts b/subprojects/semantifyr-vscode/src/test/extension.test.ts similarity index 100% rename from subprojects/oxsts-vs-code/src/test/extension.test.ts rename to subprojects/semantifyr-vscode/src/test/extension.test.ts diff --git a/subprojects/oxsts-vs-code/syntaxes/oxsts.tmLanguage.json b/subprojects/semantifyr-vscode/syntaxes/oxsts.tmLanguage.json similarity index 100% rename from subprojects/oxsts-vs-code/syntaxes/oxsts.tmLanguage.json rename to subprojects/semantifyr-vscode/syntaxes/oxsts.tmLanguage.json diff --git a/subprojects/oxsts-vs-code/syntaxes/oxsts.tmLanguage.json.license b/subprojects/semantifyr-vscode/syntaxes/oxsts.tmLanguage.json.license similarity index 100% rename from subprojects/oxsts-vs-code/syntaxes/oxsts.tmLanguage.json.license rename to subprojects/semantifyr-vscode/syntaxes/oxsts.tmLanguage.json.license diff --git a/subprojects/oxsts-vs-code/syntaxes/xsts.tmLanguage.json b/subprojects/semantifyr-vscode/syntaxes/xsts.tmLanguage.json similarity index 100% rename from subprojects/oxsts-vs-code/syntaxes/xsts.tmLanguage.json rename to subprojects/semantifyr-vscode/syntaxes/xsts.tmLanguage.json diff --git a/subprojects/oxsts-vs-code/syntaxes/xsts.tmLanguage.json.license b/subprojects/semantifyr-vscode/syntaxes/xsts.tmLanguage.json.license similarity index 100% rename from subprojects/oxsts-vs-code/syntaxes/xsts.tmLanguage.json.license rename to subprojects/semantifyr-vscode/syntaxes/xsts.tmLanguage.json.license diff --git a/subprojects/oxsts-vs-code/tsconfig.json b/subprojects/semantifyr-vscode/tsconfig.json similarity index 100% rename from subprojects/oxsts-vs-code/tsconfig.json rename to subprojects/semantifyr-vscode/tsconfig.json diff --git a/subprojects/oxsts-vs-code/tsconfig.json.license b/subprojects/semantifyr-vscode/tsconfig.json.license similarity index 100% rename from subprojects/oxsts-vs-code/tsconfig.json.license rename to subprojects/semantifyr-vscode/tsconfig.json.license