-
Notifications
You must be signed in to change notification settings - Fork 1
[FE-Refactor] 모노레포 설정 마무리 #412
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
Changes from 6 commits
e9ce19d
2cfada5
3ec1d71
06a1970
bb29b3c
dc8994e
e139aa7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,25 +1,12 @@ | ||
| { | ||
| "extends": "../../tsconfig.base.json", | ||
| "compilerOptions": { | ||
| "incremental": true, | ||
| "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", | ||
| "target": "ES2022", | ||
| "lib": ["ES2023"], | ||
| "module": "ESNext", | ||
| "skipLibCheck": true, | ||
|
|
||
| /* Bundler mode */ | ||
| "moduleResolution": "bundler", | ||
| "allowImportingTsExtensions": true, | ||
| "isolatedModules": true, | ||
| "moduleDetection": "force", | ||
| "noEmit": true, | ||
|
|
||
| /* Linting */ | ||
| "strict": true, | ||
| "noUnusedLocals": true, | ||
| "noUnusedParameters": true, | ||
| "noFallthroughCasesInSwitch": true, | ||
| "noUncheckedSideEffectImports": true | ||
| }, | ||
| "include": ["vite.config.ts"] | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,21 +1,24 @@ | ||||||||||||||||||||||
| { | ||||||||||||||||||||||
| "name": "@endolphin/calendar", | ||||||||||||||||||||||
| "version": "1.0.5", | ||||||||||||||||||||||
| "main": "dist/src/index.js", | ||||||||||||||||||||||
| "module": "dist/src/index.js", | ||||||||||||||||||||||
| "types": "dist/src/index.d.ts", | ||||||||||||||||||||||
| "version": "1.0.7", | ||||||||||||||||||||||
| "type": "module", | ||||||||||||||||||||||
| "main": "dist/index.js", | ||||||||||||||||||||||
| "module": "dist/index.js", | ||||||||||||||||||||||
| "types": "dist/index.d.ts", | ||||||||||||||||||||||
| "files": [ | ||||||||||||||||||||||
| "dist" | ||||||||||||||||||||||
| ], | ||||||||||||||||||||||
| "scripts": { | ||||||||||||||||||||||
| "build": "tsc -b && tsc-alias" | ||||||||||||||||||||||
| "build": "tsup --clean", | ||||||||||||||||||||||
| "start": "tsup --watch" | ||||||||||||||||||||||
| }, | ||||||||||||||||||||||
| "publishConfig": { | ||||||||||||||||||||||
| "access": "public" | ||||||||||||||||||||||
| }, | ||||||||||||||||||||||
| "dependencies": { | ||||||||||||||||||||||
| "@endolphin/core": "^1.0.5", | ||||||||||||||||||||||
| "@endolphin/ui": "^1.0.2" | ||||||||||||||||||||||
| "@endolphin/ui": "^1.0.12", | ||||||||||||||||||||||
| "@endolphin/theme": "^1.0.17" | ||||||||||||||||||||||
|
Comment on lines
+20
to
+21
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix peer dependency version mismatch. There's a version mismatch between the regular dependency "peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
- "@endolphin/theme": "^1.0.4",
+ "@endolphin/theme": "^1.0.17",
"@vanilla-extract/css": "^1.17.0",
"@vanilla-extract/dynamic": "^2.1.2",
"@vanilla-extract/recipes": "^0.5.5"
}📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||
| }, | ||||||||||||||||||||||
| "peerDependencies": { | ||||||||||||||||||||||
| "react": "^19.0.0", | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,35 +1,21 @@ | ||
| { | ||
| "extends": "../../tsconfig.base.json", | ||
| "compilerOptions": { | ||
| "outDir": "./dist", | ||
| "baseUrl": ".", | ||
| "rootDir": ".", | ||
| "types": ["vitest/globals"], | ||
| "paths": { | ||
| "@/*": ["src/*"], | ||
| "@constants/*": ["src/constants/*"], | ||
| "@components/*": ["src/components/*"], | ||
| "@hooks/*": ["src/hooks/*"], | ||
| "@utils/*": ["src/utils/*"], | ||
| "@theme/*": ["src/theme/*"], | ||
| "@components/*": ["src/components/*"], | ||
| }, | ||
| "target": "ES2020", | ||
| "useDefineForClassFields": true, | ||
| "lib": ["ES2020", "DOM", "DOM.Iterable"], | ||
| "module": "ESNext", | ||
| "skipLibCheck": true, | ||
| "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", | ||
|
|
||
| /* Bundler mode */ | ||
| "moduleResolution": "bundler", | ||
| "moduleDetection": "force", | ||
| "composite": true, | ||
| "jsx": "react-jsx", | ||
|
|
||
| /* Linting */ | ||
| "strict": true, | ||
| "noUnusedLocals": true, | ||
| "noUnusedParameters": true, | ||
| "noFallthroughCasesInSwitch": true, | ||
| "noUncheckedSideEffectImports": true | ||
| /* Module Resolution */ | ||
| "composite": false, | ||
| "outDir": "./dist", | ||
| }, | ||
| "include": ["src"], | ||
| "include": ["src", "bundle.js"], | ||
hamo-o marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| import { vanillaExtractPlugin } from '@vanilla-extract/esbuild-plugin'; | ||
| import { defineConfig } from 'tsup'; | ||
|
|
||
| export default defineConfig({ | ||
| format: ['esm'], | ||
| entry: ['src/index.ts'], | ||
| outDir: 'dist', | ||
| esbuildPlugins: [vanillaExtractPlugin()], | ||
| dts: true, | ||
| external: ['@endolphin/theme'], | ||
| banner: { | ||
| js: 'import \'./index.css\';', | ||
| }, | ||
| }); |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| import { defineConfig } from 'tsup'; | ||
|
|
||
| export default defineConfig({ | ||
| format: ['esm'], | ||
| entry: ['src/index.ts'], | ||
| outDir: 'dist', | ||
| dts: true, | ||
| }); |
Uh oh!
There was an error while loading. Please reload this page.