File tree 4 files changed +17
-2
lines changed
4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * Main entry point for the package which exposes the public components.
3
+ * @packageDocumentation
4
+ */
5
+
1
6
export * from "./Cron" ;
2
7
export * from "./nextCronOccurrence" ;
3
8
export * from "./nextCronOccurrences" ;
Original file line number Diff line number Diff line change 1
- import { Field , parse , Schedule } from "./parse" ;
1
+ /**
2
+ * @packageDocumentation
3
+ * @ignore
4
+ */
5
+
6
+ import { Field , Schedule } from "./parse" ;
2
7
3
8
function findNext (
4
9
current : number ,
Original file line number Diff line number Diff line change 24
24
"clean" : " rimraf *.d.ts *.js *.map tests/*.d.ts tests/*.js tests/*.map *.tgz coverage documentation" ,
25
25
"build" : " tsc" ,
26
26
"test" : " jest" ,
27
- "docs " : " typedoc --out ./documentation/ --stripInternal ./cron-fns .ts" ,
27
+ "doc " : " typedoc --out ./documentation/ ./* .ts" ,
28
28
"commit" : " cz" ,
29
29
"semantic-release" : " semantic-release"
30
30
},
Original file line number Diff line number Diff line change
1
+ /**
2
+ * @packageDocumentation
3
+ * @ignore
4
+ */
5
+
1
6
/** @name Schedule
2
7
* @description Any field which is undefined is assumed to be unconstrained.
3
8
*/
You can’t perform that action at this time.
0 commit comments