extension 3.1.0-next.8 → 3.2.0-next.10

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.
package/README.md CHANGED
@@ -19,7 +19,7 @@
19
19
 
20
20
  - [Create a new extension](#create-a-new-extension) — How to create a new extension.
21
21
  - [Watch demo](#watch-demo) — See how creating a new extension works.
22
- - [Start from an example](https://github.com/extension-js/extension.js/tree/main/examples) — Start from a working baseline.
22
+ - [Start from an example](https://github.com/extension-js/examples) — Start from a working baseline.
23
23
  - [I have an extension](#i-have-an-extension) — Use only specific parts of Extension.js.
24
24
 
25
25
  Create cross-browser extensions without manual build configuration.<br />Use Extension.js to develop, build, and preview across browsers with a unified workflow.
@@ -40,13 +40,13 @@ npm run dev
40
40
 
41
41
  ## Web standards and framework support
42
42
 
43
- <!-- For a preview of extensions running these technologies, see the [templates](https://templates.extension.land) website. -->
43
+ <!-- For a preview of extensions running these technologies, see the [templates](https://templates.extension.dev) website. -->
44
44
 
45
45
  <div align="center">
46
46
 
47
47
  | <img src="https://github.com/cezaraugusto/extension.js/assets/4672033/a9e2541a-96f0-4caa-9fc9-5fc5c3e901c8" width="70"> | <img src="https://github.com/cezaraugusto/extension.js/assets/4672033/b42c5330-9e2a-4045-99c3-1f7d264dfaf4" width="70"> | <img src="https://github.com/cezaraugusto/extension.js/assets/4672033/f19edff3-9005-4f50-b05c-fba615896a7f" width="70"> | <img src="https://github.com/cezaraugusto/extension.js/assets/4672033/ff64721d-d145-4213-930d-e70193f8d57e" width="70"> | <img src="https://github.com/cezaraugusto/extension.js/assets/4672033/15f1314a-aa65-4ce2-a3f3-cf53c4f730cf" width="70"> | <img src="https://github.com/cezaraugusto/extension.js/assets/4672033/de1082fd-7cf6-4202-8c12-a5c3cd3e5b42" width="70"> | <img src="https://github.com/cezaraugusto/extension.js/assets/4672033/8807efd9-93e5-4db5-a1d2-9ac524f7ecc2" width="70"> |
48
48
  | :---------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------: |
49
- | ESNext<br>[Try out](https://templates.extension.land/javascript) | TypeScript<br>[Try out](https://templates.extension.land/typescript) | WASM<br>(soon) | React<br>[Try out](https://templates.extension.land/react) | Vue<br>[Try out](https://templates.extension.land/vue) | Svelte<br>[Try out](https://templates.extension.land/svelte) | Preact<br>[Try out](https://templates.extension.land/preact) |
49
+ | ESNext<br>[Try out](https://templates.extension.dev/javascript) | TypeScript<br>[Try out](https://templates.extension.dev/typescript) | WASM<br>(soon) | React<br>[Try out](https://templates.extension.dev/react) | Vue<br>[Try out](https://templates.extension.dev/vue) | Svelte<br>[Try out](https://templates.extension.dev/svelte) | Preact<br>[Try out](https://templates.extension.dev/preact) |
50
50
 
51
51
  </div>
52
52
 
@@ -1 +1,4 @@
1
- export default function checkUpdates(packageJson: Record<string, any>): Promise<void>;
1
+ export default function checkUpdates(): Promise<{
2
+ suffix: string;
3
+ message: string;
4
+ } | null>;
@@ -19,7 +19,10 @@ export declare function unhandledError(err: unknown): string;
19
19
  export declare function updateFailed(err: any): string;
20
20
  export declare function checkUpdates(packageJson: Record<string, any>, update: {
21
21
  latest: string;
22
- }): string;
22
+ }): {
23
+ suffix: string;
24
+ message: string;
25
+ };
23
26
  export declare function unsupportedNodeVersion(): string;
24
27
  export declare function noURLWithoutStart(argument: string): string;
25
28
  export declare function notImplemented(argument: string): string;
@@ -12,6 +12,7 @@ export declare class Telemetry {
12
12
  private disabled;
13
13
  private apiKey?;
14
14
  private host?;
15
+ private storage;
15
16
  private buffer;
16
17
  private timer;
17
18
  constructor(init: TelemetryInit);
@@ -0,0 +1 @@
1
+ export declare function getCliPackageJson(): Record<string, any>;