@jsenv/core 27.0.0-alpha.27 → 27.0.0-alpha.28

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "27.0.0-alpha.27",
3
+ "version": "27.0.0-alpha.28",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -11,8 +11,7 @@
11
11
  "node": ">=16.13.0"
12
12
  },
13
13
  "publishConfig": {
14
- "access": "public",
15
- "registry": "https://registry.npmjs.org"
14
+ "access": "public"
16
15
  },
17
16
  "type": "module",
18
17
  "imports": {},
@@ -92,12 +91,12 @@
92
91
  "@jsenv/assert": "2.5.4",
93
92
  "@jsenv/eslint-config": "16.0.9",
94
93
  "@jsenv/file-size-impact": "12.1.11",
95
- "@jsenv/github-release-package": "1.3.6",
94
+ "@jsenv/github-release-package": "1.4.0",
96
95
  "@jsenv/https-local": "1.0.8",
97
96
  "@jsenv/importmap-node-module": "5.1.3",
98
97
  "@jsenv/package-workspace": "0.0.5",
99
98
  "@jsenv/performance-impact": "2.2.10",
100
- "@jsenv/pwa": "4.0.1",
99
+ "@jsenv/pwa": "5.0.0",
101
100
  "eslint": "8.13.0",
102
101
  "eslint-plugin-html": "6.2.0",
103
102
  "eslint-plugin-import": "2.26.0",
@@ -111,4 +110,4 @@
111
110
  "redux": "4.1.2",
112
111
  "rollup": "2.70.1"
113
112
  }
114
- }
113
+ }
@@ -244,7 +244,10 @@ const willBeInsideJsDirectory = ({
244
244
  // generated by rollup
245
245
  return true
246
246
  }
247
- if (!jsModuleUrlInfo.data.isEntryPoint) {
247
+ if (
248
+ !jsModuleUrlInfo.data.isEntryPoint &&
249
+ !jsModuleUrlInfo.data.isWebWorkerEntryPoint
250
+ ) {
248
251
  // not an entry point, jsenv will put it inside js/ directory
249
252
  return true
250
253
  }