extension-develop 2.0.4 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,6 +8,8 @@ export interface InstanceInfo {
8
8
  extensionId?: string;
9
9
  managerExtensionId: string;
10
10
  profilePath: string;
11
+ debugPort?: number;
12
+ effectiveProfilePath?: string;
11
13
  projectPath: string;
12
14
  startTime: number;
13
15
  status: 'running' | 'terminated' | 'error';
@@ -158,4 +158,7 @@ export declare function runningInDevelopment(manifest: any, browser: any, messag
158
158
  data?: any;
159
159
  }): string;
160
160
  export declare function emptyLine(): string;
161
+ export declare function devChromiumDebugPort(finalPort: number, requestedPort: number): string;
162
+ export declare function devFirefoxDebugPort(finalPort: number, requestedPort: number): string;
163
+ export declare function devFirefoxProfilePath(profilePath: string): string;
161
164
  export {};
package/package.json CHANGED
@@ -21,7 +21,7 @@
21
21
  "dist"
22
22
  ],
23
23
  "name": "extension-develop",
24
- "version": "2.0.4",
24
+ "version": "2.1.0",
25
25
  "description": "The develop step of Extension.js",
26
26
  "author": {
27
27
  "name": "Cezar Augusto",