@jsenv/core 39.2.13 → 39.2.14

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.
@@ -1418,9 +1418,12 @@ const pathnameToFilename = (pathname) => {
1418
1418
  return filename;
1419
1419
  };
1420
1420
 
1421
- const urlToBasename = (url) => {
1421
+ const urlToBasename = (url, removeAllExtensions) => {
1422
1422
  const filename = urlToFilename$1(url);
1423
- return filenameToBasename(filename);
1423
+ const basename = filenameToBasename(filename);
1424
+ {
1425
+ return basename;
1426
+ }
1424
1427
  };
1425
1428
 
1426
1429
  const filenameToBasename = (filename) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "39.2.13",
3
+ "version": "39.2.14",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -66,22 +66,22 @@
66
66
  "dependencies": {
67
67
  "@financial-times/polyfill-useragent-normaliser": "1.10.2",
68
68
  "@jsenv/abort": "4.3.0",
69
- "@jsenv/ast": "6.2.11",
70
- "@jsenv/filesystem": "4.9.6",
69
+ "@jsenv/ast": "6.2.12",
70
+ "@jsenv/filesystem": "4.9.7",
71
71
  "@jsenv/humanize": "1.2.7",
72
72
  "@jsenv/importmap": "1.2.1",
73
73
  "@jsenv/integrity": "0.0.2",
74
- "@jsenv/js-module-fallback": "1.3.32",
74
+ "@jsenv/js-module-fallback": "1.3.33",
75
75
  "@jsenv/node-esm-resolution": "1.0.2",
76
- "@jsenv/plugin-bundling": "2.7.3",
76
+ "@jsenv/plugin-bundling": "2.7.4",
77
77
  "@jsenv/plugin-minification": "1.5.5",
78
- "@jsenv/plugin-supervisor": "1.5.12",
79
- "@jsenv/plugin-transpilation": "1.4.16",
78
+ "@jsenv/plugin-supervisor": "1.5.13",
79
+ "@jsenv/plugin-transpilation": "1.4.17",
80
80
  "@jsenv/runtime-compat": "1.3.1",
81
81
  "@jsenv/server": "15.2.17",
82
- "@jsenv/sourcemap": "1.2.20",
82
+ "@jsenv/sourcemap": "1.2.21",
83
83
  "@jsenv/url-meta": "8.5.0",
84
- "@jsenv/urls": "2.5.0",
84
+ "@jsenv/urls": "2.5.1",
85
85
  "@jsenv/utils": "2.1.2",
86
86
  "anchor-markdown-header": "0.7.0"
87
87
  },