Skip to content

Commit

Permalink
v1.1.0 (#543)
Browse files Browse the repository at this point in the history
* 의존성 업데이트 및 연관 작업, Sentry 설정 수정 (#525)

* chore: 패키지 업데이트 및 파일 이슈 수정

* fix: next 버전 업으로 인한 이슈 해결 & sentry 설정 수정

* chore: next-compose-plugins 제거

* fix: next 13 link component 대응

* chore: cypress 롤백

* chore: 의존성 업데이트

* fix: framer-motion deprecated 설정 변경

* test: next-router-mock 설치 및 테스트 환경 설정

* fix: replace global types

* fix: cypress tsconfig 설정, timeout 에러 핸들링

* chore: 주석 해제

* chore: tsconfig 설정 변경

---------

Co-authored-by: Hyesung Oh <[email protected]>

* 필터링 이벤트 부착 (#534)

* feat: nav filter event 수집

* feat: 필터링 바텀 시트 이벤트 수집

* ci 트리거 브랜치 변경 (#532)

* chore: ci 트리거 브랜치 변경

* chore: test 브랜치 제거

* 무한 스크롤이 2번 실행되는 문제 해결 (#538)

* fix: useIntersectionObserver 수정

* chore: add export command

* 이벤트 기록 시 버전 포함 (#540)

* chore: 이벤트 기록 시 package version 참조

* chore: category 사용 이벤트 label로 변경

* chore: versioning to 1.1.0

* chore: named import 수정

* refactor: 버전 env 사용하는 방법으로 변경

* refactor: env type 적용 및 전역 타입 폴더 위치 변경

* Yarn PnP 설정 (#536)

* 영감 삭제, 추가 시 로드 로직 변경 (#549)

* feat: 영감 삭제, 추가 시 변경 로직 변경

* refactor: disable invalidate

* Cancel icon 디자인 변경 (#542)

* style: cancel icon 디자인 변경

* chore: cancel icon 사용처 대응

---------

Co-authored-by: 도다 <[email protected]>
  • Loading branch information
hyesungoh and ddarkr authored Mar 23, 2023
1 parent cd3d0a0 commit fd4a2df
Show file tree
Hide file tree
Showing 1,140 changed files with 39,562 additions and 8,653 deletions.
9 changes: 9 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ module.exports = {
parser: '@typescript-eslint/parser',
extends: ['next', 'prettier', 'plugin:import/recommended', 'plugin:import/typescript'],
plugins: ['prettier', 'import', '@typescript-eslint', 'simple-import-sort', 'ygt-rules'],
ignorePatterns: [
'.next/',
'node_modules/',
'.pnp.cjs',
'.pnp.loader.mjs',
'public',
'.yarn',
'@types',
],
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,14 @@ jobs:
echo '${{ secrets.CYPRESS_ENV_JSON }}' > cypress.env.json
- name: E2E test - chrome
uses: cypress-io/github-action@v4
uses: cypress-io/github-action@v3.1.0 ## NOTE: need fix version. rel issue: https://github.com/cypress-io/github-action/issues/430
with:
install: false
start: yarn dev
browser: chrome
record: true
start: yarn dev
command: yarn cypress:headless
config-file: cypress.config.ts
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.HYESUNG_GITHUB_TOKEN }}
10 changes: 7 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@
# dependencies
/node_modules
eslint/node_modules
/.pnp
.pnp.js
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# testing
/coverage
Expand Down Expand Up @@ -38,7 +43,6 @@ yarn-error.log*

# editor
.idea
/.vscode

# Sentry
.sentryclirc
Expand Down
24,567 changes: 24,567 additions & 0 deletions .pnp.cjs

Large diffs are not rendered by default.

Loading

0 comments on commit fd4a2df

Please sign in to comment.