@itee/tasks 1.3.0 → 1.3.2

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.
Files changed (68) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/docs/-_utils.mjs.html +68 -18
  3. package/docs/cleans_clean.task.mjs.html +10 -11
  4. package/docs/global.html +17 -173
  5. package/docs/helps_help.task.mjs.html +23 -59
  6. package/docs/index.html +4 -4
  7. package/docs/lints_lint.task.mjs.html +15 -12
  8. package/docs/patches_patch.task.mjs.html +14 -12
  9. package/docs/quicksearch.html +1 -1
  10. package/docs/releases_release.task.mjs.html +5 -5
  11. package/docs/tests_benchmarks_compute-benchmarks.task.mjs.html +35 -38
  12. package/docs/tests_benchmarks_run-benchmarks-for-backend.task.mjs.html +20 -18
  13. package/docs/tests_benchmarks_run-benchmarks-for-frontend.task.mjs.html +21 -23
  14. package/docs/tests_bundlings_check-bundling-from-esm-files-direct.task.mjs.html +22 -34
  15. package/docs/tests_bundlings_check-bundling.task.mjs.html +5 -5
  16. package/docs/tests_run-tests.task.mjs.html +5 -5
  17. package/docs/tests_units_compute-unit-tests.task.mjs.html +40 -42
  18. package/docs/tests_units_run-unit-tests-for-backend.task.mjs.html +21 -19
  19. package/docs/tests_units_run-unit-tests-for-frontend.task.mjs.html +21 -23
  20. package/package.json +4 -4
  21. package/{sources → scripts}/refresh.mjs +10 -12
  22. package/sources/builds/build.conf.mjs +3 -0
  23. package/sources/builds/build.task.mjs +11 -13
  24. package/{configs → sources}/cleans/clean.conf.mjs +1 -1
  25. package/sources/cleans/clean.task.mjs +6 -7
  26. package/{configs → sources}/docs/doc.conf.mjs +8 -7
  27. package/sources/docs/doc.task.mjs +7 -8
  28. package/sources/helps/help.task.mjs +18 -54
  29. package/{configs → sources}/lints/lint.conf.mjs +50 -18
  30. package/sources/lints/lint.task.mjs +11 -8
  31. package/sources/patches/patch.task.mjs +9 -7
  32. package/sources/releases/release.task.mjs +1 -1
  33. package/sources/tasks.js +26 -0
  34. package/sources/tests/benchmarks/compute-benchmarks.conf.mjs +5 -0
  35. package/sources/tests/benchmarks/compute-benchmarks.task.mjs +31 -34
  36. package/sources/tests/benchmarks/run-benchmarks-for-backend.task.mjs +16 -14
  37. package/{configs → sources}/tests/benchmarks/run-benchmarks-for-frontend.conf.mjs +6 -6
  38. package/sources/tests/benchmarks/run-benchmarks-for-frontend.task.mjs +17 -19
  39. package/{configs → sources}/tests/benchmarks/run-benchmarks.conf.mjs +2 -2
  40. package/sources/tests/benchmarks/run-benchmarks.task.mjs +3 -3
  41. package/{configs → sources}/tests/bundlings/check-bundling-from-esm-build-import.conf.mjs +12 -10
  42. package/sources/tests/bundlings/check-bundling-from-esm-build-import.task.mjs +17 -17
  43. package/{configs → sources}/tests/bundlings/check-bundling-from-esm-files-direct.conf.mjs +20 -14
  44. package/sources/tests/bundlings/check-bundling-from-esm-files-direct.task.mjs +17 -29
  45. package/{configs → sources}/tests/bundlings/check-bundling-from-esm-files-import.conf.mjs +15 -13
  46. package/sources/tests/bundlings/check-bundling-from-esm-files-import.task.mjs +17 -29
  47. package/sources/tests/bundlings/check-bundling.task.mjs +1 -1
  48. package/sources/tests/run-tests.task.mjs +1 -1
  49. package/sources/tests/units/compute-unit-tests.conf.mjs +5 -0
  50. package/sources/tests/units/compute-unit-tests.task.mjs +36 -38
  51. package/sources/tests/units/run-unit-tests-for-backend.task.mjs +17 -15
  52. package/{configs → sources}/tests/units/run-unit-tests-for-frontend.conf.mjs +1 -1
  53. package/sources/tests/units/run-unit-tests-for-frontend.task.mjs +17 -19
  54. package/{configs → sources}/tests/units/run-unit-tests.conf.mjs +2 -2
  55. package/sources/tests/units/run-unit-tests.task.mjs +3 -3
  56. package/sources/utils/builds.mjs +238 -0
  57. package/sources/utils/colors.mjs +19 -0
  58. package/sources/utils/files.mjs +70 -0
  59. package/sources/utils/loggings.mjs +33 -0
  60. package/sources/utils/packages.mjs +172 -0
  61. package/sources/utils/tasks.mjs +170 -0
  62. package/sources/utils/texts.mjs +98 -0
  63. package/configs/builds/build.conf.mjs +0 -3
  64. package/configs/tests/benchmarks/compute-benchmarks.conf.mjs +0 -5
  65. package/configs/tests/units/compute-unit-tests.conf.mjs +0 -5
  66. package/sources/_utils.mjs +0 -642
  67. package/sources/index.mjs +0 -21
  68. /package/{configs → scripts}/refresh.conf.mjs +0 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [v1.3.2](https://github.com/Itee/tasks/compare/v1.3.1...v1.3.2) (2026-01-21)
2
+
3
+ ## 🐛 Bug Fixes
4
+ - [`f96018d`](https://github.com/Itee/tasks/commit/f96018d) (lint) fix config files lint errors
5
+ - [`0e0fecf`](https://github.com/Itee/tasks/commit/0e0fecf) (patch) add patch against default jsdoc conf to allow mjs and cjs files by default
6
+ - [`c78ba79`](https://github.com/Itee/tasks/commit/c78ba79) (bundling) add some missing imports
7
+ - [`83ec8b2`](https://github.com/Itee/tasks/commit/83ec8b2) (compute) fix unmanaged composed filename to compute benches and units
8
+
9
+ # [v1.3.1](https://github.com/Itee/tasks/compare/v1.3.0...v1.3.1) (2026-01-19)
10
+
11
+ ## 🐛 Bug Fixes
12
+ - [`4a4d051`](https://github.com/Itee/tasks/commit/4a4d051) (lint) fix lint conf files minimatch patterns and log
13
+ - [`46637b7`](https://github.com/Itee/tasks/commit/46637b7) (lint) apply global lint fix
14
+
1
15
  # [v1.3.0](https://github.com/Itee/tasks/compare/v1.2.1...v1.3.0) (2026-01-19)
2
16
 
3
17
  ## ✨ New Features
@@ -4,7 +4,7 @@
4
4
  <head>
5
5
  <meta charset="utf-8">
6
6
  <meta name="viewport" content="width=device-width">
7
- <title>@itee/tasks v1.2.1 Source: _utils.mjs</title>
7
+ <title>@itee/tasks v1.3.0 Source: _utils.mjs</title>
8
8
 
9
9
  <!--[if lt IE 9]>
10
10
  <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
@@ -20,7 +20,7 @@
20
20
  <div class="navbar navbar-default navbar-fixed-top ">
21
21
  <div class="container">
22
22
  <div class="navbar-header">
23
- <a class="navbar-brand" href="index.html">@itee/tasks v1.2.1</a>
23
+ <a class="navbar-brand" href="index.html">@itee/tasks v1.3.0</a>
24
24
  <button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#topNavigation">
25
25
  <span class="icon-bar"></span>
26
26
  <span class="icon-bar"></span>
@@ -105,12 +105,13 @@ const {
105
105
  yellow,
106
106
  blue,
107
107
  magenta,
108
- cyan
108
+ cyan,
109
+ unstyle
109
110
  } = colors
110
111
 
111
112
  /// Debugging
112
-
113
- const isDebugging = ( process.env.RUNNER_DEBUG &amp;&amp; process.env.RUNNER_DEBUG === '1' )
113
+ /* global process */
114
+ const isDebugging = ( process &amp;&amp; process.env &amp;&amp; process.env.RUNNER_DEBUG &amp;&amp; process.env.RUNNER_DEBUG === '1' )
114
115
 
115
116
  /// Package paths and data
116
117
 
@@ -250,7 +251,7 @@ function createFile( filePath, fileContent ) {
250
251
 
251
252
  }
252
253
 
253
- function getFilesFrom( globPattern, filter = ( any ) => true ) {
254
+ function getFilesFrom( globPattern, filter = ( /*any*/ ) => true ) {
254
255
 
255
256
  return glob.sync( globPattern )
256
257
  .map( filePath => normalize( filePath ) )
@@ -465,9 +466,15 @@ function computeBannerFor( format ) {
465
466
 
466
467
  }
467
468
 
468
- function computeIntroFor( requestPackages ) {
469
+ function computeIntroFor( requestPackages = [] ) {
470
+
471
+ let intro = ''
472
+
473
+ for ( const requestPackage of requestPackages ) {
474
+ intro += `if( ${ requestPackage } === undefined ) { throw new Error('${ getPrettyPackageName() } need ${ requestPackage } to be defined first. Please check your scripts loading order.') }` + '\n'
475
+ }
469
476
 
470
- return ''
477
+ return intro
471
478
 
472
479
  }
473
480
 
@@ -527,11 +534,11 @@ function createRollupConfigs( options = undefined ) {
527
534
  const outputPath = ( isProd ) ? join( output, `${ fileName }.min.${ extension }` ) : join( output, `${ fileName }.${ extension }` )
528
535
 
529
536
  configs.push( {
530
- input: input,
531
- external: ( format === 'cjs' ) ? [
537
+ input: input,
538
+ external: ( format === 'cjs' ) ? [
532
539
  'fs'
533
540
  ] : [],
534
- plugins: [
541
+ plugins: [
535
542
  replace( {
536
543
  defines: {
537
544
  IS_REMOVE_ON_BUILD: false,
@@ -546,7 +553,7 @@ function createRollupConfigs( options = undefined ) {
546
553
  } ),
547
554
  isProd &amp;&amp; terser()
548
555
  ],
549
- onwarn: ( {
556
+ onwarn: ( {
550
557
  loc,
551
558
  frame,
552
559
  message
@@ -556,11 +563,11 @@ function createRollupConfigs( options = undefined ) {
556
563
  if ( message.includes( 'Circular dependency' ) ) { return }
557
564
  if ( message.includes( 'plugin uglify is deprecated' ) ) { return }
558
565
 
559
- if ( loc ) {
560
- process.stderr.write( `/!\\ ${ loc.file } (${ loc.line }:${ loc.column }) ${ frame } ${ message }\n` )
561
- } else {
562
- process.stderr.write( `/!\\ ${ message }\n` )
563
- }
566
+ let errorMessage = ( loc )
567
+ ? `/!\\ ${ loc.file } (${ loc.line }:${ loc.column }) ${ frame } ${ message }\n`
568
+ : `/!\\ ${ message }\n`
569
+
570
+ log( red( errorMessage ) )
564
571
 
565
572
  },
566
573
  treeshake: treeshake,
@@ -611,7 +618,47 @@ function logLoadingTask( filename ) {
611
618
 
612
619
  }
613
620
 
614
- ///
621
+ /// Text Management
622
+
623
+
624
+ function alignTextCenter( text, width ) {
625
+
626
+ const unstyledText = unstyle( text.repeat( 1 ) )
627
+ const marginLength = ( width - unstyledText.length ) / 2
628
+
629
+ let leftMargin, rightMargin
630
+ if ( Number.isInteger( marginLength ) ) {
631
+ leftMargin = marginLength
632
+ rightMargin = marginLength
633
+ } else {
634
+ const flooredMargin = Math.floor( marginLength )
635
+ leftMargin = flooredMargin
636
+ rightMargin = flooredMargin + 1
637
+ }
638
+
639
+ return ' '.repeat( leftMargin ) + text + ' '.repeat( rightMargin )
640
+
641
+ }
642
+
643
+ function alignTextLeft( text, width ) {
644
+
645
+ const unstyledText = unstyle( text.repeat( 1 ) )
646
+ let repeatTime = width - unstyledText.length
647
+ repeatTime = ( repeatTime > 0 ) ? repeatTime : 0
648
+
649
+ return text + ' '.repeat( repeatTime )
650
+
651
+ }
652
+
653
+ function alignTextRight( text, width ) {
654
+
655
+ const unstyledText = unstyle( text.repeat( 1 ) )
656
+ let repeatTime = width - unstyledText.length
657
+ repeatTime = ( repeatTime > 0 ) ? repeatTime : 0
658
+
659
+ return ' '.repeat( repeatTime ) + text
660
+
661
+ }
615
662
 
616
663
  function IndenterFactory( indentationChar = '\t', indentationLevel = 5 ) {
617
664
 
@@ -710,6 +757,9 @@ export {
710
757
 
711
758
  logLoadingTask,
712
759
 
760
+ alignTextCenter,
761
+ alignTextLeft,
762
+ alignTextRight,
713
763
  IndenterFactory as Indenter
714
764
  }</pre>
715
765
  </article>
@@ -4,7 +4,7 @@
4
4
  <head>
5
5
  <meta charset="utf-8">
6
6
  <meta name="viewport" content="width=device-width">
7
- <title>@itee/tasks v1.2.1 Source: cleans/clean.task.mjs</title>
7
+ <title>Itee Tasks v1.3.1 Source: cleans/clean.task.mjs</title>
8
8
 
9
9
  <!--[if lt IE 9]>
10
10
  <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
@@ -20,7 +20,7 @@
20
20
  <div class="navbar navbar-default navbar-fixed-top ">
21
21
  <div class="container">
22
22
  <div class="navbar-header">
23
- <a class="navbar-brand" href="index.html">@itee/tasks v1.2.1</a>
23
+ <a class="navbar-brand" href="index.html">Itee Tasks v1.3.1</a>
24
24
  <button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#topNavigation">
25
25
  <span class="icon-bar"></span>
26
26
  <span class="icon-bar"></span>
@@ -33,7 +33,7 @@
33
33
  <li class="dropdown">
34
34
  <a href="global.html" class="dropdown-toggle" data-toggle="dropdown">Global<b class="caret"></b></a>
35
35
  <ul class="dropdown-menu inline">
36
- <li><a href="global.html#checkBundlingFromEsmFilesDirectTask">checkBundlingFromEsmFilesDirectTask</a></li><li><a href="global.html#checkBundlingTask">checkBundlingTask</a></li><li><a href="global.html#computeBenchmarksTask">computeBenchmarksTask</a></li><li><a href="global.html#computeUnitTestsTask">computeUnitTestsTask</a></li><li><a href="global.html#createRollupConfigs">createRollupConfigs</a></li><li><a href="global.html#npmrunclean">npm run clean</a></li><li><a href="global.html#npmrunhelpdefault">npm run help ( default )</a></li><li><a href="global.html#npmrunlint">npm run lint</a></li><li><a href="global.html#npmrunpatch">npm run patch</a></li><li><a href="global.html#npmrunrelease">npm run release</a></li><li><a href="global.html#npmruntest">npm run test</a></li><li><a href="global.html#runBenchmarksForBackendTask">runBenchmarksForBackendTask</a></li><li><a href="global.html#runBenchmarksForFrontendTask">runBenchmarksForFrontendTask</a></li><li><a href="global.html#runUnitTestsForBackendTask">runUnitTestsForBackendTask</a></li><li><a href="global.html#runUnitTestsForFrontendTask">runUnitTestsForFrontendTask</a></li>
36
+ <li><a href="global.html#checkBundlingFromEsmFilesDirectTask">checkBundlingFromEsmFilesDirectTask</a></li><li><a href="global.html#checkBundlingTask">checkBundlingTask</a></li><li><a href="global.html#computeBenchmarksTask">computeBenchmarksTask</a></li><li><a href="global.html#computeUnitTestsTask">computeUnitTestsTask</a></li><li><a href="global.html#npmrunclean">npm run clean</a></li><li><a href="global.html#npmrunhelpdefault">npm run help ( default )</a></li><li><a href="global.html#npmrunlint">npm run lint</a></li><li><a href="global.html#npmrunpatch">npm run patch</a></li><li><a href="global.html#npmrunrelease">npm run release</a></li><li><a href="global.html#npmruntest">npm run test</a></li><li><a href="global.html#runBenchmarksForBackendTask">runBenchmarksForBackendTask</a></li><li><a href="global.html#runBenchmarksForFrontendTask">runBenchmarksForFrontendTask</a></li><li><a href="global.html#runUnitTestsForBackendTask">runUnitTestsForBackendTask</a></li><li><a href="global.html#runUnitTestsForFrontendTask">runUnitTestsForFrontendTask</a></li>
37
37
  </ul>
38
38
  </li>
39
39
 
@@ -70,18 +70,17 @@
70
70
  <section>
71
71
  <article>
72
72
  <pre
73
- class="sunlight-highlight-javascript linenums">import colors from 'ansi-colors'
74
- import { deleteAsync } from 'del'
75
- import log from 'fancy-log'
76
- import { basename } from 'node:path'
73
+ class="sunlight-highlight-javascript linenums">import { deleteAsync } from 'del'
74
+ import { basename } from 'node:path'
75
+ import { red } from '../utils/colors.mjs'
77
76
  import {
78
- getTaskConfigurationFor,
77
+ log,
79
78
  logLoadingTask
80
- } from '../_utils.mjs'
79
+ } from '../utils/loggings.mjs'
80
+ import { getTaskConfigurationFor } from '../utils/tasks.mjs'
81
81
 
82
82
  logLoadingTask( import.meta.filename )
83
83
 
84
- const { red } = colors
85
84
  const configuration = await getTaskConfigurationFor( import.meta.filename )
86
85
 
87
86
  /**
@@ -141,7 +140,7 @@ export { cleanTask }
141
140
 
142
141
 
143
142
  <span class="copyright">
144
- Copyright 2015-Present <a href="https://github.com/Itee">Itee</a> (Tristan Valcke)
143
+ Copyright 2015-Present <a href="https://github.com/Itee">Itee (Tristan Valcke)</a>
145
144
  </span>
146
145
 
147
146
  <span class="jsdoc-message">
package/docs/global.html CHANGED
@@ -4,7 +4,7 @@
4
4
  <head>
5
5
  <meta charset="utf-8">
6
6
  <meta name="viewport" content="width=device-width">
7
- <title>@itee/tasks v1.2.1 Global</title>
7
+ <title>Itee Tasks v1.3.1 Global</title>
8
8
 
9
9
  <!--[if lt IE 9]>
10
10
  <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
@@ -20,7 +20,7 @@
20
20
  <div class="navbar navbar-default navbar-fixed-top ">
21
21
  <div class="container">
22
22
  <div class="navbar-header">
23
- <a class="navbar-brand" href="index.html">@itee/tasks v1.2.1</a>
23
+ <a class="navbar-brand" href="index.html">Itee Tasks v1.3.1</a>
24
24
  <button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#topNavigation">
25
25
  <span class="icon-bar"></span>
26
26
  <span class="icon-bar"></span>
@@ -33,7 +33,7 @@
33
33
  <li class="dropdown">
34
34
  <a href="global.html" class="dropdown-toggle" data-toggle="dropdown">Global<b class="caret"></b></a>
35
35
  <ul class="dropdown-menu inline">
36
- <li><a href="global.html#checkBundlingFromEsmFilesDirectTask">checkBundlingFromEsmFilesDirectTask</a></li><li><a href="global.html#checkBundlingTask">checkBundlingTask</a></li><li><a href="global.html#computeBenchmarksTask">computeBenchmarksTask</a></li><li><a href="global.html#computeUnitTestsTask">computeUnitTestsTask</a></li><li><a href="global.html#createRollupConfigs">createRollupConfigs</a></li><li><a href="global.html#npmrunclean">npm run clean</a></li><li><a href="global.html#npmrunhelpdefault">npm run help ( default )</a></li><li><a href="global.html#npmrunlint">npm run lint</a></li><li><a href="global.html#npmrunpatch">npm run patch</a></li><li><a href="global.html#npmrunrelease">npm run release</a></li><li><a href="global.html#npmruntest">npm run test</a></li><li><a href="global.html#runBenchmarksForBackendTask">runBenchmarksForBackendTask</a></li><li><a href="global.html#runBenchmarksForFrontendTask">runBenchmarksForFrontendTask</a></li><li><a href="global.html#runUnitTestsForBackendTask">runUnitTestsForBackendTask</a></li><li><a href="global.html#runUnitTestsForFrontendTask">runUnitTestsForFrontendTask</a></li>
36
+ <li><a href="global.html#checkBundlingFromEsmFilesDirectTask">checkBundlingFromEsmFilesDirectTask</a></li><li><a href="global.html#checkBundlingTask">checkBundlingTask</a></li><li><a href="global.html#computeBenchmarksTask">computeBenchmarksTask</a></li><li><a href="global.html#computeUnitTestsTask">computeUnitTestsTask</a></li><li><a href="global.html#npmrunclean">npm run clean</a></li><li><a href="global.html#npmrunhelpdefault">npm run help ( default )</a></li><li><a href="global.html#npmrunlint">npm run lint</a></li><li><a href="global.html#npmrunpatch">npm run patch</a></li><li><a href="global.html#npmrunrelease">npm run release</a></li><li><a href="global.html#npmruntest">npm run test</a></li><li><a href="global.html#runBenchmarksForBackendTask">runBenchmarksForBackendTask</a></li><li><a href="global.html#runBenchmarksForFrontendTask">runBenchmarksForFrontendTask</a></li><li><a href="global.html#runUnitTestsForBackendTask">runUnitTestsForBackendTask</a></li><li><a href="global.html#runUnitTestsForFrontendTask">runUnitTestsForFrontendTask</a></li>
37
37
  </ul>
38
38
  </li>
39
39
 
@@ -281,7 +281,7 @@ Todo: Check for different target env like next task below this one
281
281
  <ul class="dummy">
282
282
  <li>
283
283
  <a href="tests_bundlings_check-bundling-from-esm-files-direct.task.mjs.html">tests/bundlings/check-bundling-from-esm-files-direct.task.mjs</a>,
284
- <a href="tests_bundlings_check-bundling-from-esm-files-direct.task.mjs.html#sunlight-1-line-37">line 37</a>
284
+ <a href="tests_bundlings_check-bundling-from-esm-files-direct.task.mjs.html#sunlight-1-line-36">line 36</a>
285
285
  </li>
286
286
  </ul>
287
287
  </dd>
@@ -369,7 +369,7 @@ Todo: Check for different target env like next task below this one
369
369
  <ul class="dummy">
370
370
  <li>
371
371
  <a href="tests_benchmarks_compute-benchmarks.task.mjs.html">tests/benchmarks/compute-benchmarks.task.mjs</a>,
372
- <a href="tests_benchmarks_compute-benchmarks.task.mjs.html#sunlight-1-line-35">line 35</a>
372
+ <a href="tests_benchmarks_compute-benchmarks.task.mjs.html#sunlight-1-line-37">line 37</a>
373
373
  </li>
374
374
  </ul>
375
375
  </dd>
@@ -457,7 +457,7 @@ Todo: Check for different target env like next task below this one
457
457
  <ul class="dummy">
458
458
  <li>
459
459
  <a href="tests_units_compute-unit-tests.task.mjs.html">tests/units/compute-unit-tests.task.mjs</a>,
460
- <a href="tests_units_compute-unit-tests.task.mjs.html#sunlight-1-line-37">line 37</a>
460
+ <a href="tests_units_compute-unit-tests.task.mjs.html#sunlight-1-line-41">line 41</a>
461
461
  </li>
462
462
  </ul>
463
463
  </dd>
@@ -484,162 +484,6 @@ Todo: Check for different target env like next task below this one
484
484
 
485
485
 
486
486
 
487
- </dd>
488
-
489
-
490
-
491
- <hr>
492
- <dt>
493
- <h4 class="name" id="createRollupConfigs"><span class="type-signature">&lt;generator> </span>createRollupConfigs(options)</h4>
494
-
495
-
496
- </dt>
497
- <dd>
498
-
499
-
500
- <div class="description">
501
- Will create an appropriate configuration object for rollup, related to the given arguments.
502
- </div>
503
-
504
-
505
-
506
-
507
-
508
-
509
-
510
-
511
- <h5>Parameters:</h5>
512
-
513
-
514
- <table class="params table table-striped">
515
- <thead>
516
- <tr>
517
-
518
- <th>Name</th>
519
-
520
-
521
- <th>Type</th>
522
-
523
-
524
-
525
-
526
-
527
- <th class="last">Description</th>
528
- </tr>
529
- </thead>
530
-
531
- <tbody>
532
-
533
-
534
- <tr>
535
-
536
- <td class="name"><code>options</code></td>
537
-
538
-
539
- <td class="type">
540
-
541
- </td>
542
-
543
-
544
-
545
-
546
-
547
- <td class="description last"></td>
548
- </tr>
549
-
550
-
551
- </tbody>
552
- </table>
553
-
554
-
555
-
556
-
557
- <dl class="details">
558
-
559
-
560
-
561
-
562
-
563
-
564
-
565
-
566
-
567
-
568
-
569
-
570
-
571
-
572
-
573
-
574
-
575
-
576
-
577
-
578
-
579
-
580
-
581
-
582
-
583
-
584
-
585
-
586
-
587
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
588
- <dd class="tag-source">
589
- <ul class="dummy">
590
- <li>
591
- <a href="-_utils.mjs.html">_utils.mjs</a>,
592
- <a href="-_utils.mjs.html#sunlight-1-line-425">line 425</a>
593
- </li>
594
- </ul>
595
- </dd>
596
-
597
-
598
-
599
-
600
-
601
-
602
-
603
- </dl>
604
-
605
-
606
-
607
-
608
-
609
-
610
-
611
-
612
-
613
-
614
-
615
-
616
-
617
- <h5>Returns:</h5>
618
-
619
-
620
- <div class="param-desc">
621
- An array of rollup configuration
622
- </div>
623
-
624
-
625
-
626
- <dl>
627
- <dt>
628
- Type
629
- </dt>
630
- <dd>
631
-
632
- <span class="param-type">Array.&lt;json></span>
633
-
634
-
635
-
636
- </dd>
637
- </dl>
638
-
639
-
640
-
641
-
642
-
643
487
  </dd>
644
488
 
645
489
 
@@ -701,7 +545,7 @@ Todo: Check for different target env like next task below this one
701
545
  <ul class="dummy">
702
546
  <li>
703
547
  <a href="cleans_clean.task.mjs.html">cleans/clean.task.mjs</a>,
704
- <a href="cleans_clean.task.mjs.html#sunlight-1-line-15">line 15</a>
548
+ <a href="cleans_clean.task.mjs.html#sunlight-1-line-14">line 14</a>
705
549
  </li>
706
550
  </ul>
707
551
  </dd>
@@ -789,7 +633,7 @@ Todo: Check for different target env like next task below this one
789
633
  <ul class="dummy">
790
634
  <li>
791
635
  <a href="helps_help.task.mjs.html">helps/help.task.mjs</a>,
792
- <a href="helps_help.task.mjs.html#sunlight-1-line-64">line 64</a>
636
+ <a href="helps_help.task.mjs.html#sunlight-1-line-28">line 28</a>
793
637
  </li>
794
638
  </ul>
795
639
  </dd>
@@ -877,7 +721,7 @@ Todo: Check for different target env like next task below this one
877
721
  <ul class="dummy">
878
722
  <li>
879
723
  <a href="lints_lint.task.mjs.html">lints/lint.task.mjs</a>,
880
- <a href="lints_lint.task.mjs.html#sunlight-1-line-16">line 16</a>
724
+ <a href="lints_lint.task.mjs.html#sunlight-1-line-18">line 18</a>
881
725
  </li>
882
726
  </ul>
883
727
  </dd>
@@ -965,7 +809,7 @@ Todo: Check for different target env like next task below this one
965
809
  <ul class="dummy">
966
810
  <li>
967
811
  <a href="patches_patch.task.mjs.html">patches/patch.task.mjs</a>,
968
- <a href="patches_patch.task.mjs.html#sunlight-1-line-16">line 16</a>
812
+ <a href="patches_patch.task.mjs.html#sunlight-1-line-10">line 10</a>
969
813
  </li>
970
814
  </ul>
971
815
  </dd>
@@ -1229,7 +1073,7 @@ Todo: Check for different target env like next task below this one
1229
1073
  <ul class="dummy">
1230
1074
  <li>
1231
1075
  <a href="tests_benchmarks_run-benchmarks-for-backend.task.mjs.html">tests/benchmarks/run-benchmarks-for-backend.task.mjs</a>,
1232
- <a href="tests_benchmarks_run-benchmarks-for-backend.task.mjs.html#sunlight-1-line-22">line 22</a>
1076
+ <a href="tests_benchmarks_run-benchmarks-for-backend.task.mjs.html#sunlight-1-line-24">line 24</a>
1233
1077
  </li>
1234
1078
  </ul>
1235
1079
  </dd>
@@ -1262,7 +1106,7 @@ Todo: Check for different target env like next task below this one
1262
1106
 
1263
1107
  <hr>
1264
1108
  <dt>
1265
- <h4 class="name" id="runBenchmarksForFrontendTask"><span class="type-signature"></span>runBenchmarksForFrontendTask()</h4>
1109
+ <h4 class="name" id="runBenchmarksForFrontendTask"><span class="type-signature">&lt;async> </span>runBenchmarksForFrontendTask()</h4>
1266
1110
 
1267
1111
 
1268
1112
  </dt>
@@ -1317,7 +1161,7 @@ Todo: Check for different target env like next task below this one
1317
1161
  <ul class="dummy">
1318
1162
  <li>
1319
1163
  <a href="tests_benchmarks_run-benchmarks-for-frontend.task.mjs.html">tests/benchmarks/run-benchmarks-for-frontend.task.mjs</a>,
1320
- <a href="tests_benchmarks_run-benchmarks-for-frontend.task.mjs.html#sunlight-1-line-16">line 16</a>
1164
+ <a href="tests_benchmarks_run-benchmarks-for-frontend.task.mjs.html#sunlight-1-line-12">line 12</a>
1321
1165
  </li>
1322
1166
  </ul>
1323
1167
  </dd>
@@ -1405,7 +1249,7 @@ Todo: Check for different target env like next task below this one
1405
1249
  <ul class="dummy">
1406
1250
  <li>
1407
1251
  <a href="tests_units_run-unit-tests-for-backend.task.mjs.html">tests/units/run-unit-tests-for-backend.task.mjs</a>,
1408
- <a href="tests_units_run-unit-tests-for-backend.task.mjs.html#sunlight-1-line-24">line 24</a>
1252
+ <a href="tests_units_run-unit-tests-for-backend.task.mjs.html#sunlight-1-line-26">line 26</a>
1409
1253
  </li>
1410
1254
  </ul>
1411
1255
  </dd>
@@ -1438,7 +1282,7 @@ Todo: Check for different target env like next task below this one
1438
1282
 
1439
1283
  <hr>
1440
1284
  <dt>
1441
- <h4 class="name" id="runUnitTestsForFrontendTask"><span class="type-signature"></span>runUnitTestsForFrontendTask()</h4>
1285
+ <h4 class="name" id="runUnitTestsForFrontendTask"><span class="type-signature">&lt;async> </span>runUnitTestsForFrontendTask()</h4>
1442
1286
 
1443
1287
 
1444
1288
  </dt>
@@ -1493,7 +1337,7 @@ Todo: Check for different target env like next task below this one
1493
1337
  <ul class="dummy">
1494
1338
  <li>
1495
1339
  <a href="tests_units_run-unit-tests-for-frontend.task.mjs.html">tests/units/run-unit-tests-for-frontend.task.mjs</a>,
1496
- <a href="tests_units_run-unit-tests-for-frontend.task.mjs.html#sunlight-1-line-16">line 16</a>
1340
+ <a href="tests_units_run-unit-tests-for-frontend.task.mjs.html#sunlight-1-line-12">line 12</a>
1497
1341
  </li>
1498
1342
  </ul>
1499
1343
  </dd>
@@ -1570,7 +1414,7 @@ Todo: Check for different target env like next task below this one
1570
1414
 
1571
1415
 
1572
1416
  <span class="copyright">
1573
- Copyright 2015-Present <a href="https://github.com/Itee">Itee</a> (Tristan Valcke)
1417
+ Copyright 2015-Present <a href="https://github.com/Itee">Itee (Tristan Valcke)</a>
1574
1418
  </span>
1575
1419
 
1576
1420
  <span class="jsdoc-message">