@itee/tasks 1.1.1 → 1.2.0
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.
- package/CHANGELOG.md +6 -0
- package/configs/docs/doc.conf.mjs +55 -0
- package/docs/-_utils.mjs.html +848 -0
- package/docs/cleans_clean.task.mjs.html +239 -0
- package/docs/fonts/glyphicons-halflings-regular.eot +0 -0
- package/docs/fonts/glyphicons-halflings-regular.svg +288 -0
- package/docs/fonts/glyphicons-halflings-regular.ttf +0 -0
- package/docs/fonts/glyphicons-halflings-regular.woff +0 -0
- package/docs/fonts/glyphicons-halflings-regular.woff2 +0 -0
- package/docs/global.html +1668 -0
- package/docs/helps_help.task.mjs.html +362 -0
- package/docs/img/glyphicons-halflings-white.png +0 -0
- package/docs/img/glyphicons-halflings.png +0 -0
- package/docs/index.html +228 -0
- package/docs/lints_lint.task.mjs.html +252 -0
- package/docs/patches_patch.task.mjs.html +251 -0
- package/docs/quicksearch.html +31 -0
- package/docs/releases_release.task.mjs.html +238 -0
- package/docs/scripts/docstrap.lib.js +11 -0
- package/docs/scripts/fulltext-search-ui.js +89 -0
- package/docs/scripts/fulltext-search.js +36 -0
- package/docs/scripts/lunr.min.js +6 -0
- package/docs/scripts/prettify/Apache-License-2.0.txt +202 -0
- package/docs/scripts/prettify/jquery.min.js +6 -0
- package/docs/scripts/prettify/lang-css.js +21 -0
- package/docs/scripts/prettify/prettify.js +496 -0
- package/docs/scripts/sunlight.js +1157 -0
- package/docs/scripts/toc.js +203 -0
- package/docs/styles/darkstrap.css +960 -0
- package/docs/styles/prettify-tomorrow.css +132 -0
- package/docs/styles/site.cerulean.css +7008 -0
- package/docs/styles/site.cosmo.css +7061 -0
- package/docs/styles/site.cyborg.css +7048 -0
- package/docs/styles/site.darkly.css +7171 -0
- package/docs/styles/site.darkstrap.css +5638 -0
- package/docs/styles/site.dibs-bootstrap.css +5899 -0
- package/docs/styles/site.flatly.css +7147 -0
- package/docs/styles/site.journal.css +6973 -0
- package/docs/styles/site.lumen.css +7298 -0
- package/docs/styles/site.paper.css +7623 -0
- package/docs/styles/site.readable.css +6997 -0
- package/docs/styles/site.sandstone.css +7035 -0
- package/docs/styles/site.simplex.css +7023 -0
- package/docs/styles/site.slate.css +7343 -0
- package/docs/styles/site.spacelab.css +7055 -0
- package/docs/styles/site.superhero.css +7131 -0
- package/docs/styles/site.united.css +6895 -0
- package/docs/styles/site.yeti.css +7195 -0
- package/docs/styles/sunlight.dark.css +345 -0
- package/docs/styles/sunlight.default.css +344 -0
- package/docs/tests_benchmarks_compute-benchmarks.task.mjs.html +442 -0
- package/docs/tests_benchmarks_run-benchmarks-for-backend.task.mjs.html +249 -0
- package/docs/tests_benchmarks_run-benchmarks-for-frontend.task.mjs.html +254 -0
- package/docs/tests_bundlings_check-bundling-from-esm-files-direct.task.mjs.html +300 -0
- package/docs/tests_bundlings_check-bundling.task.mjs.html +231 -0
- package/docs/tests_run-tests.task.mjs.html +228 -0
- package/docs/tests_units_compute-unit-tests.task.mjs.html +753 -0
- package/docs/tests_units_run-unit-tests-for-backend.task.mjs.html +254 -0
- package/docs/tests_units_run-unit-tests-for-frontend.task.mjs.html +254 -0
- package/package.json +5 -2
- package/sources/_utils.mjs +19 -1
- package/sources/patches/patch.task.mjs +45 -0
- package/configs/docs/doc.conf.json +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
# [v1.2.0](https://github.com/Itee/tasks/compare/v1.1.1...v1.2.0) (2026-01-19)
|
|
2
|
+
|
|
3
|
+
## ✨ New Features
|
|
4
|
+
- [`87d0a84`](https://github.com/Itee/tasks/commit/87d0a84) (utils) allow to search for cjs config files
|
|
5
|
+
- [`fb38109`](https://github.com/Itee/tasks/commit/fb38109) (tasks) reintroduce patch task to fix jsdoc config file available types
|
|
6
|
+
|
|
1
7
|
# [v1.1.1](https://github.com/Itee/tasks/compare/v1.1.0...v1.1.1) (2026-01-15)
|
|
2
8
|
|
|
3
9
|
# [v1.1.0](https://github.com/Itee/tasks/compare/v1.0.13...v1.1.0) (2026-01-15)
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import {
|
|
2
|
+
getPrettyPackageName,
|
|
3
|
+
getPrettyPackageVersion
|
|
4
|
+
} from '../../sources/_utils.mjs'
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
tags: {
|
|
8
|
+
allowUnknownTags: false,
|
|
9
|
+
dictionaries: [
|
|
10
|
+
'jsdoc',
|
|
11
|
+
'closure'
|
|
12
|
+
]
|
|
13
|
+
},
|
|
14
|
+
source: {
|
|
15
|
+
include: [
|
|
16
|
+
'README.md',
|
|
17
|
+
'gulpfile.mjs',
|
|
18
|
+
'./sources'
|
|
19
|
+
],
|
|
20
|
+
includePattern: '.+\\.(js|mjs|jsx)?$',
|
|
21
|
+
excludePattern: '(node_modules|docs|builds)',
|
|
22
|
+
exclude: []
|
|
23
|
+
},
|
|
24
|
+
sourceType: 'module',
|
|
25
|
+
plugins: [],
|
|
26
|
+
recurseDepth: 5,
|
|
27
|
+
opts: {
|
|
28
|
+
template: './node_modules/ink-docstrap/template',
|
|
29
|
+
access: 'all',
|
|
30
|
+
debug: false,
|
|
31
|
+
encoding: 'utf8',
|
|
32
|
+
destination: 'docs',
|
|
33
|
+
recurse: true,
|
|
34
|
+
verbose: true,
|
|
35
|
+
private: true
|
|
36
|
+
},
|
|
37
|
+
templates: {
|
|
38
|
+
cleverLinks: false,
|
|
39
|
+
monospaceLinks: false,
|
|
40
|
+
navType: 'inline',
|
|
41
|
+
theme: 'cyborg',
|
|
42
|
+
syntaxTheme: 'dark',
|
|
43
|
+
linenums: true,
|
|
44
|
+
collapseSymbols: false,
|
|
45
|
+
sort: 'longname, version, since',
|
|
46
|
+
search: true,
|
|
47
|
+
systemName: `${ getPrettyPackageName() } ${ getPrettyPackageVersion() }`,
|
|
48
|
+
footer: '',
|
|
49
|
+
copyright: 'Copyright 2015-Present <a href="https://github.com/Itee">Itee</a> (Tristan Valcke)',
|
|
50
|
+
includeDate: false,
|
|
51
|
+
inverseNav: false,
|
|
52
|
+
outputSourceFiles: true,
|
|
53
|
+
outputSourcePath: true
|
|
54
|
+
}
|
|
55
|
+
}
|