Skip to content

Commit 8a0d60a

Browse files
sserrataclaude
andauthored
fix: rename experimental_faster to faster, remove --ignore from canary (#1415)
- Docusaurus 3.10 renamed `future.experimental_faster` to `future.faster` - Remove unsupported `--ignore` flag from lerna v9 canary publish commands Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 665f36a commit 8a0d60a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
"canary": "yarn canary:bumpVersion && yarn canary:publish",
1818
"canary:version": "echo 0.0.0-`git rev-list --count HEAD`+`git rev-parse --short HEAD`",
1919
"canary:bumpVersion": "yarn lerna version `yarn --silent canary:version` --exact --no-push --yes",
20-
"canary:publish": "yarn lerna publish from-package --dist-tag canary --yes --no-verify-access --ignore create-docusaurus-openapi-docs",
20+
"canary:publish": "yarn lerna publish from-package --dist-tag canary --yes --no-verify-access",
2121
"canaryBeta": "yarn canaryBeta:bumpVersion && yarn canaryBeta:publish",
2222
"canaryBeta:version": "echo 0.0.0-beta.`git rev-list --count HEAD`+`git rev-parse --short HEAD`",
2323
"canaryBeta:bumpVersion": "yarn lerna version `yarn --silent canaryBeta:version` --exact --no-push --yes",
24-
"canaryBeta:publish": "yarn lerna publish from-package --dist-tag canary --yes --no-verify-access --ignore create-docusaurus-openapi-docs",
24+
"canaryBeta:publish": "yarn lerna publish from-package --dist-tag canary --yes --no-verify-access",
2525
"serve": "yarn workspace demo serve",
2626
"start": "yarn workspace demo start",
2727
"gen-api": "yarn workspace demo gen-api-docs all --all-versions",

packages/create-docusaurus-openapi-docs/templates/default/docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type * as OpenApiPlugin from "docusaurus-plugin-openapi-docs";
88

99
const config: Config = {
1010
future: {
11-
experimental_faster: (process.env.DOCUSAURUS_FASTER ?? "true") === "true",
11+
faster: true,
1212
v4: true,
1313
},
1414
title: "My Site",

0 commit comments

Comments
 (0)