Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(tsconfig): introduce tsconfig.build.json #463

Open
wants to merge 13 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions examples/device-registration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ const PASSWORD = process.env['accountPwd'] as string;
// You can use util module and call randomDeviceUUID function to generate random device uuid
//
// import { util } from '../node-kakao';
// const randomUUID = util.randomDeviceUUID();
// const randomUUID = util.randomAndroidSubDeviceUUID();
// or
// const randomUUID = util.randomWin32DeviceUUID();
const DEVICE_UUID = process.env['deviceUUID'] as string;

// This can be changed and official client will show latest name used.
Expand Down Expand Up @@ -59,4 +61,4 @@ async function main() {
if (!loginAfterRes.success) throw new Error(`Web login failed with status: ${loginAfterRes.status}`);
console.log(`Client logon successfully`);
}
main().then();
main().then();
Loading