@jsenv/cli 0.1.9 → 0.1.11

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 (28) hide show
  1. package/package.json +1 -1
  2. package/template-node-package/.jsenv/jsenv_tests_output.txt +1 -1
  3. package/template-node-package/package.json +2 -2
  4. package/template-web/.jsenv/chrome@127.00/@fs/Users/damien.maillard/dev/perso/jsenv-core/dist/js/ribbon.js +28 -3
  5. package/template-web/.jsenv/chrome@127.00/tests/animals.test.html@L13C5-L30C14.js +1 -1
  6. package/template-web/.jsenv/jsenv_tests_output.txt +2 -2
  7. package/template-web/package.json +4 -4
  8. package/template-web-components/.jsenv/chrome@127.00/@fs/Users/damien.maillard/dev/perso/jsenv-core/dist/js/ribbon.js +28 -3
  9. package/template-web-components/.jsenv/chrome@127.00/tests/animals.test.html@L13C5-L30C14.js +1 -1
  10. package/template-web-components/.jsenv/jsenv_tests_output.txt +1 -1
  11. package/template-web-components/package.json +4 -4
  12. package/template-web-preact/.jsenv/chrome@127.00/@fs/Users/damien.maillard/dev/perso/jsenv-core/dist/js/ribbon.js +28 -3
  13. package/template-web-preact/.jsenv/chrome@127.00/app/app.jsx +1 -1
  14. package/template-web-preact/.jsenv/chrome@127.00/app/counter.jsx +1 -1
  15. package/template-web-preact/.jsenv/chrome@127.00/tests/animals.test.html@L13C5-L30C14.js +1 -1
  16. package/template-web-preact/.jsenv/jsenv_tests_output.txt +2 -2
  17. package/template-web-preact/package.json +7 -7
  18. package/template-web-react/.jsenv/chrome@127.00/@fs/Users/damien.maillard/dev/perso/jsenv-core/dist/js/ribbon.js +28 -3
  19. package/template-web-react/.jsenv/chrome@127.00/app/app.jsx +1 -1
  20. package/template-web-react/.jsenv/chrome@127.00/app/counter.jsx +1 -1
  21. package/template-web-react/.jsenv/chrome@127.00/cjs_to_esm/@fs/Users/damien.maillard/dev/perso/jsenv-core/node_modules/react/index.development.js__compile_info__.json +2 -2
  22. package/template-web-react/.jsenv/chrome@127.00/cjs_to_esm/@fs/Users/damien.maillard/dev/perso/jsenv-core/node_modules/react/jsx-dev-runtime.development.js__compile_info__.json +2 -2
  23. package/template-web-react/.jsenv/chrome@127.00/cjs_to_esm/@fs/Users/damien.maillard/dev/perso/jsenv-core/node_modules/react-dom/client.development.js__compile_info__.json +2 -2
  24. package/template-web-react/.jsenv/chrome@127.00/cjs_to_esm/@fs/Users/damien.maillard/dev/perso/jsenv-core/node_modules/react-refresh/runtime.development.js__compile_info__.json +2 -2
  25. package/template-web-react/.jsenv/chrome@127.00/cjs_to_esm/__compile_context__.json +1 -1
  26. package/template-web-react/.jsenv/chrome@127.00/tests/animals.test.html@L13C5-L30C14.js +1 -1
  27. package/template-web-react/.jsenv/jsenv_tests_output.txt +3 -3
  28. package/template-web-react/package.json +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/cli",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "Command Line Interface for jsenv",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -4,5 +4,5 @@ directory: /Users/damien.maillard/dev/perso/jsenv-core/packages/related/cli/temp
4
4
  ✔ 1/1 tests/message.test.mjs [0.02s] (all completed)
5
5
  ------------- 1 execution done --------------
6
6
  status: all completed
7
- duration: 0.1s (setup: 0.004s, execution: 0.1s, teardown: 0s)
7
+ duration: 0.1s (setup: 0.005s, execution: 0.1s, teardown: 0s)
8
8
  ---------------------------------------------
