File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import { createMultiStepInput } from '../utils/createMultiStepInput';
1212 * @param path 相対/絶対パス
1313 * @return ファイル名
1414 */
15- const getFilenameFromPath = ( path : string ) => {
15+ export const getFilenameFromPath = ( path : string ) => {
1616 const splitPath = path . split ( '/' ) ;
1717 return splitPath [ splitPath . length - 1 ] . split ( '.' ) [ 0 ] ;
1818} ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { window } from 'vscode';
44import { client } from '../client' ;
55import { makeQuickPickItemFromTag , tagQuickPickCreator } from '../quickpicks/tagQuickPickCreator' ;
66
7- const updater = async ( item : Item , selectedItems : ReadonlyArray < QuickPickItem > ) => {
7+ export const updater = async ( item : Item , selectedItems : ReadonlyArray < QuickPickItem > ) => {
88 const taggings = selectedItems . map ( ( item ) => ( {
99 name : item . label ,
1010 versions : [ ] ,
You can’t perform that action at this time.
0 commit comments