jspm 4.1.4 → 4.1.5

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/cli.js +2 -2
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -2403,8 +2403,8 @@ async function getGenerator(flags, configOverride = null, inputMap) {
2403
2403
  rootUrl,
2404
2404
  inputMap: inputMap || await getInputMap(flags),
2405
2405
  env: await getEnv(flags),
2406
- flattenScopes: flags.flattenScopes === false ? false : flags.release || flags.flattenScopes,
2407
- combineSubpaths: flags.combineSubpaths === false ? false : flags.release || flags.combineSubpaths,
2406
+ flattenScopes: flags.flattenScopes === false ? false : Boolean(flags.release || flags.flattenScopes),
2407
+ combineSubpaths: flags.combineSubpaths === false ? false : Boolean(flags.release || flags.combineSubpaths),
2408
2408
  defaultProvider,
2409
2409
  resolutions: getResolutions(flags),
2410
2410
  cache: getCacheMode(flags),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jspm",
3
3
  "type": "module",
4
- "version": "4.1.4",
4
+ "version": "4.1.5",
5
5
  "description": "Import Map Package Manager",
6
6
  "license": "Apache-2.0",
7
7
  "bin": {
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "dependencies": {
19
19
  "@babel/core": "^7.24.7",
20
- "@jspm/generator": "^2.7.3",
20
+ "@jspm/generator": "^2.7.5",
21
21
  "@jspm/plugin-rollup": "^1.2.4",
22
22
  "ora": "^8.2.0",
23
23
  "picocolors": "^1.1.1"