@itee/tasks 1.0.12

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 (43) hide show
  1. package/.idea/inspectionProfiles/Project_Default.xml +6 -0
  2. package/.idea/modules.xml +8 -0
  3. package/.idea/tasks.iml +8 -0
  4. package/.idea/vcs.xml +6 -0
  5. package/CHANGELOG.md +56 -0
  6. package/README.md +1 -0
  7. package/configs/builds/build.conf.mjs +1 -0
  8. package/configs/cleans/clean.conf.mjs +1 -0
  9. package/configs/docs/doc.conf.json +1 -0
  10. package/configs/lints/lint.conf.mjs +91 -0
  11. package/configs/refresh.conf.mjs +1 -0
  12. package/configs/tests/benchmarks/compute-benchmarks.conf.mjs +5 -0
  13. package/configs/tests/benchmarks/run-benchmarks-for-frontend.conf.mjs +37 -0
  14. package/configs/tests/benchmarks/run-benchmarks.conf.mjs +7 -0
  15. package/configs/tests/bundlings/check-bundling-from-esm-build-import.conf.mjs +45 -0
  16. package/configs/tests/bundlings/check-bundling-from-esm-files-direct.conf.mjs +51 -0
  17. package/configs/tests/bundlings/check-bundling-from-esm-files-import.conf.mjs +48 -0
  18. package/configs/tests/units/compute-unit-tests.conf.mjs +5 -0
  19. package/configs/tests/units/run-unit-tests-for-frontend.conf.mjs +14 -0
  20. package/configs/tests/units/run-unit-tests.conf.mjs +7 -0
  21. package/package.json +100 -0
  22. package/sources/_utils.mjs +412 -0
  23. package/sources/builds/build.task.mjs +52 -0
  24. package/sources/cleans/clean.task.mjs +32 -0
  25. package/sources/docs/doc.task.mjs +48 -0
  26. package/sources/helps/help.task.mjs +155 -0
  27. package/sources/index.mjs +21 -0
  28. package/sources/lints/lint.task.mjs +46 -0
  29. package/sources/refresh.mjs +100 -0
  30. package/sources/releases/release.task.mjs +32 -0
  31. package/sources/tests/benchmarks/compute-benchmarks.task.mjs +236 -0
  32. package/sources/tests/benchmarks/run-benchmarks-for-backend.task.mjs +43 -0
  33. package/sources/tests/benchmarks/run-benchmarks-for-frontend.task.mjs +48 -0
  34. package/sources/tests/benchmarks/run-benchmarks.task.mjs +16 -0
  35. package/sources/tests/bundlings/check-bundling-from-esm-build-import.task.mjs +127 -0
  36. package/sources/tests/bundlings/check-bundling-from-esm-files-direct.task.mjs +94 -0
  37. package/sources/tests/bundlings/check-bundling-from-esm-files-import.task.mjs +113 -0
  38. package/sources/tests/bundlings/check-bundling.task.mjs +24 -0
  39. package/sources/tests/run-tests.task.mjs +22 -0
  40. package/sources/tests/units/compute-unit-tests.task.mjs +547 -0
  41. package/sources/tests/units/run-unit-tests-for-backend.task.mjs +48 -0
  42. package/sources/tests/units/run-unit-tests-for-frontend.task.mjs +48 -0
  43. package/sources/tests/units/run-unit-tests.task.mjs +16 -0
