From 6255b6498b99c1bd9b591338b8e2d86502f9f2d3 Mon Sep 17 00:00:00 2001 From: Damir Shamanaev Date: Tue, 26 Nov 2024 23:16:54 +0400 Subject: [PATCH] [formatter] Update publisher name (#20399) ## Description Describe the changes or additions included in this PR. ## Test plan How did you test the new or updated feature? --- ## Release notes Check each box that your changes affect. If none of the boxes relate to your changes, release notes aren't required. For each box you select, include information after the relevant heading that describes the impact of your changes that a user might notice and any actions they must take to implement updates. - [ ] Protocol: - [ ] Nodes (Validators and Full nodes): - [ ] Indexer: - [ ] JSON-RPC: - [ ] GraphQL: - [ ] CLI: - [ ] Rust SDK: - [ ] REST API: --- .../move/tooling/prettier-extension/package.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/external-crates/move/tooling/prettier-extension/package.json b/external-crates/move/tooling/prettier-extension/package.json index 0466fcc02d86d..6bb123cfebd79 100644 --- a/external-crates/move/tooling/prettier-extension/package.json +++ b/external-crates/move/tooling/prettier-extension/package.json @@ -1,6 +1,6 @@ { "name": "prettier-move", - "publisher": "MystenLabs", + "publisher": "mysten", "displayName": "Move Formatter Developer Preview", "description": "Adds Move code formatting to VSCode using Prettier@v3", "version": "0.1.0", @@ -8,6 +8,8 @@ "preview": true, "icon": "img/move.png", "license": "Apache-2.0", + "browser": "./src/extension.js", + "main": "./src/extension.js", "repository": { "type": "git", "url": "https://github.com/MystenLabs/sui.git", @@ -64,11 +66,10 @@ }, "configurationDefaults": { "[move]": { - "editor.defaultFormatter": "MystenLabs.prettier-move" + "editor.defaultFormatter": "mysten.prettier-move" } } }, - "main": "./src/extension.js", "scripts": { "package": "vsce package", "lint": "pnpm run eslint:check && pnpm run prettier:check",