@mui/internal-docs-infra 0.11.1 → 0.12.1-canary.0
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/cli/index.mjs +1 -1
- package/package.json +3 -2
package/cli/index.mjs
CHANGED
|
@@ -8,4 +8,4 @@ function getVersion() {
|
|
|
8
8
|
}
|
|
9
9
|
yargs().scriptName('docs-infra').usage('$0 <command> [args]').command(runValidate).command(runBrowser).demandCommand(1, 'You need at least one command before moving on').strict().help()
|
|
10
10
|
// MUI_VERSION is set through the code-infra build command.
|
|
11
|
-
.version("0.
|
|
11
|
+
.version("0.12.0" || getVersion()).parse(hideBin(process.argv));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/internal-docs-infra",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.1-canary.0",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "MUI Infra - internal documentation creation tools.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -767,5 +767,6 @@
|
|
|
767
767
|
},
|
|
768
768
|
"bin": {
|
|
769
769
|
"docs-infra": "./cli/index.mjs"
|
|
770
|
-
}
|
|
770
|
+
},
|
|
771
|
+
"gitSha": "2a4850bbe516550ee58ae40c87a1788f777f8aa0"
|
|
771
772
|
}
|