Skip to content

Commit

Permalink
#2 - dependencies bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofrewak committed Sep 14, 2023
1 parent 2f8bbbd commit e944f6f
Show file tree
Hide file tree
Showing 7 changed files with 440 additions and 492 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-and-lint-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3

- name: Cache dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-npm-dependencies-${{ hashFiles('package.lock') }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ google-credentials.json
/public/build/
.appversion
supervisord.pid
.vite
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"license": "MIT",
"require": {
"php": "^8.2",
"ext-pdo": "*",
"guzzlehttp/guzzle": "^7.7.0",
"inertiajs/inertia-laravel": "^0.6.9",
"laravel/framework": "^10.13.0",
"laravel/sanctum": "^3.2.5",
"laravel/tinker": "^2.8.1",
"ext-pdo": "*"
"laravel/tinker": "^2.8.1"
},
"require-dev": {
"blumilksoftware/codestyle": "^2.3.0",
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

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

10 changes: 5 additions & 5 deletions environment/dev/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM composer/composer:2.5.7-bin as composer-bin
FROM composer/composer:2.6.2-bin as composer-bin

FROM node:20.2.0-bullseye-slim as node
FROM node:20.6.1-bullseye-slim as node

FROM php:8.2.5-fpm-bullseye
FROM php:8.2.10-fpm-bullseye

COPY --from=composer-bin ./composer /usr/bin/composer

Expand Down Expand Up @@ -32,8 +32,8 @@ RUN ln --symbolic /usr/local/lib/node_modules/npm/bin/npm-cli.js /usr/local/bin/
RUN mv "${PHP_INI_DIR}/php.ini-development" "${PHP_INI_DIR}/php.ini"

# For other versions check: http://nginx.org/packages/mainline/debian/pool/nginx/n/nginx/
ARG NGINX_VERSION="1.25.0-1~bullseye"
ARG PHPREDIS_VERSION=5.3.7
ARG NGINX_VERSION="1.25.2-1~bullseye"
ARG PHPREDIS_VERSION=6.0.0

RUN apt-get update \
&& apt-get install --assume-yes gpg \
Expand Down
883 changes: 415 additions & 468 deletions package-lock.json

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,24 @@
"dependencies": {
"@headlessui/vue": "^1.7.16",
"@heroicons/vue": "^2.0.18",
"@inertiajs/vue3": "^1.0.7",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"axios": "^1.4.0",
"laravel-vite-plugin": "^0.7.8",
"@inertiajs/vue3": "^1.0.11",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"axios": "^1.5.0",
"laravel-vite-plugin": "^0.8.0",
"lodash": "^4.17.21",
"tailwindcss": "^3.3.2",
"tailwindcss": "^3.3.3",
"vue": "^3.3.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@vitejs/plugin-vue": "^4.2.3",
"autoprefixer": "^10.4.14",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-tailwindcss": "^3.12.1",
"eslint-plugin-vue": "^9.14.1",
"postcss": "^8.4.24",
"vite": "^4.3.9"
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@vitejs/plugin-vue": "^4.3.4",
"autoprefixer": "^10.4.15",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-vue": "^9.17.0",
"postcss": "^8.4.29",
"vite": "^4.4.9"
}
}

0 comments on commit e944f6f

Please sign in to comment.