@docusaurus/core 0.0.0-4878 → 0.0.0-4888

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.
@@ -101,7 +101,7 @@ async function buildLocale({ siteDir, locale, cliOptions, forceTerminate, isLast
101
101
  new react_loadable_ssr_addon_v5_slorber_1.default({
102
102
  filename: clientManifestPath,
103
103
  }),
104
- ].filter(Boolean),
104
+ ].filter((x) => Boolean(x)),
105
105
  });
106
106
  const allCollectedLinks = {};
107
107
  const headTags = {};
@@ -175,7 +175,7 @@ You can also set the deploymentBranch property in docusaurus.config.js .`);
175
175
  if (!cliOptions.skipBuild) {
176
176
  // Build site, then push to deploymentBranch branch of specified repo.
177
177
  try {
178
- await runDeploy(await (0, build_1.build)(siteDir, cliOptions, false));
178
+ await (0, build_1.build)(siteDir, cliOptions, false).then(runDeploy);
179
179
  }
180
180
  catch (err) {
181
181
  logger_1.default.error('Deployment of the build output failed.');
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@docusaurus/core",
3
3
  "description": "Easy to Maintain Open Source Documentation Websites",
4
- "version": "0.0.0-4878",
4
+ "version": "0.0.0-4888",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -41,13 +41,13 @@
41
41
  "@babel/runtime": "^7.17.9",
42
42
  "@babel/runtime-corejs3": "^7.17.9",
43
43
  "@babel/traverse": "^7.17.9",
44
- "@docusaurus/cssnano-preset": "0.0.0-4878",
45
- "@docusaurus/logger": "0.0.0-4878",
46
- "@docusaurus/mdx-loader": "0.0.0-4878",
44
+ "@docusaurus/cssnano-preset": "0.0.0-4888",
45
+ "@docusaurus/logger": "0.0.0-4888",
46
+ "@docusaurus/mdx-loader": "0.0.0-4888",
47
47
  "@docusaurus/react-loadable": "5.5.2",
48
- "@docusaurus/utils": "0.0.0-4878",
49
- "@docusaurus/utils-common": "0.0.0-4878",
50
- "@docusaurus/utils-validation": "0.0.0-4878",
48
+ "@docusaurus/utils": "0.0.0-4888",
49
+ "@docusaurus/utils-common": "0.0.0-4888",
50
+ "@docusaurus/utils-validation": "0.0.0-4888",
51
51
  "@slorber/static-site-generator-webpack-plugin": "^4.0.4",
52
52
  "@svgr/webpack": "^6.2.1",
53
53
  "autoprefixer": "^10.4.4",
@@ -105,8 +105,8 @@
105
105
  "webpackbar": "^5.0.2"
106
106
  },
107
107
  "devDependencies": {
108
- "@docusaurus/module-type-aliases": "0.0.0-4878",
109
- "@docusaurus/types": "0.0.0-4878",
108
+ "@docusaurus/module-type-aliases": "0.0.0-4888",
109
+ "@docusaurus/types": "0.0.0-4888",
110
110
  "@types/detect-port": "^1.3.2",
111
111
  "@types/nprogress": "^0.2.0",
112
112
  "@types/react-dom": "^18.0.1",
@@ -127,5 +127,5 @@
127
127
  "engines": {
128
128
  "node": ">=14"
129
129
  },
130
- "gitHead": "186f6b50623681da063421e72dd69726a8d78f9e"
130
+ "gitHead": "a02d37417f43c2ab8d73dd1b8bdec1450f7cc00e"
131
131
  }