Skip to content

Commit

Permalink
fix: typescript version 4 -> 5 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ksmfou98 committed Oct 18, 2023
1 parent 61e45eb commit 2d83b3f
Show file tree
Hide file tree
Showing 17 changed files with 1,536 additions and 1,131 deletions.
801 changes: 564 additions & 237 deletions .pnp.cjs

Large diffs are not rendered by default.

109 changes: 58 additions & 51 deletions .pnp.loader.mjs

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

807 changes: 0 additions & 807 deletions .yarn/releases/yarn-3.3.0.cjs

This file was deleted.

874 changes: 874 additions & 0 deletions .yarn/releases/yarn-3.6.4.cjs

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions .yarn/sdks/prettier/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ const absRequire = createRequire(absPnpApiPath);

if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require prettier/index.js
// Setup the environment to be able to require prettier
require(absPnpApiPath).setup();
}
}

// Defer to the real prettier/index.js your application uses
module.exports = absRequire(`prettier/index.js`);
// Defer to the real prettier your application uses
module.exports = absRequire(`prettier`);
2 changes: 1 addition & 1 deletion .yarn/sdks/prettier/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "prettier",
"version": "2.8.1-sdk",
"version": "2.8.8-sdk",
"main": "./index.js",
"type": "commonjs"
}
2 changes: 2 additions & 0 deletions .yarn/sdks/typescript/lib/tsserver.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ const moduleWrapper = tsserver => {
str = `zip:${str}`;
} break;
}
} else {
str = str.replace(/^\/?/, process.platform === `win32` ? `` : `/`);
}
}

Expand Down
2 changes: 2 additions & 0 deletions .yarn/sdks/typescript/lib/tsserverlibrary.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ const moduleWrapper = tsserver => {
str = `zip:${str}`;
} break;
}
} else {
str = str.replace(/^\/?/, process.platform === `win32` ? `` : `/`);
}
}

Expand Down
2 changes: 1 addition & 1 deletion .yarn/sdks/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typescript",
"version": "4.9.3-sdk",
"version": "5.0.4-sdk",
"main": "./lib/typescript.js",
"type": "commonjs"
}
20 changes: 10 additions & 10 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
plugins:
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs
spec: "@yarnpkg/plugin-typescript"

packageExtensions:
follow-redirects@*:
dependencies:
debug: "*"
debug@*:
dependencies:
supports-color: "*"
follow-redirects@*:
dependencies:
debug: "*"
swiper@*:
dependencies:
"@types/react": "^17"
react: "^17"
"@types/react": ^17
react: ^17

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs
spec: "@yarnpkg/plugin-typescript"

yarnPath: .yarn/releases/yarn-3.3.0.cjs
yarnPath: .yarn/releases/yarn-3.6.4.cjs
2 changes: 1 addition & 1 deletion apps/chooz/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
"@svgr/webpack": "^6.5.1",
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"typescript": "4.9.3"
"typescript": "5.0.4"
}
}
2 changes: 1 addition & 1 deletion apps/jurumarble/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"eslint": "^8.51.0",
"eslint-config-mogakko": "workspace:*",
"prettier": "^2.8.1",
"typescript": "4.9.3",
"typescript": "5.0.4",
"typescript-plugin-css-modules": "^5.0.2"
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
"apps/*"
]
},
"packageManager": "yarn@3.3.0",
"packageManager": "yarn@3.6.4",
"dependencies": {
"styled-components": "^5.3.6"
},
"devDependencies": {
"@mogakko/prettier-config": "workspace:*",
"eslint": "^8.51.0",
"prettier": "^2.8.1",
"typescript": "4.9.3"
"typescript": "5.0.4"
}
}
2 changes: 1 addition & 1 deletion packages/hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"devDependencies": {
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"typescript": "4.9.3"
"typescript": "5.0.4"
},
"peerDependencies": {
"react": "^18.2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/http-fetch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"devDependencies": {
"eslint": "^8.51.0",
"eslint-config-mogakko": "workspace:*",
"typescript": "4.9.3"
"typescript": "5.0.4"
}
}
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"react-is": "^18.2.0",
"styled-components": "^5.3.6",
"swiper": "9.4.1",
"typescript": "4.9.3"
"typescript": "5.0.4"
},
"peerDependencies": {
"react": "^18.2.0",
Expand Down
Loading

0 comments on commit 2d83b3f

Please sign in to comment.