@@ -12,10 +12,10 @@
12
12
  },
13
13
  "devDependencies": {
14
14
  "@jsenv/assert": "4.1.15",
15
- "@jsenv/core": "39.2.17",
15
+ "@jsenv/core": "39.2.19",
16
16
  "@jsenv/eslint-config": "16.5.3",
17
17
  "@jsenv/eslint-import-resolver": "8.1.3",
18
- "@jsenv/test": "3.3.27",
18
+ "@jsenv/test": "3.3.29",
19
19
  "eslint": "8.56.0",
20
20
  "eslint-plugin-import": "2.29.1",
21
21
  "prettier": "3.3.3"
@@ -35,8 +35,7 @@ const injectRibbon = ({ text }) => {
35
35
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
36
36
  text-align: center;
37
37
  user-select: none;
38
- }
39
- `;
38
+ }`;
40
39
  const html = /* html */ `<div id="jsenv_ribbon_container">
41
40
  <style>${css}</style>
42
41
  <div id="jsenv_ribbon">
@@ -64,7 +63,33 @@ const injectRibbon = ({ text }) => {
64
63
  const jsenvRibbonElement = new JsenvRibbonHtmlElement({
65
64
  hidden: toolbarStateInLocalStorage.ribbonDisplayed === false,
66
65
  });
67
- document.body.appendChild(jsenvRibbonElement);
66
+ appendIntoRespectingLineBreaksAndIndentation(
67
+ jsenvRibbonElement,
68
+ document.body,
69
+ );
70
+ };
71
+
72
+ const appendIntoRespectingLineBreaksAndIndentation = (
73
+ node,
74
+ parentNode,
75
+ { indent = 2 } = {},
76
+ ) => {
77
+ const indentMinusOne = " ".repeat(indent - 1);
78
+ const desiredIndent = " ".repeat(indent);
79
+ const previousSibling =
80
+ parentNode.childNodes[parentNode.childNodes.length - 1];
81
+ if (previousSibling && previousSibling.nodeName === "#text") {
82
+ if (previousSibling.nodeValue === `\n${indentMinusOne}`) {
83
+ previousSibling.nodeValue = `\n${desiredIndent}`;
84
+ }
85
+ if (previousSibling.nodeValue !== `\n${desiredIndent}`) {
86
+ previousSibling.nodeValue = `\n${desiredIndent}`;
87
+ }
88
+ } else {
89
+ parentNode.appendChild(document.createTextNode(`\n${desiredIndent}`));
90
+ }
91
+ parentNode.appendChild(node);
92
+ parentNode.appendChild(document.createTextNode(`\n${indentMinusOne}`));
68
93
  };
69
94
 
70
95
  export { injectRibbon };
@@ -1,5 +1,5 @@
1
1
 
2
- import { assert } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/independent/assert/dist/jsenv_assert_browser.js?v=4.1.14";
2
+ import { assert } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/independent/assert/dist/jsenv_assert_browser.js?v=4.1.15";
3
3
  import "/app/animals.js";
4
4
 
5
5
  {
@@ -1,9 +1,9 @@
1
1
  ------------ 2 executions ready -------------
2
2
  directory: /Users/damien.maillard/dev/perso/jsenv-core/packages/related/cli/template-web
3
3
  ---------------------------------------------
4
- ✔ 1/2 src/tests/animals.test.html [chromium/0.1s] (1 completed)
4
+ ✔ 1/2 src/tests/animals.test.html [chromium/0.2s] (1 completed)
5
5
  ✔ 2/2 src/tests/app.test.mjs [node/0.9s] (all completed)
6
6
  ------------- 2 executions done -------------
7
7
  status: all completed
8
- duration: 1.5s (setup: 0.4s, execution: 1.4s, teardown: 0.1s)
8
+ duration: 1.6s (setup: 0.4s, execution: 1.4s, teardown: 0.1s)
9
9
  ---------------------------------------------
@@ -14,15 +14,15 @@
14
14
  "prettier": "prettier --write ."
15
15
  },
16
16
  "devDependencies": {
17
- "@babel/eslint-parser": "7.24.8",
17
+ "@babel/eslint-parser": "7.25.1",
18
18
  "@babel/plugin-syntax-import-assertions": "7.24.7",
19
19
  "@jsenv/assert": "4.1.15",
20
- "@jsenv/core": "39.2.17",
20
+ "@jsenv/core": "39.2.19",
21
21
  "@jsenv/eslint-config": "16.5.3",
22
22
  "@jsenv/eslint-import-resolver": "8.1.3",
23
- "@jsenv/plugin-bundling": "2.7.5",
23
+ "@jsenv/plugin-bundling": "2.7.7",
24
24
  "@jsenv/plugin-minification": "1.5.5",
25
- "@jsenv/test": "3.3.27",
25
+ "@jsenv/test": "3.3.29",
26
26
  "eslint": "8.56.0",
27
27
  "eslint-plugin-html": "8.1.1",
28
28
  "eslint-plugin-import": "2.29.1",
@@ -35,8 +35,7 @@ const injectRibbon = ({ text }) => {
35
35
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
36
36
  text-align: center;
37
37
  user-select: none;
38
- }
39
- `;
38
+ }`;
40
39
  const html = /* html */ `<div id="jsenv_ribbon_container">
