extension 3.2.0-next.9 → 3.2.1
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 +2 -2
- package/dist/check-updates.d.ts +4 -1
- package/dist/cli-lib/messages.d.ts +4 -1
- package/dist/cli.js +733 -707
- package/package.json +4 -15
- package/dist/types/index.d.ts +0 -0
- package/types/css-content.d.ts +0 -15
- package/types/css-modules.d.ts +0 -27
- package/types/extension-create-shim.d.ts +0 -24
- package/types/extension-develop-shim.d.ts +0 -105
- package/types/images.d.ts +0 -66
- package/types/index.d.ts +0 -69
- package/types/index.ts +0 -15
- package/types/js-frameworks.d.ts +0 -11
- package/types/polyfill.d.ts +0 -15
package/README.md
CHANGED
|
@@ -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.
|
|
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
|
-
|
|
|
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
|
|
package/dist/check-updates.d.ts
CHANGED
|
@@ -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
|
-
}):
|
|
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;
|