File tree 2 files changed +11
-0
lines changed
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,12 @@ import logger from "./shared/logger";
3
3
const fs = require ( "fs" ) ;
4
4
const path = require ( "path" ) ;
5
5
6
+ /**
7
+ *
8
+ * @param {Array<File> } files An array of tokens generated after parsing the content of every file
9
+ * @param {string } outputPath The location in which the function has to write the file with the deffinitions
10
+ * of the snippets
11
+ */
6
12
export const generator = ( files : Array < File > , outputPath : string ) : void => {
7
13
// scope will be html only for now
8
14
let json = Object ( ) ;
Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ import pathResolver from "./utils/path-resolver";
9
9
import { REGEX_SELECTORS } from "./utils/regexSelectors" ;
10
10
11
11
// TODO: Test in other OS (github actions)
12
+ /**
13
+ *
14
+ * @param {IFIleData } data An array of files that can contain component or class definitions
15
+ * @returns {File } An array filed of tokens that contains information about each component parsed
16
+ */
12
17
export const parser = ( data : Array < IFileData > ) : Array < File > => {
13
18
let result : Array < File > = [ ] ,
14
19
tmp : Array < Partial < File > > = [ ] ; // a temporal variable used for storing @Inputs /@Outputs declared on a parent class
You can’t perform that action at this time.
0 commit comments