Skip to content

Commit

Permalink
Rename update-docs and update-www-stubs to create-docs and create-www…
Browse files Browse the repository at this point in the history
…-stubs
  • Loading branch information
etrepum committed Apr 24, 2024
1 parent 262fed0 commit ddf3d3f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@
"changelog": "func() { git --no-pager log --oneline ${1}...HEAD --pretty=format:\"- %s %an\"; }; func",
"increment-version": "node ./scripts/npm/increment-version",
"update-changelog": "node ./scripts/npm/update-changelog",
"update-docs": "node ./scripts/update-docs",
"create-docs": "node ./scripts/create-docs",
"update-version": "node ./scripts/updateVersion",
"update-tsconfig": "node ./scripts/update-tsconfig",
"update-flowconfig": "node ./scripts/update-flowconfig",
"update-www-stubs": "node ./scripts/update-www-stubs",
"update-packages": "npm run update-version && npm run update-tsconfig && npm run update-flowconfig && npm run update-docs && npm run update-www-stubs",
"create-www-stubs": "node ./scripts/create-www-stubs",
"update-packages": "npm run update-version && npm run update-tsconfig && npm run update-flowconfig && npm run create-docs && npm run create-www-stubs",
"postversion": "git checkout -b ${npm_package_version}__release && npm install && npm run update-version && npm run update-changelog && git add -A && git commit -m v${npm_package_version} && git tag -a v${npm_package_version} -m v${npm_package_version}",
"publish-extension": "npm run zip -w @lexical/devtools && npm run publish -w @lexical/devtools",
"release": "npm run prepare-release && node ./scripts/npm/release.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/lexical-website/docs/maintainers-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ describe('LexicalEslintPlugin', () => {
### npm run update-packages

This script runs: update-version, update-tsconfig, update-flowconfig,
update-docs, and update-www-stubs. This is safe to do at any time and will
create-docs, and create-www-stubs. This is safe to do at any time and will
ensure that package.json files are all at the correct versions, paths are
set up correctly for module resolution of all public exports, and that
various defaults are filled in.
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit ddf3d3f

Please sign in to comment.