Skip to content

Commit 5dcc5a2

Browse files
committed
Merge branch 'develop' into main-dev-merge-20251202
2 parents 93427fa + 2f5c6b9 commit 5dcc5a2

40 files changed

+362
-174
lines changed

.github/CODEOWNERS

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,7 @@
88
# * @saseungmin @jiji-hoon96 @hy57in @synuns @sudosubin
99

1010
# 4th
11-
* @froggy1014 @azure-553 @ProdMoon @frontman-git
11+
# * @froggy1014 @azure-553 @ProdMoon @frontman-git
12+
13+
# 5th
14+
* @G-hoon

.github/auto_assign.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
addReviewers: true
1+
# addReviewers: true
22
addAssignees: author
3-
4-
reviewers:
5-
- azure-553
6-
- ProdMoon
7-
- froggy1014
8-
- frontman-git
3+
# reviewers:
4+
# - azure-553
5+
# - ProdMoon
6+
# - froggy1014
7+
# - frontman-git

.pnp.cjs

Lines changed: 75 additions & 75 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
5.64 KB
Binary file not shown.
-3.72 KB
Binary file not shown.
3.7 KB
Binary file not shown.

.yarn/sdks/typescript/bin/tsc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/usr/bin/env node
22

3-
const {existsSync} = require(`fs`);
4-
const {createRequire, register} = require(`module`);
5-
const {resolve} = require(`path`);
6-
const {pathToFileURL} = require(`url`);
3+
const { existsSync } = require(`fs`);
4+
const { createRequire, register } = require(`module`);
5+
const { resolve } = require(`path`);
6+
const { pathToFileURL } = require(`url`);
77

8-
const relPnpApiPath = "../../../../.pnp.cjs";
8+
const relPnpApiPath = '../../../../.pnp.cjs';
99

1010
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
1111
const absUserWrapperPath = resolve(__dirname, `./sdk.user.cjs`);
@@ -25,8 +25,8 @@ if (existsSync(absPnpApiPath)) {
2525
}
2626

2727
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28-
? exports => absRequire(absUserWrapperPath)(exports)
29-
: exports => exports;
28+
? (exports) => absRequire(absUserWrapperPath)(exports)
29+
: (exports) => exports;
3030

3131
// Defer to the real typescript/bin/tsc your application uses
3232
module.exports = wrapWithUserWrapper(absRequire(`typescript/bin/tsc`));

.yarn/sdks/typescript/bin/tsserver

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/usr/bin/env node
22

3-
const {existsSync} = require(`fs`);
4-
const {createRequire, register} = require(`module`);
5-
const {resolve} = require(`path`);
6-
const {pathToFileURL} = require(`url`);
3+
const { existsSync } = require(`fs`);
4+
const { createRequire, register } = require(`module`);
5+
const { resolve } = require(`path`);
6+
const { pathToFileURL } = require(`url`);
77

8-
const relPnpApiPath = "../../../../.pnp.cjs";
8+
const relPnpApiPath = '../../../../.pnp.cjs';
99

1010
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
1111
const absUserWrapperPath = resolve(__dirname, `./sdk.user.cjs`);
@@ -25,8 +25,8 @@ if (existsSync(absPnpApiPath)) {
2525
}
2626

2727
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28-
? exports => absRequire(absUserWrapperPath)(exports)
29-
: exports => exports;
28+
? (exports) => absRequire(absUserWrapperPath)(exports)
29+
: (exports) => exports;
3030

3131
// Defer to the real typescript/bin/tsserver your application uses
3232
module.exports = wrapWithUserWrapper(absRequire(`typescript/bin/tsserver`));

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"dependencies": {
1616
"@channel.io/channel-web-sdk-loader": "^2.0.0",
1717
"@next/third-parties": "^14.2.11",
18-
"@sipe-team/side": "^0.2.2",
18+
"@sipe-team/side": "^0.2.5",
1919
"@vercel/analytics": "^1.3.1",
2020
"@vercel/speed-insights": "^1.0.12",
2121
"clsx": "^2.1.1",

0 commit comments

Comments
 (0)