@@ -0,0 +1,6 @@
1
+ <component name="InspectionProjectProfileManager">
2
+ <profile version="1.0">
3
+ <option name="myName" value="Project Default" />
4
+ <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
5
+ </profile>
6
+ </component>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/tasks.iml" filepath="$PROJECT_DIR$/.idea/tasks.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="WEB_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$" />
5
+ <orderEntry type="inheritedJdk" />
6
+ <orderEntry type="sourceFolder" forTests="false" />
7
+ </component>
8
+ </module>
package/.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="" vcs="Git" />
5
+ </component>
6
+ </project>
package/CHANGELOG.md ADDED
@@ -0,0 +1,56 @@
1
+ # [v1.0.12](https://github.com/Itee/itee-tasks/compare/v1.0.11...v1.0.12) (2026-01-14)
2
+
3
+ # [v1.0.11](https://github.com/Itee/itee-tasks/compare/v1.0.10...v1.0.11) (2026-01-14)
4
+
5
+ # [v1.0.10](https://github.com/Itee/itee-tasks/compare/v1.0.9...v1.0.10) (2026-01-14)
6
+
7
+ # [v1.0.9](https://github.com/Itee/itee-tasks/compare/v1.0.8...v1.0.9) (2026-01-14)
8
+
9
+ # [v1.0.8](https://github.com/Itee/itee-tasks/compare/v1.0.7...v1.0.8) (2026-01-14)
10
+
11
+ ## 🐛 Bug Fixes
12
+ - [`5b4e026`](https://github.com/Itee/itee-tasks/commit/5b4e026) (utils) fix management of task file that does not contain .task in their filename
13
+
14
+ # [v1.0.7](https://github.com/Itee/itee-tasks/compare/v1.0.6...v1.0.7) (2026-01-14)
15
+
16
+ ## 🐛 Bug Fixes
17
+ - [`733b1f3`](https://github.com/Itee/itee-tasks/commit/733b1f3) (utils) take care of the order of configurations files between package and default
18
+
19
+ # [v1.0.6](https://github.com/Itee/itee-tasks/compare/v1.0.5...v1.0.6) (2026-01-14)
20
+
21
+ ## 🐛 Bug Fixes
22
+ - [`53d9dac`](https://github.com/Itee/itee-tasks/commit/53d9dac) (utils) fix search config for different kind of config files (js, mjs and json)
23
+
24
+ # [v1.0.5](https://github.com/Itee/itee-tasks/compare/v1.0.4...v1.0.5) (2026-01-14)
25
+
26
+ ## 🐛 Bug Fixes
27
+ - [`d46c8f8`](https://github.com/Itee/itee-tasks/commit/d46c8f8) (check-bundling) fix wrong package import path
28
+ - [`6bd2598`](https://github.com/Itee/itee-tasks/commit/6bd2598) (compute-benchmarks) fix wrong package import path
29
+
30
+ # [v1.0.4](https://github.com/Itee/itee-tasks/compare/v1.0.3...v1.0.4) (2026-01-13)
31
+
32
+ # [v1.0.3](https://github.com/Itee/itee-tasks/compare/v1.0.2...v1.0.3) (2026-01-13)
33
+
34
+ # [v1.0.2](https://github.com/Itee/itee-tasks/compare/v1.0.1...v1.0.2) (2026-01-13)
35
+
36
+ # [v1.0.1](https://github.com/Itee/itee-tasks/compare/v1.0.0...v1.0.1) (2026-01-13)
37
+
38
+ ## 🐛 Bug Fixes
39
+ - [`7caa5dc`](https://github.com/Itee/itee-tasks/commit/7caa5dc) (package) apply npm pkg fix
40
+
41
+ # v1.0.0 (2026-01-13)
42
+
43
+ ## ✨ New Features
44
+ - [`77611b0`](https://github.com/Itee/itee-tasks/commit/77611b0) (utils) export utils stuff
45
+
46
+ ## 🐛 Bug Fixes
47
+ - [`9f2219f`](https://github.com/Itee/itee-tasks/commit/9f2219f) (package) fix main entry point
48
+ - [`b23da82`](https://github.com/Itee/itee-tasks/commit/b23da82) (package) fix entry point again
49
+ - [`df4e770`](https://github.com/Itee/itee-tasks/commit/df4e770) (refresh) fix config file name
50
+ - [`c59293d`](https://github.com/Itee/itee-tasks/commit/c59293d) (compute-unit-tests) fix missing definition of cyan color
51
+ - [`0136cd5`](https://github.com/Itee/itee-tasks/commit/0136cd5) (utils) fix wrong variable name
52
+ - [`66b05dc`](https://github.com/Itee/itee-tasks/commit/66b05dc) (utils) fix wrong variable name again
53
+ - [`6b15261`](https://github.com/Itee/itee-tasks/commit/6b15261) (config) add missing config for refreshing tasks
54
+ - [`992a56f`](https://github.com/Itee/itee-tasks/commit/992a56f) (refresh) remove deleted patch task from available task list
55
+ - [`52ee2a5`](https://github.com/Itee/itee-tasks/commit/52ee2a5) (utils) fix undefined argument usage
56
+ - [`406189e`](https://github.com/Itee/itee-tasks/commit/406189e) (global) try to fix async bug on module load
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # @itee/tasks
@@ -0,0 +1 @@
1
+ export default []
@@ -0,0 +1 @@
1
+ export default []
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,91 @@
1
+ import js from '@eslint/js'
2
+ import mocha from 'eslint-plugin-mocha'
3
+ import {
4
+ defineConfig,
5
+ globalIgnores
6
+ } from 'eslint/config'
7
+
8
+ export default defineConfig( [
9
+ globalIgnores( [
10
+ '.github',
11
+ '.idea',
12
+ 'builds',
13
+ 'docs'
14
+ ] ),
15
+ {
16
+ linterOptions: {
17
+ noInlineConfig: false,
18
+ reportUnusedDisableDirectives: 'error',
19
+ reportUnusedInlineConfigs: 'error'
20
+ }
21
+ },
22
+ {
23
+ name: 'sources',
24
+ files: [ 'sources/**/*.js' ],
25
+ ignores: [],
26
+ plugins: { js },
27
+ extends: [ 'js/recommended' ],
28
+ rules: {
29
+ 'no-multiple-empty-lines': [
30
+ 'error',
31
+ {
32
+ 'max': 2
33
+ }
34
+ ],
35
+ 'no-mixed-spaces-and-tabs': 'error',
36
+ 'no-console': 'warn',
37
+ 'no-unused-vars': 'error',
38
+ 'no-multi-spaces': [
39
+ 'error',
40
+ {
41
+ 'exceptions': {
42
+ 'Property': true,
43
+ 'ImportDeclaration': true,
44
+ 'VariableDeclarator': true,
45
+ 'AssignmentExpression': true
46
+ }
47
+ }
48
+ ],
49
+ 'key-spacing': [
50
+ 'error',
51
+ {
52
+ 'align': {
53
+ 'beforeColon': false,
54
+ 'afterColon': true,
55
+ 'on': 'value'
56
+ }
57
+ }
58
+ ]
59
+ }
60
+ },
61
+ {
62
+ name: 'tests/benchmarks',
63
+ files: [ 'tests/benchmarks/**/*.js' ],
64
+ ignores: [ 'tests/benchmarks/builds/*' ],
65
+ plugins: { js },
66
+ extends: [ 'js/recommended' ],
67
+ languageOptions: {
68
+ globals: {
69
+ Benchmark: 'readonly'
70
+ },
71
+ }
72
+ },
73
+ {
74
+ name: 'tests/units',
75
+ files: [ 'tests/units/**/*.mjs' ],
76
+ ignores: [ 'tests/units/builds/*' ],
77
+ plugins: { js },
78
+ extends: [ 'js/recommended' ],
79
+ languageOptions: {
80
+ globals: {
81
+ describe: 'readonly',
82
+ it: 'readonly',
83
+ },
84
+ }
85
+ },
86
+ {
87
+ files: [ 'tests/units/**/*.mjs' ],
88
+ ignores: [ 'tests/units/builds/*' ],
89
+ ...mocha.configs.recommended,
90
+ }
91
+ ] )
@@ -0,0 +1 @@
1
+ export default []
@@ -0,0 +1,5 @@
1
+ import { packageName } from '../../../sources/_utils.mjs'
2
+
3
+ export default [
4
+ `${ packageName }.js`
5
+ ]
@@ -0,0 +1,37 @@
1
+ import { jsonReporter } from '@itee/json-reporter'
2
+ import { playwrightLauncher } from '@web/test-runner-playwright'
3
+
4
+ export default {
5
+ files: [
6
+ 'tests/benchmarks/**/*.bench.js'
7
+ ],
8
+ debug: false,
9
+ nodeResolve: true,
10
+ browsers: [
11
+ playwrightLauncher( { product: 'chromium' } ),
12
+ playwrightLauncher( { product: 'webkit' } ),
13
+ playwrightLauncher( { product: 'firefox' } ),
14
+ ],
15
+ testFramework: {
16
+ path: 'node_modules/@itee/benchmarks-framework/benchmarks-framework.js',
17
+ config: {
18
+ foo: 'bar'
19
+ }
20
+ },
21
+ testRunnerHtml: testFramework => `
22
+ <!DOCTYPE html>
23
+ <html>
24
+ <body>
25
+ <script type="module" src="node_modules/lodash/lodash.js"></script>
26
+ <script type="module" src="node_modules/platform/platform.js"></script>
27
+ <script type="module" src="node_modules/benchmark/benchmark.js"></script>
28
+ <script type="module" src="${ testFramework }"></script>
29
+ </body>
30
+ </html>
31
+ `,
32
+ reporters: [
33
+ jsonReporter( {
34
+ reportProgress: true
35
+ } )
36
+ ]
37
+ }
@@ -0,0 +1,7 @@
1
+ import { join } from 'path'
2
+ import { iteePackageSourcesDirectory } from '../../../sources/_utils.mjs'
3
+
4
+ export default [
5
+ join( iteePackageSourcesDirectory, 'tests/benchmarks/run-benchmarks-for-backend.task.mjs' ),
6
+ join( iteePackageSourcesDirectory, 'tests/benchmarks/run-benchmarks-for-frontend.task.mjs' )
7
+ ]
@@ -0,0 +1,45 @@
1
+ import nodeResolve from '@rollup/plugin-node-resolve'
2
+ import cleanup from 'rollup-plugin-cleanup'
3
+
4
+ export default {
5
+ input: null,
6
+ external: [ '' ],
7
+ plugins: [
8
+ nodeResolve( {
9
+ preferBuiltins: true
10
+ } ),
11
+ cleanup( {
12
+ comments: 'all' // else remove __PURE__ declaration... -_-'
13
+ } )
14
+ ],
15
+ onwarn: ( {
16
+ loc,
17
+ frame,
18
+ message
19
+ } ) => {
20
+
21
+ // Ignore some errors
22
+ if ( message.includes( 'Circular dependency' ) ) { return }
23
+ if ( message.includes( 'Generated an empty chunk' ) ) { return }
24
+
25
+ if ( loc ) {
26
+ process.stderr.write( `/!\\ ${ loc.file } (${ loc.line }:${ loc.column }) ${ frame } ${ message }\n` )
27
+ } else {
28
+ process.stderr.write( `/!\\ ${ message }\n` )
29
+ }
30
+
31
+ },
32
+ treeshake: {
33
+ moduleSideEffects: true,
34
+ annotations: true,
35
+ correctVarValueBeforeDeclaration: true,
36
+ propertyReadSideEffects: true,
37
+ tryCatchDeoptimization: true,
38
+ unknownGlobalSideEffects: true
39
+ },
40
+ output: {
41
+ indent: '\t',
42
+ format: 'esm',
43
+ file: null
44
+ }
45
+ }
@@ -0,0 +1,51 @@
1
+ import nodeResolve from '@rollup/plugin-node-resolve'
2
+ import cleanup from 'rollup-plugin-cleanup'
3
+ import { packageName } from '../../../sources/index.mjs'
4
+
5
+ export default {
6
+ ignoredFiles: [
7
+ `${ packageName }.js`
8
+ ],
9
+ buildOptions: {
10
+ input: null,
11
+ external: [ '' ],
12
+ plugins: [
13
+ nodeResolve( {
14
+ preferBuiltins: true
15
+ } ),
16
+ cleanup( {
17
+ comments: 'none'
18
+ } )
19
+ ],
20
+ onwarn: ( {
21
+ loc,
22
+ frame,
23
+ message
24
+ } ) => {
25
+
26
+ // Ignore some errors
27
+ if ( message.includes( 'Circular dependency' ) ) { return }
28
+ if ( message.includes( 'Generated an empty chunk' ) ) { return }
29
+
30
+ if ( loc ) {
31
+ process.stderr.write( `/!\\ ${ loc.file } (${ loc.line }:${ loc.column }) ${ frame } ${ message }\n` )
32
+ } else {
33
+ process.stderr.write( `/!\\ ${ message }\n` )
34
+ }
35
+
36
+ },
37
+ treeshake: {
38
+ moduleSideEffects: true,
39
+ annotations: true,
40
+ correctVarValueBeforeDeclaration: true,
41
+ propertyReadSideEffects: true,
42
+ tryCatchDeoptimization: true,
43
+ unknownGlobalSideEffects: true
44
+ },
45
+ output: {
46
+ indent: '\t',
47
+ format: 'esm',
48
+ file: null
49
+ }
50
+ }
51
+ }
@@ -0,0 +1,48 @@
1
+ import nodeResolve from '@rollup/plugin-node-resolve'
2
+ import cleanup from 'rollup-plugin-cleanup'
3
+ import { packageName } from '../../../sources/index.mjs'
4
+
5
+ export default {
6
+ ignoredFiles: [
7
+ `${ packageName }.js`
8
+ ],
9
+ buildOptions: {
10
+ input: null,
11
+ plugins: [
12
+ nodeResolve(),
13
+ cleanup( {
14
+ comments: 'all' // else remove __PURE__ declaration... -_-'
15
+ } )
16
+ ],
17
+ onwarn: ( {
18
+ loc,
19
+ frame,
20
+ message
21
+ } ) => {
22
+
23
+ // Ignore some errors
24
+ if ( message.includes( 'Circular dependency' ) ) { return }
25
+ if ( message.includes( 'Generated an empty chunk' ) ) { return }
26
+
27
+ if ( loc ) {
28
+ process.stderr.write( `/!\\ ${ loc.file } (${ loc.line }:${ loc.column }) ${ frame } ${ message }\n` )
29
+ } else {
30
+ process.stderr.write( `/!\\ ${ message }\n` )
31
+ }
32
+
33
+ },
34
+ treeshake: {
35
+ moduleSideEffects: true,
36
+ annotations: true,
37
+ correctVarValueBeforeDeclaration: true,
38
+ propertyReadSideEffects: true,
39
+ tryCatchDeoptimization: true,
40
+ unknownGlobalSideEffects: true
41
+ },
42
+ output: {
43
+ indent: '\t',
44
+ format: 'esm',
45
+ file: null
46
+ }
47
+ }
48
+ }
@@ -0,0 +1,5 @@
1
+ import { packageName } from '../../../sources/_utils.mjs'
2
+
3
+ export default [
4
+ `${ packageName }.js`
5
+ ]
@@ -0,0 +1,14 @@
1
+ import { playwrightLauncher } from '@web/test-runner-playwright'
2
+
3
+ export default {
4
+ files: [
5
+ 'tests/units/**/*.unit.mjs'
6
+ ],
7
+ debug: false,
8
+ nodeResolve: true,
9
+ browsers: [
10
+ playwrightLauncher( { product: 'chromium' } ),
11
+ playwrightLauncher( { product: 'webkit' } ),
12
+ playwrightLauncher( { product: 'firefox' } ),
13
+ ]
14
+ }
@@ -0,0 +1,7 @@
1
+ import { join } from 'path'
2
+ import { iteePackageSourcesDirectory } from '../../../sources/_utils.mjs'
3
+
4
+ export default [
5
+ join( iteePackageSourcesDirectory, 'tests/units/run-unit-tests-for-backend.task.mjs' ),
6
+ join( iteePackageSourcesDirectory, 'tests/units/run-unit-tests-for-frontend.task.mjs' )
7
+ ]
package/package.json ADDED
@@ -0,0 +1,100 @@
1
+ {
2
+ "name": "@itee/tasks",
3
+ "version": "1.0.12",
4
+ "description": "Allow to manage all commons itee gulp tasks into one place ",
5
+ "keywords": [
6
+ "itee",
7
+ "gulp",
8
+ "tasks"
9
+ ],
10
+ "author": {
11
+ "name": "Itee (Tristan Valcke)",
12
+ "url": "https://github.com/Itee"
13
+ },
14
+ "contributors": [],
15
+ "license": "BSD-3-Clause",
16
+ "private": false,
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/Itee/tasks.git"
20
+ },
21
+ "type": "module",
22
+ "main": "sources/index.mjs",
23
+ "homepage": "https://github.com/Itee/tasks#readme",
24
+ "bugs": {
25
+ "url": "https://github.com/Itee/tasks/issues"
26
+ },
27
+ "engines": {
28
+ "node": ">=20"
29
+ },
30
+ "scripts": {
31
+ "default": "gulp --tasks",
32
+ "refresh": "node ./sources/refresh.mjs",
33
+ "help": "gulp help",
34
+ "clean": "gulp clean",
35
+ "lint": "gulp lint",
36
+ "doc": "gulp doc",
37
+ "build": "gulp build",
38
+ "tests:run": "gulp run-tests",
39
+ "tests:bundling": "gulp check-bundling",
40
+ "tests:bundling:build-import": "gulp check-bundling-from-esm-build-import",
41
+ "tests:bundling:files-import": "gulp check-bundling-from-esm-files-import",
42
+ "tests:bundling:files-direct": "gulp check-bundling-from-esm-files-direct",
43
+ "tests:benches:compute": "gulp compute-benchmarks",
44
+ "tests:benches:run": "gulp run-benchmarks",
45
+ "tests:benches:run:back": "gulp run-benchmarks-for-backend",
46
+ "tests:benches:run:front": "gulp run-benchmarks-for-frontend",
47
+ "tests:units:compute": "gulp compute-unit-tests",
48
+ "tests:units:run": "gulp run-unit-tests",
49
+ "tests:units:run:back": "gulp run-unit-tests-for-backend",
50
+ "tests:units:run:front": "gulp run-unit-tests-for-frontend",
51
+ "release": "gulp release",
52
+ "semantic-release": "semantic-release --dry-run --no-ci",
53
+ "postversion": "gulp build"
54
+ },
55
+ "devDependencies": {
56
+ "@semantic-release/changelog": "^6.0.3",
57
+ "@semantic-release/git": "^10.0.1",
58
+ "@semantic-release/github": "^12.0.2",
59
+ "@semantic-release/npm": "^13.1.3",
60
+ "cz-emoji": "^1.3.2-canary.2",
61
+ "semantic-release": "^25.0.2",
62
+ "semantic-release-gitmoji": "^1.6.8"
63
+ },
64
+ "dependencies": {
65
+ "@eslint/js": "^9.39.2",
66
+ "@itee/benchmarks-framework": "^1.0.1",
67
+ "@itee/json-reporter": "^1.0.3",
68
+ "@rollup/plugin-commonjs": "^28.0.9",
69
+ "@rollup/plugin-node-resolve": "^16.0.3",
70
+ "@rollup/plugin-terser": "^0.4.4",
71
+ "@web/test-runner": "^0.20.2",
72
+ "@web/test-runner-playwright": "^0.11.1",
73
+ "ansi-colors": "^4.1.3",
74
+ "benchmark": "^2.1.4",
75
+ "del": "^8.0.1",
76
+ "eslint": "^9.39.2",
77
+ "eslint-plugin-mocha": "^11.2.0",
78
+ "fancy-log": "^2.0.0",
79
+ "figlet": "^1.9.4",
80
+ "glob": "^13.0.0",
81
+ "globals": "^16.5.0",
82
+ "gulp": "^5.0.1",
83
+ "ink-docstrap": "^1.3.2",
84
+ "itee-validators": "^6.0.0",
85
+ "jsdoc": "^4.0.5",
86
+ "lodash": "^4.17.21",
87
+ "mochawesome": "^7.1.4",
88
+ "platform": "^1.3.6",
89
+ "rollup": "^4.55.1",
90
+ "rollup-plugin-cleanup": "^3.2.1",
91
+ "rollup-plugin-re": "^1.0.7"
92
+ },
93
+ "overrides": {
94
+ "semantic-release-gitmoji": {
95
+ "semantic-release": "<26",
96
+ "@semantic-release/github": "12.0.1",
97
+ "@semantic-release/npm": "13.1.1"
98
+ }
99
+ }
100
+ }