@jsenv/core 27.0.0-alpha.79 → 27.0.0-alpha.81

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.
@@ -29,7 +29,7 @@ html[data-last-interaction="keyboard"] [data-contains-hidden-input] input:focus
29
29
  }
30
30
 
31
31
  ::-moz-focus-inner {
32
- border: none;
32
+ border: 0;
33
33
  }
34
34
  </style>
35
35
  <style>* {
package/dist/main.js CHANGED
@@ -8316,9 +8316,7 @@ const startDevServer = async ({
8316
8316
  devServerAutoreload = typeof process.send !== "function" && !parentPort && !process.env.VSCODE_INSPECTOR_OPTIONS,
8317
8317
  clientFiles = {
8318
8318
  "./src/": true,
8319
- "./src/**/.*/": false,
8320
- // any folder starting with a dot is ignored (includes .git,.jsenv for instance)
8321
- "./src/**/node_modules/": false
8319
+ "./test/": true
8322
8320
  },
8323
8321
  cooldownBetweenFileEvents,
8324
8322
  clientAutoreload = true,
@@ -8335,7 +8333,7 @@ const startDevServer = async ({
8335
8333
  },
8336
8334
  plugins = [],
8337
8335
  urlAnalysis = {},
8338
- htmlSupervisor = false,
8336
+ htmlSupervisor = true,
8339
8337
  nodeEsmResolution,
8340
8338
  fileSystemMagicResolution,
8341
8339
  transpilation,
@@ -11819,10 +11817,7 @@ const build = async ({
11819
11817
  // "filename", "search_param"
11820
11818
  lineBreakNormalization = process.platform === "win32",
11821
11819
  clientFiles = {
11822
- "./src/": true,
11823
- "./src/**/.*/": false,
11824
- // any folder starting with a dot is ignored (includes .git,.jsenv for instance)
11825
- "./src/**/node_modules/": false
11820
+ "./src/": true
11826
11821
  },
11827
11822
  cooldownBetweenFileEvents,
11828
11823
  watch = false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "27.0.0-alpha.79",
3
+ "version": "27.0.0-alpha.81",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -75,25 +75,22 @@
75
75
  "@jsenv/node-esm-resolution": "0.1.0",
76
76
  "@jsenv/server": "12.7.0",
77
77
  "@jsenv/uneval": "1.6.0",
78
- "@jsenv/utils": "1.8.12",
78
+ "@jsenv/utils": "1.9.1",
79
79
  "@jsenv/url-meta": "7.0.0",
80
80
  "@jsenv/urls": "1.2.5",
81
81
  "construct-style-sheets-polyfill": "3.1.0",
82
- "cssnano": "5.1.7",
83
- "cssnano-preset-default": "5.2.7",
84
82
  "cuid": "2.1.8",
85
83
  "es-iife": "0.2.2",
86
84
  "html-minifier": "4.0.0",
87
85
  "istanbul-lib-coverage": "3.2.0",
88
- "istanbul-lib-instrument": "5.1.0",
86
+ "istanbul-lib-instrument": "5.2.0",
89
87
  "istanbul-lib-report": "3.0.0",
90
88
  "istanbul-reports": "3.1.4",
91
- "pidtree": "0.5.0",
89
+ "pidtree": "0.6.0",
92
90
  "regenerator-runtime": "0.13.9",
93
91
  "strip-ansi": "7.0.1",
94
- "systemjs": "6.12.1",
95
- "terser": "5.12.1",
96
- "v8-to-istanbul": "8.1.1",
92
+ "terser": "5.14.1",
93
+ "v8-to-istanbul": "9.0.0",
97
94
  "wrap-ansi": "8.0.1"
98
95
  },
99
96
  "devDependencies": {
@@ -102,19 +99,18 @@
102
99
  "@jsenv/assert": "2.5.4",
103
100
  "@jsenv/eslint-config": "16.0.9",
104
101
  "@jsenv/file-size-impact": "12.1.13",
105
- "@jsenv/https-local": "1.0.11",
102
+ "@jsenv/https-local": "1.1.0",
106
103
  "@jsenv/importmap-node-module": "5.1.3",
107
104
  "@jsenv/package-workspace": "0.2.1",
108
105
  "@jsenv/performance-impact": "2.2.11",
109
106
  "@jsenv/pwa": "5.0.0",
110
- "eslint": "8.13.0",
107
+ "eslint": "8.17.0",
111
108
  "eslint-plugin-html": "6.2.0",
112
109
  "eslint-plugin-import": "2.26.0",
113
- "eslint-plugin-react": "7.29.4",
110
+ "eslint-plugin-react": "7.30.0",
114
111
  "playwright": "1.22.2",
115
112
  "postcss-import": "14.1.0",
116
- "prettier": "2.6.2",
117
- "redux": "4.1.2",
118
- "rollup": "2.70.1"
113
+ "prettier": "2.7.1",
114
+ "redux": "4.1.2"
119
115
  }
120
116
  }
@@ -116,8 +116,6 @@ export const build = async ({
116
116
 
117
117
  clientFiles = {
118
118
  "./src/": true,
119
- "./src/**/.*/": false, // any folder starting with a dot is ignored (includes .git,.jsenv for instance)
120
- "./src/**/node_modules/": false,
121
119
  },
122
120
  cooldownBetweenFileEvents,
123
121
  watch = false,
@@ -44,8 +44,7 @@ export const startDevServer = async ({
44
44
  !process.env.VSCODE_INSPECTOR_OPTIONS,
45
45
  clientFiles = {
46
46
  "./src/": true,
47
- "./src/**/.*/": false, // any folder starting with a dot is ignored (includes .git,.jsenv for instance)
48
- "./src/**/node_modules/": false,
47
+ "./test/": true,
49
48
  },
50
49
  cooldownBetweenFileEvents,
51
50
  clientAutoreload = true,
@@ -63,7 +62,7 @@ export const startDevServer = async ({
63
62
  },
64
63
  plugins = [],
65
64
  urlAnalysis = {},
66
- htmlSupervisor = false,
65
+ htmlSupervisor = true,
67
66
  nodeEsmResolution,
68
67
  fileSystemMagicResolution,
69
68
  transpilation,