Parcourir la source

fix: @growi/slack. add: ./util/block-creater in index.ts

zahmis il y a 5 ans
Parent
commit
4a774c0fe0

+ 1 - 0
packages/slack/src/index.ts

@@ -10,3 +10,4 @@ export const supportedGrowiCommands: string[] = [
 export * from './interfaces/growi-command';
 export * from './interfaces/growi-command';
 export * from './models/errors';
 export * from './models/errors';
 export * from './utils/slash-command-parser';
 export * from './utils/slash-command-parser';
+export * from './utils/block-creater';

+ 1 - 1
packages/slackbot-proxy/src/services/RegisterService.ts

@@ -1,6 +1,6 @@
 import { Service } from '@tsed/di';
 import { Service } from '@tsed/di';
 import { WebClient, LogLevel } from '@slack/web-api';
 import { WebClient, LogLevel } from '@slack/web-api';
-import { generateInputSectionBlock } from '@growi/slack/src/utils/block-creater';
+import { generateInputSectionBlock } from '@growi/slack';
 import { GrowiCommandsMappings } from '../interfaces/growi-commands-mappings';
 import { GrowiCommandsMappings } from '../interfaces/growi-commands-mappings';
 
 
 @Service()
 @Service()