@jsenv/core 38.4.14 → 38.4.16

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 (2) hide show
  1. package/dist/jsenv_core.js +1 -1
  2. package/package.json +16 -16
@@ -897,7 +897,7 @@ const createUnicode = ({ supported, ANSI }) => {
897
897
  };
898
898
 
899
899
  const UNICODE = createUnicode({
900
- supported: isUnicodeSupported(),
900
+ supported: isUnicodeSupported() || process.env.FORCE_UNICODE === "1",
901
901
  ANSI,
902
902
  });
903
903
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "38.4.14",
3
+ "version": "38.4.16",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -46,7 +46,7 @@
46
46
  "scripts": {
47
47
  "eslint": "npx eslint . --ext=.js,.mjs,.cjs,.html",
48
48
  "dev": "node --conditions=development ./scripts/dev/dev.mjs",
49
- "test": "node --trace-deprecation --conditions=development ./scripts/test/test.mjs",
49
+ "test": "node --conditions=development ./scripts/test/test.mjs",
50
50
  "test:workspace": "npm run test --workspaces --if-present -- --workspace",
51
51
  "test:snapshots_clear": "npx @jsenv/snapshot clear **/tests/**/snapshots/",
52
52
  "test:only_dev_server_errors": "node --conditions=development ./tests/dev_server/errors/dev_errors_snapshots.test.mjs",
@@ -65,22 +65,22 @@
65
65
  "dependencies": {
66
66
  "@financial-times/polyfill-useragent-normaliser": "1.10.2",
67
67
  "@jsenv/abort": "4.3.0",
68
- "@jsenv/ast": "6.0.6",
69
- "@jsenv/filesystem": "4.6.8",
70
- "@jsenv/humanize": "1.1.2",
68
+ "@jsenv/ast": "6.0.7",
69
+ "@jsenv/filesystem": "4.6.9",
70
+ "@jsenv/humanize": "1.1.3",
71
71
  "@jsenv/importmap": "1.2.1",
72
72
  "@jsenv/integrity": "0.0.1",
73
- "@jsenv/js-module-fallback": "1.3.15",
73
+ "@jsenv/js-module-fallback": "1.3.16",
74
74
  "@jsenv/node-esm-resolution": "1.0.2",
75
- "@jsenv/plugin-bundling": "2.6.9",
75
+ "@jsenv/plugin-bundling": "2.6.10",
76
76
  "@jsenv/plugin-minification": "1.5.4",
77
- "@jsenv/plugin-supervisor": "1.4.8",
78
- "@jsenv/plugin-transpilation": "1.3.15",
77
+ "@jsenv/plugin-supervisor": "1.4.10",
78
+ "@jsenv/plugin-transpilation": "1.3.16",
79
79
  "@jsenv/runtime-compat": "1.3.0",
80
- "@jsenv/server": "15.2.5",
81
- "@jsenv/sourcemap": "1.2.9",
80
+ "@jsenv/server": "15.2.6",
81
+ "@jsenv/sourcemap": "1.2.10",
82
82
  "@jsenv/url-meta": "8.4.0",
83
- "@jsenv/urls": "2.2.6",
83
+ "@jsenv/urls": "2.2.7",
84
84
  "@jsenv/utils": "2.1.1"
85
85
  },
86
86
  "devDependencies": {
@@ -97,16 +97,16 @@
97
97
  "@jsenv/plugin-as-js-classic": "./packages/related/plugin-as-js-classic/",
98
98
  "@jsenv/snapshot": "./packages/independent/snapshot/",
99
99
  "@jsenv/test": "./packages/related/test/",
100
- "@playwright/browser-chromium": "1.45.0",
101
- "@playwright/browser-firefox": "1.45.0",
102
- "@playwright/browser-webkit": "1.45.0",
100
+ "@playwright/browser-chromium": "1.45.1",
101
+ "@playwright/browser-firefox": "1.45.1",
102
+ "@playwright/browser-webkit": "1.45.1",
103
103
  "babel-plugin-transform-async-to-promises": "0.8.18",
104
104
  "eslint": "8.56.0",
105
105
  "eslint-plugin-html": "8.1.1",
106
106
  "eslint-plugin-import": "2.29.1",
107
107
  "eslint-plugin-react": "7.34.3",
108
108
  "open": "10.1.0",
109
- "playwright": "1.45.0",
109
+ "playwright": "1.45.1",
110
110
  "prettier": "3.3.2"
111
111
  }
112
112
  }