b1569c97e0
This PR adds docs for the methods in the TLShapeUtil class. I think that it's a good page to have docs on, as it shows people what's possible with the custom shape API. Currently, our docs are not showing `@param` info for lots of methods, including the ones added in this PR. I'll do fix for that in a follow-up PR, so that it's easier to review. --- Note: Moving forward, we probably want to consider **_where_** these docs are shown, and how we achieve that. For example, do we put the docs for these methods in: * The docs page for the `TLShapeUtil` class? * The docs pages for the handler types, eg: [`OnResizeHandler`](http://localhost:3000/gen/editor/OnResizeHandler-type)? * Both? Right now, I opted for putting them in the the TLShapeUtil class, as it keeps them all in one place, and it's what we already do for some others. We should consider both - what works best for the docs? and what works best for code editors? --- This PR also includes a fix to our pre-commit step that @SomeHats did.
11 lines
289 B
Bash
Executable file
11 lines
289 B
Bash
Executable file
#!/usr/bin/env sh
|
|
. "$(dirname -- "$0")/_/husky.sh"
|
|
|
|
# if the folder we're in is called "bublic", set YARN_RC_FILENAME:
|
|
if [ "$(basename "$(pwd)")" = "bublic" ]; then
|
|
export YARN_RC_FILENAME=.yarnrc-private.yml
|
|
fi
|
|
|
|
npx lazy run build-api
|
|
git add packages/*/api-report.md
|
|
npx lint-staged
|