41
40
  <style>${css}</style>
42
41
  <div id="jsenv_ribbon">
@@ -64,7 +63,33 @@ const injectRibbon = ({ text }) => {
64
63
  const jsenvRibbonElement = new JsenvRibbonHtmlElement({
65
64
  hidden: toolbarStateInLocalStorage.ribbonDisplayed === false,
66
65
  });
67
- document.body.appendChild(jsenvRibbonElement);
66
+ appendIntoRespectingLineBreaksAndIndentation(
67
+ jsenvRibbonElement,
68
+ document.body,
69
+ );
70
+ };
71
+
72
+ const appendIntoRespectingLineBreaksAndIndentation = (
73
+ node,
74
+ parentNode,
75
+ { indent = 2 } = {},
76
+ ) => {
77
+ const indentMinusOne = " ".repeat(indent - 1);
78
+ const desiredIndent = " ".repeat(indent);
79
+ const previousSibling =
80
+ parentNode.childNodes[parentNode.childNodes.length - 1];
81
+ if (previousSibling && previousSibling.nodeName === "#text") {
82
+ if (previousSibling.nodeValue === `\n${indentMinusOne}`) {
83
+ previousSibling.nodeValue = `\n${desiredIndent}`;
84
+ }
85
+ if (previousSibling.nodeValue !== `\n${desiredIndent}`) {
86
+ previousSibling.nodeValue = `\n${desiredIndent}`;
87
+ }
88
+ } else {
89
+ parentNode.appendChild(document.createTextNode(`\n${desiredIndent}`));
90
+ }
91
+ parentNode.appendChild(node);
92
+ parentNode.appendChild(document.createTextNode(`\n${indentMinusOne}`));
68
93
  };
69
94
 
70
95
  export { injectRibbon };
@@ -1,5 +1,5 @@
1
1
 
2
- import { assert } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/independent/assert/dist/jsenv_assert_browser.js?v=4.1.14";
2
+ import { assert } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/independent/assert/dist/jsenv_assert_browser.js?v=4.1.15";
3
3
  import "/app/animals.js";
4
4
 
5
5
  {
@@ -5,5 +5,5 @@ directory: /Users/damien.maillard/dev/perso/jsenv-core/packages/related/cli/temp
5
5
  ✔ 2/2 src/tests/app.test.mjs [node/0.9s] (all completed)
6
6
  ------------- 2 executions done -------------
7
7
  status: all completed
8
- duration: 1.6s (setup: 0.4s, execution: 1.4s, teardown: 0.1s)
8
+ duration: 1.5s (setup: 0.4s, execution: 1.4s, teardown: 0.1s)
9
9
  ---------------------------------------------
@@ -15,16 +15,16 @@
15
15
  "playwright:install": "npx playwright install-deps && npx playwright install"
16
16
  },
