Skip to content

Commit

Permalink
Merge pull request #361 from depromeet/chore/path-test
Browse files Browse the repository at this point in the history
fix: 빌드 테스트 이슈 수정하기
  • Loading branch information
raymondanythings committed Sep 10, 2024
2 parents bce5695 + 9e8c30d commit b2e0f44
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 33 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,15 @@ jobs:
version: 6.10.0

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "pnpm"

- name: Install Dependencies
run: pnpm install
run: |
pnpm install
- name: Build
run: pnpm build
run: |
pnpm build
2 changes: 1 addition & 1 deletion apps/mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@layer/mobile",
"main": "expo-router/entry",
"types": "./bridge/native.ts",
"version": "1.0.2-SNAPSHOT",
"version": "1.0.3",
"scripts": {
"start": "expo start",
"reset-project": "node ./scripts/reset-project.js",
Expand Down
1 change: 1 addition & 0 deletions apps/web/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
![Group 110](https://github.com/depromeet/layer/assets/19422885/b85ee18d-ca94-4f20-9058-c03e41188291)
.
4 changes: 2 additions & 2 deletions apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@layer/web",
"private": true,
"version": "1.0.2-SNAPSHOT",
"version": "1.0.3",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down Expand Up @@ -81,7 +81,7 @@
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"typescript": "^5.2.2",
"typescript": "~5.3.3",
"vite": "^5.2.0",
"vite-plugin-svgr": "^4.2.0"
}
Expand Down
16 changes: 1 addition & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "layer",
"version": "1.0.2-SNAPSHOT",
"version": "1.0.3",
"private": true,
"scripts": {
"web": "pnpm -F @layer/web",
Expand All @@ -11,20 +11,6 @@
"build:app": "pnpm build --filter=\"...{./apps/app}\"",
"build:web": "pnpm build --filter=\"...{./apps/web}\""
},
"devDependencies": {
"typescript": "^5.5.4"
},
"workspaces": [
"packages/*",
"apps/*"
],
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"typescript"
]
}
},
"dependencies": {
"lerna": "^8.1.8"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@layer/shared",
"version": "1.0.2-SNAPSHOT",
"version": "1.0.3",
"description": "",
"main": "index.ts",
"types": "./index.ts",
Expand Down
10 changes: 2 additions & 8 deletions pnpm-lock.yaml

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

6 changes: 3 additions & 3 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
packages:
- 'packages/*'
- 'apps/*'
- docs
- "packages/*"
- "apps/*"
- docs

0 comments on commit b2e0f44

Please sign in to comment.