extension-create 4.1.21 → 4.1.22
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/dist/lib/messaging.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export type Channel = 'info' | 'success' | 'warn' | 'error' | 'debug';
|
|
2
2
|
export declare function isDebug(): boolean;
|
|
3
3
|
export declare function prefix(type: Channel): string;
|
|
4
|
+
export declare function hasChannelPrefix(text: string): boolean;
|
|
4
5
|
export declare function isMachineOutput(): boolean;
|
|
5
6
|
export declare function humanLine(...parts: unknown[]): void;
|
|
6
7
|
export declare function humanWarn(...parts: unknown[]): void;
|
package/dist/module.cjs
CHANGED
|
@@ -617,7 +617,7 @@ const NETWORK_TIMEOUT_MS = (()=>{
|
|
|
617
617
|
return Number.isFinite(raw) && raw > 0 ? raw : 60000;
|
|
618
618
|
})();
|
|
619
619
|
const CODELOAD_BASE = 'https://codeload.github.com/extension-js/examples/zip';
|
|
620
|
-
const DEFAULT_TEMPLATES_REF = '
|
|
620
|
+
const DEFAULT_TEMPLATES_REF = 'f8087f012cf195cba9aa2e3c32fd5a6729da33f0';
|
|
621
621
|
const BUNDLED_TEMPLATES = [
|
|
622
622
|
"javascript"
|
|
623
623
|
];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const DEFAULT_TEMPLATES_REF = "
|
|
1
|
+
export declare const DEFAULT_TEMPLATES_REF = "f8087f012cf195cba9aa2e3c32fd5a6729da33f0";
|
|
2
2
|
export declare const BUNDLED_TEMPLATES: readonly string[];
|
|
3
3
|
export declare const DEFAULT_TEMPLATE_NAME = "typescript";
|
|
4
4
|
export declare const OFFLINE_FALLBACK_TEMPLATE = "javascript";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"createdWith": "extension-create@4.1.
|
|
2
|
+
"createdWith": "extension-create@4.1.21",
|
|
3
3
|
"template": "typescript",
|
|
4
|
-
"source": "https://codeload.github.com/extension-js/examples/zip/
|
|
5
|
-
"ref": "
|
|
4
|
+
"source": "https://codeload.github.com/extension-js/examples/zip/f8087f012cf195cba9aa2e3c32fd5a6729da33f0",
|
|
5
|
+
"ref": "f8087f012cf195cba9aa2e3c32fd5a6729da33f0"
|
|
6
6
|
}
|