17
17
  "devDependencies": {
18
- "@babel/eslint-parser": "7.24.8",
18
+ "@babel/eslint-parser": "7.25.1",
19
19
  "@babel/plugin-syntax-import-assertions": "7.24.7",
20
20
  "@jsenv/custom-elements-redefine": "0.0.1",
21
21
  "@jsenv/assert": "4.1.15",
22
- "@jsenv/core": "39.2.17",
23
- "@jsenv/plugin-bundling": "2.7.5",
22
+ "@jsenv/core": "39.2.19",
23
+ "@jsenv/plugin-bundling": "2.7.7",
24
24
  "@jsenv/plugin-minification": "1.5.5",
25
25
  "@jsenv/eslint-config": "16.5.3",
26
26
  "@jsenv/eslint-import-resolver": "8.1.3",
27
- "@jsenv/test": "3.3.27",
27
+ "@jsenv/test": "3.3.29",
28
28
  "eslint": "8.56.0",
29
29
  "eslint-plugin-html": "8.1.1",
30
30
  "eslint-plugin-import": "2.29.1",
@@ -35,8 +35,7 @@ const injectRibbon = ({ text }) => {
35
35
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
36
36
  text-align: center;
37
37
  user-select: none;
38
- }
39
- `;
38
+ }`;
40
39
  const html = /* html */ `<div id="jsenv_ribbon_container">
41
40
  <style>${css}</style>
42
41
  <div id="jsenv_ribbon">
@@ -64,7 +63,33 @@ const injectRibbon = ({ text }) => {
64
63
  const jsenvRibbonElement = new JsenvRibbonHtmlElement({
65
64
  hidden: toolbarStateInLocalStorage.ribbonDisplayed === false,
66
65
  });
67
- document.body.appendChild(jsenvRibbonElement);
66
+ appendIntoRespectingLineBreaksAndIndentation(
67
+ jsenvRibbonElement,
68
+ document.body,
69
+ );
70
+ };
71
+
72
+ const appendIntoRespectingLineBreaksAndIndentation = (
73
+ node,
74
+ parentNode,
75
+ { indent = 2 } = {},
76
+ ) => {
77
+ const indentMinusOne = " ".repeat(indent - 1);
78
+ const desiredIndent = " ".repeat(indent);
79
+ const previousSibling =
80
+ parentNode.childNodes[parentNode.childNodes.length - 1];
81
+ if (previousSibling && previousSibling.nodeName === "#text") {
82
+ if (previousSibling.nodeValue === `\n${indentMinusOne}`) {
83
+ previousSibling.nodeValue = `\n${desiredIndent}`;
84
+ }
85
+ if (previousSibling.nodeValue !== `\n${desiredIndent}`) {
86
+ previousSibling.nodeValue = `\n${desiredIndent}`;
87
+ }
88
+ } else {
89
+ parentNode.appendChild(document.createTextNode(`\n${desiredIndent}`));
90
+ }
91
+ parentNode.appendChild(node);
92
+ parentNode.appendChild(document.createTextNode(`\n${indentMinusOne}`));
68
93
  };
69
94
 
70
95
  export { injectRibbon };
@@ -1,6 +1,6 @@
1
1
  import { createImportMetaHot } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/dist/js/import_meta_hot.js";
2
2
  import.meta.hot = createImportMetaHot(import.meta.url);
3
- import { installPreactRefresh } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/related/plugin-preact/src/client/preact_refresh.js?v=1.6.13";
3
+ import { installPreactRefresh } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/related/plugin-preact/src/client/preact_refresh.js?v=1.6.14";
4
4
  const __preact_refresh__ = installPreactRefresh("file:///Users/damien.maillard/dev/perso/jsenv-core/packages/related/cli/template-web-preact/src/app/app.jsx");
5
5
  var _jsxFileName = "/Users/damien.maillard/dev/perso/jsenv-core/packages/related/cli/template-web-preact/src/app/app.jsx",
6
6
  _s = $RefreshSig$();
@@ -1,6 +1,6 @@
1
1
  import { createImportMetaHot } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/dist/js/import_meta_hot.js";
2
2
  import.meta.hot = createImportMetaHot(import.meta.url);
3
- import { installPreactRefresh } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/related/plugin-preact/src/client/preact_refresh.js?v=1.6.13";
3
+ import { installPreactRefresh } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/related/plugin-preact/src/client/preact_refresh.js?v=1.6.14";
4
4
  const __preact_refresh__ = installPreactRefresh("file:///Users/damien.maillard/dev/perso/jsenv-core/packages/related/cli/template-web-preact/src/app/counter.jsx");
5
5
  var _jsxFileName = "/Users/damien.maillard/dev/perso/jsenv-core/packages/related/cli/template-web-preact/src/app/counter.jsx",
6
6
  _s = $RefreshSig$();
@@ -1,5 +1,5 @@
1
1
 
2
- import { assert } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/independent/assert/dist/jsenv_assert_browser.js?v=4.1.14";
2
+ import { assert } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/independent/assert/dist/jsenv_assert_browser.js?v=4.1.15";
3
3
  import "/app/animals.js";
4
4
 
5
5
  {
@@ -2,8 +2,8 @@
2
2
  directory: /Users/damien.maillard/dev/perso/jsenv-core/packages/related/cli/template-web-preact
3
3
  ---------------------------------------------
4
4
  ✔ 1/2 src/tests/animals.test.html [chromium/0.3s] (1 completed)
5
- ✔ 2/2 src/tests/app.test.mjs [node/1.5s] (all completed)
5
+ ✔ 2/2 src/tests/app.test.mjs [node/1.1s] (all completed)
6
6
  ------------- 2 executions done -------------
7
7
  status: all completed
8
- duration: 2.2s (setup: 0.4s, execution: 2.1s, teardown: 0.1s)
8
+ duration: 1.8s (setup: 0.4s, execution: 1.6s, teardown: 0.1s)
9
9
  ---------------------------------------------
@@ -18,18 +18,18 @@
18
18
  "preact": "10.23.1"
19
19
  },
20
20
  "devDependencies": {
21
- "@babel/eslint-parser": "7.24.8",
21
+ "@babel/eslint-parser": "7.25.1",
22
22
  "@babel/plugin-syntax-import-assertions": "7.24.7",
23
- "@babel/plugin-transform-react-jsx": "7.24.7",
23
+ "@babel/plugin-transform-react-jsx": "7.25.2",
24
24
  "@jsenv/assert": "4.1.15",
25
- "@jsenv/core": "39.2.17",
26
- "@jsenv/plugin-preact": "1.6.13",
27
- "@jsenv/plugin-bundling": "2.7.5",
25
+ "@jsenv/core": "39.2.19",
26
+ "@jsenv/plugin-preact": "1.6.15",
27
+ "@jsenv/plugin-bundling": "2.7.7",
28
28
  "@jsenv/plugin-minification": "1.5.5",
29
29
  "@jsenv/eslint-config": "16.5.3",
30
30
  "@jsenv/eslint-import-resolver": "8.1.3",
31
- "@jsenv/test": "3.3.27",
32
- "eslint": "9.7.0",
31
+ "@jsenv/test": "3.3.29",
32
+ "eslint": "8.56.0",
33
33
  "eslint-plugin-html": "8.1.1",
34
34
  "eslint-plugin-import": "2.29.1",
35
35
  "eslint-plugin-react": "7.35.0",
@@ -35,8 +35,7 @@ const injectRibbon = ({ text }) => {
35
35
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
36
36
  text-align: center;
37
37
  user-select: none;
38
- }
39
- `;
38
+ }`;
40
39
  const html = /* html */ `<div id="jsenv_ribbon_container">
