Skip to content

Commit 9b91a80

Browse files
committed
chore: left overs for renaming with -assitant suffix
1 parent 6aa1600 commit 9b91a80

File tree

16 files changed

+32
-32
lines changed

16 files changed

+32
-32
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
- run: yarn
1010
- run: yarn run ci
1111
- persist_to_workspace:
12-
root: "./packages/vscode-ui5-language-support"
12+
root: "./packages/vscode-ui5-ui5-language-assistant"
1313
paths:
1414
# https://golang.org/pkg/path/filepath/#Match
15-
- vscode-ui5-language-support-*
15+
- vscode-ui5-ui5-language-assistant-*
1616

1717
# TODO: only one parallel worker for CircleCI when in a private repo, uncomment this when going public
1818
# build-node12:
@@ -66,7 +66,7 @@ workflows:
6666
- build-node13:
6767
filters:
6868
tags:
69-
only: /^vscode-ui5-language-support@[0-9]+(.[0-9]+)*/
69+
only: /^vscode-ui5-language-assistant@[0-9]+(.[0-9]+)*/
7070
- deploy-npm:
7171
filters:
7272
tags:
@@ -78,6 +78,6 @@ workflows:
7878
- build-node13
7979
filters:
8080
tags:
81-
only: /^vscode-ui5-language-support@[0-9]+(.[0-9]+)*/
81+
only: /^vscode-ui5-language-assistant@[0-9]+(.[0-9]+)*/
8282
branches:
8383
ignore: /.*/

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
"name": "Launch Client",
1111
"runtimeExecutable": "${execPath}",
1212
"args": [
13-
"--extensionDevelopmentPath=${workspaceRoot}/packages/vscode-ui5-language-support"
13+
"--extensionDevelopmentPath=${workspaceRoot}/packages/vscode-ui5-ui5-language-assistant"
1414
],
1515
"outFiles": [
16-
"${workspaceRoot}/packages/vscode-ui5-language-support/lib/src/**/*.js"
16+
"${workspaceRoot}/packages/vscode-ui5-ui5-language-assistant/lib/src/**/*.js"
1717
]
1818
},
1919
{

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
"test-packages/*"
88
],
99
"nohoist": [
10-
"vscode-ui5-language-support/vscode-languageclient",
11-
"vscode-ui5-language-support/vscode-languageclient/**",
12-
"vscode-ui5-language-support/@ui5-language-assistant/language-server",
13-
"vscode-ui5-language-support/@ui5-language-assistant/language-server/**"
10+
"vscode-ui5-ui5-language-assistant/vscode-languageclient",
11+
"vscode-ui5-ui5-language-assistant/vscode-languageclient/**",
12+
"vscode-ui5-ui5-language-assistant/@ui5-language-assistant/language-server",
13+
"vscode-ui5-ui5-language-assistant/@ui5-language-assistant/language-server/**"
1414
]
1515
},
1616
"scripts": {

packages/language-server/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ This package is an LSP Server and uses [The VS Code Language Server library](htt
1111
To start the language server, first you must start the VS Code extension that runs it by launching the `Launch Client` configuration in the [`launch.json`](../../.vscode/launch.json) file from VS Code. This will open a new instance of VS Code that can be used for debugging.
1212
After the server is started, attach the debugger to the process by launching the `Attach to Server` configuration in the same [`launch.json`](../../.vscode/launch.json) file.
1313

14-
See the [`vscode-ui5-language-support` contribution guide](../vscode-ui5-language-support/CONTRIBUTING.md) for how to see the messages passed between the VS Code extension and the LSP server.
14+
See the [`vscode-ui5-ui5-language-assistant` contribution guide](../vscode-ui5-ui5-language-assistant/CONTRIBUTING.md) for how to see the messages passed between the VS Code extension and the LSP server.

packages/language-server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Instead a `SERVER_PATH` const is exported which points the the server's "main" m
3737

3838
This `SERVER_PATH` can be used by other tools to spawn the `@ui5-language-assistant/language-server` process.
3939

40-
- See [extension.ts](../vscode-ui5-language-support/src/extension.ts) in the UI5 Language Support VSCode extension.
40+
- See [extension.ts](../vscode-ui5-ui5-language-assistant/src/extension.ts) in the UI5 Language Support VSCode extension.
4141

4242
## Support
4343

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 1.0.0 (2020-03-30)
7+
8+
### Bug Fixes
9+
10+
- **vscode-ui5-ui5-language-assistant:** fix configuration name ([#15](https://github.com/sap/ui5-language-assistant/tree/master/packages/vscode-ui5-ui5-language-assistant/issues/15)) ([ef6f4b3](https://github.com/sap/ui5-language-assistant/tree/master/packages/vscode-ui5-ui5-language-assistant/commit/ef6f4b366c17d20be5482aeeb79276ae63c620bf))
11+
12+
### Features
13+
14+
- **language-server:** completion response improvements ([#16](https://github.com/sap/ui5-language-assistant/tree/master/packages/vscode-ui5-ui5-language-assistant/issues/16)) ([a17904e](https://github.com/sap/ui5-language-assistant/tree/master/packages/vscode-ui5-ui5-language-assistant/commit/a17904eac77ebc9087056a9808ab8449ad2dc38c))
15+
- add ui5 language server and client vscode extension ([18a6350](https://github.com/sap/ui5-language-assistant/tree/master/packages/vscode-ui5-ui5-language-assistant/commit/18a635087de1846bb7f21e6dc4c3833e77dd8cfc))

packages/vscode-ui5-language-support/package.json renamed to packages/vscode-ui5-language-assistant/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "vscode-ui5-language-support",
2+
"name": "vscode-ui5-language-assistant",
33
"private": true,
4-
"description": "UI5 Language Support for VSCode",
4+
"description": "UI5 Language Assistant for VSCode",
55
"version": "1.0.0",
66
"publisher": "SAPSE",
77
"license": "Apache-2.0",
@@ -28,7 +28,7 @@
2828
}
2929
}
3030
},
31-
"repository": "https://github.com/sap/ui5-language-assistant/tree/master/packages/vscode-ui5-language-support",
31+
"repository": "https://github.com/sap/ui5-language-assistant/tree/master/packages/vscode-ui5-ui5-language-assistant",
3232
"keywords": [
3333
"UI5",
3434
"OpenUI5",

packages/vscode-ui5-language-support/scripts/bundle-vsix.js renamed to packages/vscode-ui5-language-assistant/scripts/bundle-vsix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const relativeToExtRootReplacer = [
7575

7676
// Transform paths to other packages in this mono-repo so the paths will contain the symlinks in the extensions's `node_modules` dir.
7777
// - From: ...\ui5-language-assistant\packages\language-server
78-
// - To: ...\ui5-language-assistant\packages\vscode-ui5-language-support\node_modules\@ui5-language-assistant\language-server
78+
// - To: ...\ui5-language-assistant\packages\vscode-ui5-ui5-language-assistant\node_modules\@ui5-language-assistant\language-server
7979
const onlyProductiveRootNpmPackagesRelativeToRoot = map(
8080
onlyProductiveRootNpmPackages,
8181
_ => {

packages/vscode-ui5-language-support/CHANGELOG.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"path": "./packages/semantic-model-types"
1414
},
1515
{
16-
"path": "./packages/vscode-ui5-language-support"
16+
"path": "./packages/vscode-ui5-ui5-language-assistant"
1717
},
1818
{
1919
"path": "./packages/xml-views-completion"

0 commit comments

Comments
 (0)