Skip to content

Commit

Permalink
add relative paths for webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
Julienblc committed Feb 21, 2022
1 parent fc054e0 commit 00889b0
Show file tree
Hide file tree
Showing 14 changed files with 497 additions and 1,340 deletions.
12 changes: 6 additions & 6 deletions build/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/index.js.map

Large diffs are not rendered by default.

13 changes: 0 additions & 13 deletions build/types/controller/Pipedrive/ReachCounter/ReachCounter.d.ts

This file was deleted.

2 changes: 1 addition & 1 deletion build/types/core/controller/TamperController.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import TamperRequest from '../router/TamperRequest';
import TamperRequest from 'core/router/TamperRequest';
declare abstract class TamperController {
constructor();
abstract run(request: TamperRequest): void;
Expand Down
4 changes: 2 additions & 2 deletions build/types/core/router/TamperRouter.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import TamperController from '../controller/TamperController';
import TamperRequest from './TamperRequest';
import TamperController from 'core/controller/TamperController';
import TamperRequest from 'core/router/TamperRequest';
declare type TamperControllers = {
[key: string]: TamperController;
};
Expand Down
2 changes: 1 addition & 1 deletion build/types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import TamperRouter from './core/router/TamperRouter';
import TamperRouter from 'core/router/TamperRouter';
declare class App {
router: TamperRouter;
constructor();
Expand Down
Loading

0 comments on commit 00889b0

Please sign in to comment.