Skip to content

Commit

Permalink
fix(move-analyzer): change the publisher name (#4294)
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriyr authored Nov 29, 2024
1 parent 42fbfb2 commit d26dc3c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "iota-move",
"displayName": "IOTA Move",
"description": "A Move language integrated development environment for IOTA.",
"publisher": "iota-foundation",
"publisher": "iotaledger",
"icon": "images/move.png",
"license": "Apache-2.0",
"version": "1.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import * as vscode from 'vscode';
/** Information related to this extension itself, such as its identifier and version. */
export class Extension {
/** The string used to uniquely identify this particular extension to VS Code. */
readonly identifier = 'iota-foundation.iota-move';
readonly identifier = 'iotaledger.iota-move';

private readonly extension: vscode.Extension<unknown>;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import * as vscode from 'vscode';

Mocha.suite('ext', () => {
Mocha.test('ext_exists', () => {
const ext = vscode.extensions.getExtension('iota-foundation.iota-move');
const ext = vscode.extensions.getExtension('iotaledger.iota-move');
assert.ok(ext);
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const PRIMITIVE_TYPES = ['u8', 'u16', 'u32', 'u64', 'u128', 'u256', 'bool', 'vec

Mocha.suite('LSP', () => {
Mocha.test('textDocument/documentSymbol', async () => {
const ext = vscode.extensions.getExtension('iota-foundation.iota-move');
const ext = vscode.extensions.getExtension('iotaledger.iota-move');
assert.ok(ext);

await ext.activate(); // Synchronous waiting for activation to complete
Expand Down Expand Up @@ -69,7 +69,7 @@ Mocha.suite('LSP', () => {
});

Mocha.test('textDocument/hover for definition in the same module', async () => {
const ext = vscode.extensions.getExtension('iota-foundation.iota-move');
const ext = vscode.extensions.getExtension('iotaledger.iota-move');
assert.ok(ext);

await ext.activate(); // Synchronous waiting for activation to complete
Expand Down Expand Up @@ -108,7 +108,7 @@ Mocha.suite('LSP', () => {
});

Mocha.test('textDocument/hover for definition in an external module', async () => {
const ext = vscode.extensions.getExtension('iota-foundation.iota-move');
const ext = vscode.extensions.getExtension('iotaledger.iota-move');
assert.ok(ext);

await ext.activate(); // Synchronous waiting for activation to complete
Expand Down Expand Up @@ -147,7 +147,7 @@ Mocha.suite('LSP', () => {
});

Mocha.test('textDocument/completion', async () => {
const ext = vscode.extensions.getExtension('iota-foundation.iota-move');
const ext = vscode.extensions.getExtension('iotaledger.iota-move');
assert.ok(ext);

await ext.activate(); // Synchronous waiting for activation to complete
Expand Down

0 comments on commit d26dc3c

Please sign in to comment.