@jsenv/core 39.14.0 → 39.14.1

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/README.md CHANGED
@@ -19,16 +19,16 @@ For additional details, consult the [documentation](./docs/users/users.md)
19
19
 
20
20
  # The best parts
21
21
 
22
+ - **Robust versioning during build**: Avoids <a href="https://bundlers.tooling.report/hashing/avoid-cascade/" target="_blank">cascading hash changes</a><sup>↗</sup>.
23
+ - **Load js module with classic script**: See the [asJsClassic plugin](./docs/users/g_plugins/g_plugins.md#asjsclassic).
24
+ - **Large browser support after build**: Ensures compatibility with older versions of Firefox, Chrome, and Safari.
25
+ - **Advanced support of top level await**.
26
+ - **Advanced support of web workers**.
22
27
  - **Test files are executed like standard files**.
23
28
  - **Isolated environment for each test file**: Ensures tests run independently, preventing side effects.
29
+ - Single set of files after build: Simplifies support and deployement with a single set of files.
24
30
  - Execute tests in multiple browsers: Supports Chrome, Safari, and Firefox.
25
31
  - Extensive browser support during dev: Allows the use of various browsers beyond the latest Chrome, which is useful for reproducing browser-specific bugs.
26
- - **Large browser support after build**: Ensures compatibility with older versions of Firefox, Chrome, and Safari.
27
- - Single set of files after build: Simplifies support and deployement with a single set of files.
28
- - **Robust versioning during build**: Avoids <a href="https://bundlers.tooling.report/hashing/avoid-cascade/" target="_blank">cascading hash changes</a><sup>↗</sup>.
29
- - **Advanced support of top level await**.
30
- - **Advanced support of web workers**.
31
- - **Load js module with classic script**: See the [asJsClassic plugin](./docs/users/g_plugins/g_plugins.md#22-asjsclassic>).
32
32
 
33
33
  <!--
34
34
  The following commands can be used to skip the prompt
@@ -17981,7 +17981,7 @@ const jsenvPluginInlineContentFetcher = () => {
17981
17981
  // https://nodejs.org/api/packages.html#resolving-user-conditions
17982
17982
  const readCustomConditionsFromProcessArgs = () => {
17983
17983
  const packageConditions = [];
17984
- process.execArgv.forEach((arg) => {
17984
+ for (const arg of process.execArgv) {
17985
17985
  if (arg.includes("-C=")) {
17986
17986
  const packageCondition = arg.slice(0, "-C=".length);
17987
17987
  packageConditions.push(packageCondition);
@@ -17990,7 +17990,7 @@ const readCustomConditionsFromProcessArgs = () => {
17990
17990
  const packageCondition = arg.slice("--conditions=".length);
17991
17991
  packageConditions.push(packageCondition);
17992
17992
  }
17993
- });
17993
+ }
17994
17994
  return packageConditions;
17995
17995
  };
17996
17996
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "39.14.0",
3
+ "version": "39.14.1",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -38,7 +38,10 @@
38
38
  },
39
39
  "workspaces": [
40
40
  "./packages/independent/*",
41
- "./packages/independent/workflow/*",
41
+ "./packages/independent/backend/*",
42
+ "./packages/independent/frontend/*",
43
+ "./packages/independent/tooling/*",
44
+ "./packages/independent/universal/*",
42
45
  "./packages/internal/*",
43
46
  "./packages/related/*",
44
47
  "./packages/related/cli/*"
@@ -69,19 +72,19 @@
69
72
  "dependencies": {
70
73
  "@financial-times/polyfill-useragent-normaliser": "1.10.2",
71
74
  "@jsenv/abort": "4.3.0",
72
- "@jsenv/ast": "6.5.1",
75
+ "@jsenv/ast": "6.5.2",
73
76
  "@jsenv/filesystem": "4.13.4",
74
77
  "@jsenv/humanize": "1.2.8",
75
78
  "@jsenv/importmap": "1.2.1",
76
79
  "@jsenv/integrity": "0.0.2",
77
- "@jsenv/js-module-fallback": "1.3.58",
80
+ "@jsenv/js-module-fallback": "1.3.59",
78
81
  "@jsenv/node-esm-resolution": "1.0.6",
79
82
  "@jsenv/plugin-bundling": "2.7.25",
80
83
  "@jsenv/plugin-minification": "1.5.13",
81
- "@jsenv/plugin-supervisor": "1.6.5",
82
- "@jsenv/plugin-transpilation": "1.4.94",
84
+ "@jsenv/plugin-supervisor": "1.6.6",
85
+ "@jsenv/plugin-transpilation": "1.4.95",
83
86
  "@jsenv/runtime-compat": "1.3.1",
84
- "@jsenv/server": "15.5.1",
87
+ "@jsenv/server": "15.5.2",
85
88
  "@jsenv/sourcemap": "1.2.30",
86
89
  "@jsenv/url-meta": "8.5.3",
87
90
  "@jsenv/urls": "2.6.0",