41
40
  <style>${css}</style>
42
41
  <div id="jsenv_ribbon">
@@ -64,7 +63,33 @@ const injectRibbon = ({ text }) => {
64
63
  const jsenvRibbonElement = new JsenvRibbonHtmlElement({
65
64
  hidden: toolbarStateInLocalStorage.ribbonDisplayed === false,
66
65
  });
67
- document.body.appendChild(jsenvRibbonElement);
66
+ appendIntoRespectingLineBreaksAndIndentation(
67
+ jsenvRibbonElement,
68
+ document.body,
69
+ );
70
+ };
71
+
72
+ const appendIntoRespectingLineBreaksAndIndentation = (
73
+ node,
74
+ parentNode,
75
+ { indent = 2 } = {},
76
+ ) => {
77
+ const indentMinusOne = " ".repeat(indent - 1);
78
+ const desiredIndent = " ".repeat(indent);
79
+ const previousSibling =
80
+ parentNode.childNodes[parentNode.childNodes.length - 1];
81
+ if (previousSibling && previousSibling.nodeName === "#text") {
82
+ if (previousSibling.nodeValue === `\n${indentMinusOne}`) {
83
+ previousSibling.nodeValue = `\n${desiredIndent}`;
84
+ }
85
+ if (previousSibling.nodeValue !== `\n${desiredIndent}`) {
86
+ previousSibling.nodeValue = `\n${desiredIndent}`;
87
+ }
88
+ } else {
89
+ parentNode.appendChild(document.createTextNode(`\n${desiredIndent}`));
90
+ }
91
+ parentNode.appendChild(node);
92
+ parentNode.appendChild(document.createTextNode(`\n${indentMinusOne}`));
68
93
  };
