foundruu 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/templates/features/docker/Dockerfile.hbs +4 -4
- package/assets/templates/features/eslint/package.json.patch +2 -2
- package/assets/templates/features/github-actions/.github/workflows/ci.yml.hbs +10 -10
- package/assets/templates/features/line-bot/package.json.patch +1 -1
- package/assets/templates/features/prettier/package.json.patch +1 -1
- package/assets/templates/features/react/package.json.patch +6 -6
- package/assets/templates/features/react-laravel/package.json.patch +6 -6
- package/assets/templates/features/vitest/package.json.patch +2 -2
- package/assets/templates/features/vue-laravel/package.json.patch +4 -4
- package/assets/templates/languages/laravel/composer.json.hbs +7 -7
- package/assets/templates/languages/nextjs/package.json.patch +5 -5
- package/assets/templates/languages/nuxt/package.json.patch +1 -1
- package/assets/templates/languages/typescript/package.json.patch +2 -2
- package/package.json +1 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{{#eq language "typescript"}}
|
|
2
|
-
FROM node:
|
|
2
|
+
FROM node:24-alpine AS builder
|
|
3
3
|
WORKDIR /app
|
|
4
4
|
COPY package*.json ./
|
|
5
5
|
RUN npm ci
|
|
6
6
|
COPY . .
|
|
7
7
|
RUN npm run build
|
|
8
8
|
|
|
9
|
-
FROM node:
|
|
9
|
+
FROM node:24-alpine
|
|
10
10
|
WORKDIR /app
|
|
11
11
|
COPY package*.json ./
|
|
12
12
|
RUN npm ci --omit=dev
|
|
@@ -16,7 +16,7 @@ CMD ["node", "dist/index.js"]
|
|
|
16
16
|
{{/eq}}
|
|
17
17
|
|
|
18
18
|
{{#eq language "python"}}
|
|
19
|
-
FROM python:3.
|
|
19
|
+
FROM python:3.14-slim
|
|
20
20
|
WORKDIR /app
|
|
21
21
|
COPY requirements.txt .
|
|
22
22
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
@@ -26,7 +26,7 @@ CMD ["python", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000
|
|
|
26
26
|
{{/eq}}
|
|
27
27
|
|
|
28
28
|
{{#eq language "laravel"}}
|
|
29
|
-
FROM php:8.
|
|
29
|
+
FROM php:8.5-fpm-alpine
|
|
30
30
|
WORKDIR /var/www
|
|
31
31
|
RUN apk add --no-cache nginx
|
|
32
32
|
COPY composer.json composer.lock ./
|
|
@@ -11,12 +11,12 @@ jobs:
|
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
|
|
13
13
|
steps:
|
|
14
|
-
- uses: actions/checkout@
|
|
14
|
+
- uses: actions/checkout@v7
|
|
15
15
|
|
|
16
16
|
{{#eq language "typescript"}}
|
|
17
|
-
- uses: actions/setup-node@
|
|
17
|
+
- uses: actions/setup-node@v6
|
|
18
18
|
with:
|
|
19
|
-
node-version: '
|
|
19
|
+
node-version: '24'
|
|
20
20
|
cache: 'npm'
|
|
21
21
|
|
|
22
22
|
- run: npm ci
|
|
@@ -32,9 +32,9 @@ jobs:
|
|
|
32
32
|
{{/eq}}
|
|
33
33
|
|
|
34
34
|
{{#eq language "python"}}
|
|
35
|
-
- uses: actions/setup-python@
|
|
35
|
+
- uses: actions/setup-python@v6
|
|
36
36
|
with:
|
|
37
|
-
python-version: '3.
|
|
37
|
+
python-version: '3.14'
|
|
38
38
|
|
|
39
39
|
- run: pip install -r requirements.txt
|
|
40
40
|
- run: python -m pytest
|
|
@@ -43,7 +43,7 @@ jobs:
|
|
|
43
43
|
{{#eq language "laravel"}}
|
|
44
44
|
- uses: shivammathur/setup-php@v2
|
|
45
45
|
with:
|
|
46
|
-
php-version: '8.
|
|
46
|
+
php-version: '8.5'
|
|
47
47
|
|
|
48
48
|
- run: composer install --no-interaction
|
|
49
49
|
- run: cp .env.example .env && php artisan key:generate
|
|
@@ -51,9 +51,9 @@ jobs:
|
|
|
51
51
|
{{/eq}}
|
|
52
52
|
|
|
53
53
|
{{#eq language "nextjs"}}
|
|
54
|
-
- uses: actions/setup-node@
|
|
54
|
+
- uses: actions/setup-node@v6
|
|
55
55
|
with:
|
|
56
|
-
node-version: '
|
|
56
|
+
node-version: '24'
|
|
57
57
|
cache: 'npm'
|
|
58
58
|
|
|
59
59
|
- run: npm ci
|
|
@@ -67,9 +67,9 @@ jobs:
|
|
|
67
67
|
{{/eq}}
|
|
68
68
|
|
|
69
69
|
{{#eq language "nuxt"}}
|
|
70
|
-
- uses: actions/setup-node@
|
|
70
|
+
- uses: actions/setup-node@v6
|
|
71
71
|
with:
|
|
72
|
-
node-version: '
|
|
72
|
+
node-version: '24'
|
|
73
73
|
cache: 'npm'
|
|
74
74
|
|
|
75
75
|
- run: npm ci
|
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
"preview": "vite preview"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"react": "^
|
|
9
|
-
"react-dom": "^
|
|
8
|
+
"react": "^19.2.0",
|
|
9
|
+
"react-dom": "^19.2.0"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"@types/react": "^
|
|
13
|
-
"@types/react-dom": "^
|
|
14
|
-
"@vitejs/plugin-react": "^
|
|
15
|
-
"vite": "^
|
|
12
|
+
"@types/react": "^19.0.0",
|
|
13
|
+
"@types/react-dom": "^19.0.0",
|
|
14
|
+
"@vitejs/plugin-react": "^6.0.0",
|
|
15
|
+
"vite": "^8.0.0"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
"build": "vite build"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"react": "^
|
|
11
|
-
"react-dom": "^
|
|
10
|
+
"react": "^19.2.0",
|
|
11
|
+
"react-dom": "^19.2.0"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@vitejs/plugin-react": "^
|
|
15
|
-
"axios": "^1.
|
|
16
|
-
"laravel-vite-plugin": "^
|
|
17
|
-
"vite": "^
|
|
14
|
+
"@vitejs/plugin-react": "^6.0.0",
|
|
15
|
+
"axios": "^1.18.0",
|
|
16
|
+
"laravel-vite-plugin": "^3.0.0",
|
|
17
|
+
"vite": "^8.0.0"
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"vue": "^3.5.0"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@vitejs/plugin-vue": "^
|
|
14
|
-
"axios": "^1.
|
|
15
|
-
"laravel-vite-plugin": "^
|
|
16
|
-
"vite": "^
|
|
13
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
14
|
+
"axios": "^1.18.0",
|
|
15
|
+
"laravel-vite-plugin": "^3.0.0",
|
|
16
|
+
"vite": "^8.0.0"
|
|
17
17
|
}
|
|
18
18
|
}
|
|
@@ -3,16 +3,16 @@
|
|
|
3
3
|
"description": "{{description}}",
|
|
4
4
|
"type": "project",
|
|
5
5
|
"require": {
|
|
6
|
-
"php": "^8.
|
|
7
|
-
"laravel/framework": "^
|
|
8
|
-
"laravel/tinker": "^
|
|
6
|
+
"php": "^8.4",
|
|
7
|
+
"laravel/framework": "^13.0",
|
|
8
|
+
"laravel/tinker": "^3.0"
|
|
9
9
|
},
|
|
10
10
|
"require-dev": {
|
|
11
|
-
"fakerphp/faker": "^1.
|
|
12
|
-
"laravel/pint": "^1.
|
|
11
|
+
"fakerphp/faker": "^1.24",
|
|
12
|
+
"laravel/pint": "^1.29",
|
|
13
13
|
"mockery/mockery": "^1.6",
|
|
14
|
-
"nunomaduro/collision": "^8.
|
|
15
|
-
"phpunit/phpunit": "^
|
|
14
|
+
"nunomaduro/collision": "^8.9",
|
|
15
|
+
"phpunit/phpunit": "^13.0"
|
|
16
16
|
},
|
|
17
17
|
"autoload": {
|
|
18
18
|
"psr-4": {
|
|
@@ -9,15 +9,15 @@
|
|
|
9
9
|
"start": "next start"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"next": "^
|
|
13
|
-
"react": "^19.
|
|
14
|
-
"react-dom": "^19.
|
|
12
|
+
"next": "^16.0.0",
|
|
13
|
+
"react": "^19.2.0",
|
|
14
|
+
"react-dom": "^19.2.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@types/node": "^
|
|
17
|
+
"@types/node": "^24.0.0",
|
|
18
18
|
"@types/react": "^19.0.0",
|
|
19
19
|
"@types/react-dom": "^19.0.0",
|
|
20
|
-
"typescript": "^
|
|
20
|
+
"typescript": "^6.0.0"
|
|
21
21
|
},
|
|
22
22
|
"engines": {
|
|
23
23
|
"node": ">=20.0.0"
|