Skip to content

Commit

Permalink
build: ルートのpackage.jsonからbuildしたとき、依存するパッケージが一時的に存在しないためwarningが出ることが…
Browse files Browse the repository at this point in the history
…あった問題を修正

ただし、ルートのpackage.jsonから行うbuildに少し時間がかかるようになった
  • Loading branch information
kizahasi committed Feb 19, 2023
1 parent edaddf5 commit 7a1c1a3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach -ptv run build:self",
"format": "yarn lint --fix && yarn build && yarn prettier && yarn sort-package-json && yarn generate-disclaimer",
"build": "yarn workspace '@flocon-trpg/api-server' run build && yarn workspace '@flocon-trpg/web-server' run build:deps",
"format": "yarn lint --fix && yarn prettier && yarn build && yarn sort-package-json && yarn generate-disclaimer",
"generate-disclaimer": "yarn licenses generate-disclaimer --production --recursive --exclude='@types/*,husky,less,npm-run-all,sass,serve' > ./apps/web-server/public/licenses-npm-package.txt",
"install-husky": "husky install",
"lint": "yarn workspaces foreach -pv run lint",
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/dist/cjs/internal/createRoomClient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export declare const createRoomClient: <TCustomMessage = any, TGraphQLError = an
error: import("./roomClient/graphqlClient").PromiseError<TGraphQLError>;
};
} & {
hasError: boolean; /** `client` のいずれかがエラーを送信(`Promise` の場合は reject、`Observable` の場合は error)したかどうかを示します。エラーが送信された場合は再度 `createRoomClient` を実行することを推奨します。 */
hasError: boolean;
}>;
/** 内部で使用している `Observable` などの subscription を解除します。これを実行した場合、このオブジェクトの他のプロパティに存在する関数やプロパティにアクセスするとエラーが出ることがありますのでアクセスしないでください。 */
unsubscribe: () => void;
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/dist/cjs/internal/createRoomClient.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/sdk/dist/esm/internal/createRoomClient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export declare const createRoomClient: <TCustomMessage = any, TGraphQLError = an
error: import("./roomClient/graphqlClient").PromiseError<TGraphQLError>;
};
} & {
hasError: boolean; /** `client` のいずれかがエラーを送信(`Promise` の場合は reject、`Observable` の場合は error)したかどうかを示します。エラーが送信された場合は再度 `createRoomClient` を実行することを推奨します。 */
hasError: boolean;
}>;
/** 内部で使用している `Observable` などの subscription を解除します。これを実行した場合、このオブジェクトの他のプロパティに存在する関数やプロパティにアクセスするとエラーが出ることがありますのでアクセスしないでください。 */
unsubscribe: () => void;
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/dist/esm/internal/createRoomClient.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7a1c1a3

Please sign in to comment.