69
94
 
70
95
  export { injectRibbon };
@@ -1,6 +1,6 @@
1
1
  import { createImportMetaHot } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/dist/js/import_meta_hot.js";
2
2
  import.meta.hot = createImportMetaHot(import.meta.url);
3
- import { installReactRefresh } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/related/plugin-react/src/client/react_refresh.js?v=1.5.18"
3
+ import { installReactRefresh } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/related/plugin-react/src/client/react_refresh.js?v=1.5.19"
4
4
  const __react_refresh__ = installReactRefresh("file:///Users/damien.maillard/dev/perso/jsenv-core/packages/related/cli/template-web-react/src/app/app.jsx");
5
5
  var _jsxFileName = "/Users/damien.maillard/dev/perso/jsenv-core/packages/related/cli/template-web-react/src/app/app.jsx",
6
6
  _s = $RefreshSig$();
@@ -1,6 +1,6 @@
1
1
  import { createImportMetaHot } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/dist/js/import_meta_hot.js";
2
2
  import.meta.hot = createImportMetaHot(import.meta.url);
3
- import { installReactRefresh } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/related/plugin-react/src/client/react_refresh.js?v=1.5.18"
3
+ import { installReactRefresh } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/related/plugin-react/src/client/react_refresh.js?v=1.5.19"
4
4
  const __react_refresh__ = installReactRefresh("file:///Users/damien.maillard/dev/perso/jsenv-core/packages/related/cli/template-web-react/src/app/counter.jsx");
5
5
  var _jsxFileName = "/Users/damien.maillard/dev/perso/jsenv-core/packages/related/cli/template-web-react/src/app/counter.jsx",
6
6
  _s = $RefreshSig$();
@@ -13,6 +13,6 @@
13
13
  "etag": "\"24de3-spPgCr6CjarK+3IKyYvr7IbL5og\""
14
14
  }
15
15
  },
16
- "createdMs": 1722504879446,
17
- "lastModifiedMs": 1722504879446
16
+ "createdMs": 1722698810308,
17
+ "lastModifiedMs": 1722698810308
18
18
  }
