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.
@@ -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 = '06d33e35894516a460409dca06d1614e291e6252';
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 = "06d33e35894516a460409dca06d1614e291e6252";
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.20",
2
+ "createdWith": "extension-create@4.1.21",
3
3
  "template": "typescript",
4
- "source": "https://codeload.github.com/extension-js/examples/zip/06d33e35894516a460409dca06d1614e291e6252",
5
- "ref": "06d33e35894516a460409dca06d1614e291e6252"
4
+ "source": "https://codeload.github.com/extension-js/examples/zip/f8087f012cf195cba9aa2e3c32fd5a6729da33f0",
5
+ "ref": "f8087f012cf195cba9aa2e3c32fd5a6729da33f0"
6
6
  }
@@ -8,7 +8,7 @@
8
8
  "devDependencies": {
9
9
  "@types/chrome": "^0.0.287",
10
10
  "typescript": "7.0.2",
11
- "extension": "^4.1.20"
11
+ "extension": "^4.1.21"
12
12
  },
13
13
  "scripts": {
14
14
  "dev": "extension dev",
package/package.json CHANGED
@@ -25,7 +25,7 @@
25
25
  "templates"
26
26
  ],
27
27
  "name": "extension-create",
28
- "version": "4.1.21",
28
+ "version": "4.1.22",
29
29
  "description": "The standalone extension creation engine for Extension.js",
30
30
  "author": {
31
31
  "name": "Cezar Augusto",