Skip to content

Commit

Permalink
Merge pull request #30 from kfwerf/fix-publish
Browse files Browse the repository at this point in the history
Fix case sensitive imports
  • Loading branch information
kfwerf authored Jun 12, 2021
2 parents f394bfc + e50da6c commit 12f0f62
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 9 deletions.
3 changes: 0 additions & 3 deletions src/app/containers/SettingsContainer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import React from "react";
import CommandCopier from "../components/GrpcurlRequest";
import Button from "../components/Photon/Button/Button";
import Send from "../components/Request/Send";

export default function SettingsContainer() {

Expand Down
2 changes: 1 addition & 1 deletion src/cli/grpcurl.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
import cmd from 'node-cmd'; // untyped
import GrpCurlResponse from '../models/grpcurlresponse';
import GrpCurlResponse from '../models/GrpCurlResponse';
import { bodyParams, emptyParams, defaultCommand } from "../models/GrpCurlCommand";
import GrpCurlCommand from "../models/GrpCurlCommand";

Expand Down
2 changes: 1 addition & 1 deletion src/deserialization/message.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import GrpCurlResponse from '../models/grpcurlresponse';
import GrpCurlResponse from '../models/GrpCurlResponse';
import { matchSafe } from '../utils/string';
import {getTypeNames} from "../utils/extract";
import {dedupe} from "../utils/list";
Expand Down
2 changes: 1 addition & 1 deletion src/deserialization/rpc.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import GrpCurlResponse from '../models/grpcurlresponse';
import GrpCurlResponse from '../models/GrpCurlResponse';
import { matchSafe } from '../utils/string';

export const getRpcList = (response: GrpCurlResponse): RegExpMatchArray => matchSafe(response.getData(), /rpc .+/gm);
Expand Down
2 changes: 1 addition & 1 deletion src/deserialization/service.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import GrpCurlResponse from '../models/grpcurlresponse';
import GrpCurlResponse from '../models/GrpCurlResponse';
import { matchSafe } from '../utils/string';

export const toServiceList = (response: GrpCurlResponse): string[] => {
Expand Down
2 changes: 1 addition & 1 deletion src/models/GrpcMessage.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import GrpCurlResponse from './grpcurlresponse';
import GrpCurlResponse from './GrpCurlResponse';

import GrpcMessageProperty from './GrpcMessageProperty';
import {
Expand Down
2 changes: 1 addition & 1 deletion src/models/GrpcService.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import GrpCurlResponse from './grpcurlresponse';
import GrpCurlResponse from './GrpCurlResponse';
import GrpcRpc from './GrpcRpc';
import {getName, getServicePath} from '../deserialization/service';
import { getRpcList } from '../deserialization/rpc';
Expand Down

0 comments on commit 12f0f62

Please sign in to comment.