@baic/yolk-cli 2.1.0-alpha.166 → 2.1.0-alpha.168

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 +1 @@
1
- {"name":"commander","version":"6.2.1","author":"TJ Holowaychuk <tj@vision-media.ca>","license":"MIT","_lastModified":"2023-06-07T03:22:06.033Z"}
1
+ {"name":"commander","version":"6.2.1","author":"TJ Holowaychuk <tj@vision-media.ca>","license":"MIT","_lastModified":"2023-11-01T08:48:07.606Z"}
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export declare function clearCache(): void;
5
5
 
6
- export declare type COMMENT = '!';
6
+ export declare type COMMENT = "!";
7
7
 
8
8
  /**
9
9
  * Represents a rendering context by wrapping a view object and maintaining a reference to the parent context.
@@ -34,7 +34,7 @@ export declare class Context {
34
34
  lookup(name: string): any;
35
35
  }
36
36
 
37
- export declare type EQUAL = '=';
37
+ export declare type EQUAL = "=";
38
38
 
39
39
  /**
40
40
  * HTML escaping by default, can be overridden by setting Mustache.escape explicitly or providing the `options`
@@ -48,7 +48,7 @@ export declare type EQUAL = '=';
48
48
  declare let escape_2: EscapeFunction;
49
49
  export { escape_2 as escape }
50
50
 
51
- export declare type ESCAPED_VALUE = 'name';
51
+ export declare type ESCAPED_VALUE = "name";
52
52
 
53
53
  /**
54
54
  * Function responsible for escaping values from the view into the rendered output when templates
@@ -56,7 +56,7 @@ export declare type ESCAPED_VALUE = 'name';
56
56
  */
57
57
  export declare type EscapeFunction = (value: any) => string;
58
58
 
59
- export declare type INVERTED = '^';
59
+ export declare type INVERTED = "^";
60
60
 
61
61
  /**
62
62
  * The name of the module.
@@ -82,7 +82,7 @@ export declare type OpeningAndClosingTags = [string, string];
82
82
  */
83
83
  export declare function parse(template: string, tags?: OpeningAndClosingTags): TemplateSpans;
84
84
 
85
- export declare type PARTIAL = '>';
85
+ export declare type PARTIAL = ">";
86
86
 
87
87
  export declare type PartialLookupFn = (partialName: string) => string | undefined;
88
88
 
@@ -95,7 +95,7 @@ export declare type PartialLookupFn = (partialName: string) => string | undefine
95
95
  */
96
96
  export declare type PartialsOrLookupFn = Record<string, string> | PartialLookupFn;
97
97
 
98
- export declare type RAW_VALUE = 'text';
98
+ export declare type RAW_VALUE = "text";
99
99
 
100
100
  /**
101
101
  * Renders the {@link template `template`} with the given {@link view `view`} and {@link partials `partials`} using the default writer.
@@ -169,7 +169,7 @@ export declare class Scanner {
169
169
  scanUntil(re: RegExp): string;
170
170
  }
171
171
 
172
- export declare type SECTION = '#';
172
+ export declare type SECTION = "#";
173
173
 
174
174
  /**
175
175
  * The default opening and closing tags used while parsing the templates.
@@ -204,9 +204,17 @@ export declare type TemplateSpans = Array<
204
204
  | [TemplateSpanType, string, number, number, string, number, boolean]
205
205
  >;
206
206
 
207
- export declare type TemplateSpanType = RAW_VALUE | ESCAPED_VALUE | SECTION | UNESCAPED_VALUE | INVERTED | COMMENT | PARTIAL | EQUAL;
208
-
209
- export declare type UNESCAPED_VALUE = '&';
207
+ export declare type TemplateSpanType =
208
+ | RAW_VALUE
209
+ | ESCAPED_VALUE
210
+ | SECTION
211
+ | UNESCAPED_VALUE
212
+ | INVERTED
213
+ | COMMENT
214
+ | PARTIAL
215
+ | EQUAL;
216
+
217
+ export declare type UNESCAPED_VALUE = "&";
210
218
 
211
219
  /**
212
220
  * The version of the module.
@@ -1 +1 @@
1
- {"name":"mustache","version":"4.2.0","author":"mustache.js Authors <http://github.com/janl/mustache.js>","license":"MIT","_lastModified":"2023-06-07T03:22:06.100Z"}
1
+ {"name":"mustache","version":"4.2.0","author":"mustache.js Authors <http://github.com/janl/mustache.js>","license":"MIT","_lastModified":"2023-11-01T08:48:07.674Z"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baic/yolk-cli",
3
- "version": "2.1.0-alpha.166",
3
+ "version": "2.1.0-alpha.168",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/303394539/yolk.git"
@@ -41,7 +41,7 @@
41
41
  "postcss-less": "~6.x",
42
42
  "postcss-scss": "~4.x",
43
43
  "rimraf": "~5.0.x",
44
- "v8-compile-cache": "~2.3.x"
44
+ "v8-compile-cache": "~2.4.x"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/mustache": "~4.2.x",
@@ -51,5 +51,5 @@
51
51
  "publishConfig": {
52
52
  "access": "public"
53
53
  },
54
- "gitHead": "d8c71db3f740be8ffff6808e9e36eacd1c89da2f"
54
+ "gitHead": "cb1f9991000699f36b9293e2dc1799b9000b32d2"
55
55
  }