jspm 3.1.0 → 3.1.2
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/dist/cli.js +2 -2
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -24329,7 +24329,7 @@ var cac = (name = "") => new CAC(name);
|
|
|
24329
24329
|
var dist_default = cac;
|
|
24330
24330
|
|
|
24331
24331
|
// package.json
|
|
24332
|
-
var version = "3.1.
|
|
24332
|
+
var version = "3.1.2";
|
|
24333
24333
|
|
|
24334
24334
|
// src/clearCache.ts
|
|
24335
24335
|
import c from "picocolors";
|
|
@@ -25261,7 +25261,7 @@ cli.command("clear-cache", "clear the local package cache").usage(
|
|
|
25261
25261
|
|
|
25262
25262
|
Clears the global module fetch cache, for situations where the contents of a dependency may have changed without a version bump. This can happen during local development, for instance.`
|
|
25263
25263
|
).alias("cc").action(wrapCommand(clearCache));
|
|
25264
|
-
cli.command("build [entry]", "Build the module using importmap").option(...buildConfigOpt).option(...buildOutputOpt).action(wrapCommand(build));
|
|
25264
|
+
cli.command("build [entry]", "Build the module using importmap").option(...resolutionOpt).option(...mapOpt).option(...buildConfigOpt).option(...buildOutputOpt).action(wrapCommand(build));
|
|
25265
25265
|
function defaultHelpCb(helpSections) {
|
|
25266
25266
|
for (const section of Object.values(helpSections)) {
|
|
25267
25267
|
if (section.title === "Commands") {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jspm",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.1.
|
|
4
|
+
"version": "3.1.2",
|
|
5
5
|
"description": "Import Map Package Manager",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"bin": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"jspm.js"
|
|
13
13
|
],
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@jspm/generator": "^1.1.
|
|
15
|
+
"@jspm/generator": "^1.1.12",
|
|
16
16
|
"cac": "^6.7.14",
|
|
17
17
|
"ora": "^6.3.0",
|
|
18
18
|
"picocolors": "^1.0.0",
|