@@ -21,6 +21,6 @@
21
21
  "etag": "\"374fe-fsntEzQ5xArVDdjB6uhY0/KcLB4\""
22
22
  }
23
23
  },
24
- "createdMs": 1722504879742,
25
- "lastModifiedMs": 1722504879742
24
+ "createdMs": 1722698810617,
25
+ "lastModifiedMs": 1722698810617
26
26
  }
@@ -25,6 +25,6 @@
25
25
  "etag": "\"1c0ec9-jp5hhibqAGBDNhD0WPCcb2oc9is\""
26
26
  }
27
27
  },
28
- "createdMs": 1722504880706,
29
- "lastModifiedMs": 1722504880706
28
+ "createdMs": 1722698811560,
29
+ "lastModifiedMs": 1722698811560
30
30
  }
@@ -13,6 +13,6 @@
13
13
  "etag": "\"91a6-/corAz+8KjQ1ynvFFf9VFVk220k\""
14
14
  }
15
15
  },
16
- "createdMs": 1722504879138,
17
- "lastModifiedMs": 1722504879138
16
+ "createdMs": 1722698810012,
17
+ "lastModifiedMs": 1722698810012
18
18
  }
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "2.8.7"
2
+ "version": "2.8.8"
3
3
  }
@@ -1,5 +1,5 @@
1
1
 
2
- import { assert } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/independent/assert/dist/jsenv_assert_browser.js?v=4.1.14";
2
+ import { assert } from "/@fs/Users/damien.maillard/dev/perso/jsenv-core/packages/independent/assert/dist/jsenv_assert_browser.js?v=4.1.15";
3
3
  import "/app/animals.js";
4
4
 
5
5
  {
@@ -1,9 +1,9 @@
1
1
  ------------ 2 executions ready -------------
2
2
  directory: /Users/damien.maillard/dev/perso/jsenv-core/packages/related/cli/template-web-react
3
3
  ---------------------------------------------
4
- ✔ 1/2 src/tests/animals.test.html [chromium/1.8s] (1 completed)
5
- ✔ 2/2 src/tests/app.test.mjs [node/2.8s] (all completed)
4
+ ✔ 1/2 src/tests/animals.test.html [chromium/0.3s] (1 completed)
5
+ ✔ 2/2 src/tests/app.test.mjs [node/4.1s] (all completed)
6
6
  ------------- 2 executions done -------------
7
7
  status: all completed
8
- duration: 3.5s (setup: 0.4s, execution: 3.3s, teardown: 0.1s)
8
+ duration: 4.8s (setup: 0.4s, execution: 4.6s, teardown: 0.2s)
9
9
  ---------------------------------------------
@@ -19,17 +19,17 @@
19
19
  "react-dom": "18.3.1"
20
20
  },
21
21
  "devDependencies": {
22
- "@babel/eslint-parser": "7.24.8",
22
+ "@babel/eslint-parser": "7.25.1",
23
23
  "@babel/plugin-syntax-import-assertions": "7.24.7",
24
- "@babel/plugin-transform-react-jsx": "7.24.7",
24
+ "@babel/plugin-transform-react-jsx": "7.25.2",
25
25
  "@jsenv/assert": "4.1.15",
26
- "@jsenv/core": "39.2.17",
27
- "@jsenv/plugin-react": "1.5.18",
28
- "@jsenv/plugin-bundling": "2.7.5",
26
+ "@jsenv/core": "39.2.19",
27
+ "@jsenv/plugin-react": "1.5.20",
28
+ "@jsenv/plugin-bundling": "2.7.7",
29
29
  "@jsenv/plugin-minification": "1.5.5",
30
30
  "@jsenv/eslint-config": "16.5.3",
31
31
  "@jsenv/eslint-import-resolver": "8.1.3",
32
- "@jsenv/test": "3.3.27",
32
+ "@jsenv/test": "3.3.29",
33
33
  "eslint": "8.56.0",
34
34
  "eslint-plugin-html": "8.1.1",
35
35
  "eslint-plugin-import": "2.29.1",