Skip to content

Commit

Permalink
chore(deps): upgrade dependencies (#365)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruisaraiva19 committed Jul 4, 2022
1 parent 6a14300 commit a816528
Show file tree
Hide file tree
Showing 8 changed files with 1,906 additions and 3,136 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/commitlint.yml
Expand Up @@ -11,4 +11,4 @@ jobs:
with:
fetch-depth: 0
- name: Lint commit messages
uses: wagoid/commitlint-github-action@v2
uses: wagoid/commitlint-github-action@v5
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
run: yarn build --filter=react-youtube-example...
- name: Deploy to GitHub pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: packages/example/build
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/tests.yml
Expand Up @@ -3,6 +3,20 @@ name: Tests
on: pull_request

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run linters
run: yarn lint
test:
runs-on: ubuntu-latest
name: Node.js ${{ matrix.node }}
Expand Down
36 changes: 14 additions & 22 deletions package.json
Expand Up @@ -6,35 +6,27 @@
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules",
"release": "turbo run release --concurrency=1",
"lint": "eslint packages --ext .ts,.tsx,.js,.jsx",
"commit": "git-cz",
"lint": "eslint --cache --cache-location node_modules/.cache/eslint packages --ext .ts,.tsx,.js,.jsx",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.13.0",
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@typescript-eslint/eslint-plugin": "5.30.4",
"@typescript-eslint/parser": "5.30.4",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"prettier": "2.6.2",
"turbo": "1.2.12",
"typescript": "4.6.3"
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"turbo": "1.3.1",
"typescript": "4.7.4"
},
"lint-staged": {
"*.js": "eslint --ext .ts,.tsx,.js,.jsx --fix",
"*.{html,json}": "prettier --write"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
"*.js": "eslint --cache --cache-location node_modules/.cache/eslint --ext .ts,.tsx,.js,.jsx --fix",
"*.{html,json}": "prettier --cache --write"
},
"workspaces": [
"packages/*"
Expand Down
8 changes: 4 additions & 4 deletions packages/example-ssr/package.json
Expand Up @@ -9,14 +9,14 @@
},
"dependencies": {
"next": "12.1.6",
"react": "18.1.0",
"react-dom": "18.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-youtube": "1.0.0"
},
"devDependencies": {
"@types/node": "17.0.35",
"@types/react": "18.0.9",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"typescript": "4.6.3"
"typescript": "4.7.4"
}
}
2 changes: 1 addition & 1 deletion packages/example/package.json
Expand Up @@ -17,7 +17,7 @@
"@types/react-dom": "17.0.9",
"parcel": "2.5.0",
"process": "0.11.10",
"typescript": "4.6.3"
"typescript": "4.7.4"
},
"keywords": [
"javascript",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-youtube/package.json
Expand Up @@ -44,7 +44,7 @@
"semantic-release": "19.0.3",
"semantic-release-monorepo": "7.0.5",
"ts-jest": "27.1.4",
"tsup": "5.12.6"
"tsup": "6.1.3"
},
"peerDependencies": {
"react": ">=0.14.1"
Expand Down

0 comments on commit a816528

Please sign in to comment.