Skip to content
This repository was archived by the owner on Mar 1, 2025. It is now read-only.

Commit cbb4b53

Browse files
committed
2 parents c34003f + 3fbe548 commit cbb4b53

10 files changed

Lines changed: 23 additions & 11 deletions

File tree

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
- name: Dependabot metadata
1515
id: metadata
16-
uses: dependabot/fetch-metadata@v1.1.1
16+
uses: dependabot/fetch-metadata@v1.3.1
1717
with:
1818
github-token: "${{ secrets.GITHUB_TOKEN }}"
1919

.github/workflows/php-cs-fixer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Checkout code
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v3
1212
with:
1313
ref: ${{ github.head_ref }}
1414

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v3
3030

3131
- name: Setup PHP
3232
uses: shivammathur/setup-php@v2

.github/workflows/update-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
with:
1515
ref: main
1616

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `tall-install` will be documented in this file.
44

5+
## 1.3.0 - 2022-02-15
6+
7+
- Install `@alpinejs/focus` instead of `@alpinejs/trap`
8+
59
## 1.2.0 - 2022-01-20
610

711
- Add support for Laravel 9

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ You may use the `--ddd` or `-d` flag to configure DDD:
9494
php artisan tall-install --ddd
9595
```
9696

97-
This is the most powerful feature, as it rewrites your `/app` directory to this:
97+
I think this is the most powerful feature, as it rewrites your `/app` directory to this:
9898

9999
```
100-
/src/Support
100+
src/Support
101101
├── App
102102
├── Console
103103
├── Exceptions

src/Actions/TALL/InstallAlpineAction.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ class InstallAlpineAction
88
{
99
public function __construct(
1010
private NpmInstallAction $npmInstallAction,
11-
) {}
11+
) {
12+
}
1213

1314
public function execute(string $basePath): void
1415
{

stubs/tailwind.config.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
const defaultTheme = require('tailwindcss/defaultTheme');
12
const colors = require('tailwindcss/colors')
23

34
module.exports = {
@@ -9,8 +10,12 @@ module.exports = {
910
'./vendor/usernotnull/tall-toasts/config/**/*.php',
1011
'./vendor/usernotnull/tall-toasts/resources/views/**/*.blade.php',
1112
],
12-
darkMode: false,
1313
theme: {
14+
screens: {
15+
'xxs': '375px',
16+
'xs': '475px',
17+
...defaultTheme.screens,
18+
},
1419
extend: {
1520
colors: {
1621
danger: colors.rose,

stubs/webpack.mix.js.browsersync

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
2+
13
/* Browsersync configuration with Laravel Valet */
24
mix.disableSuccessNotifications();
35

@@ -12,5 +14,5 @@ mix.browserSync({
1214
key: homedir + '/.config/valet/Certificates/' + domain + '.key',
1315
cert: homedir + '/.config/valet/Certificates/' + domain + '.crt'
1416
},
15-
notify: false, //Disable notifications
17+
notify: false, // Disable notifications
1618
})

tests/Unit/Actions/TallInstallActionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
use RalphJSmit\TallInstall\Actions\TallInstallAction;
4-
53
use function RalphJSmit\PestPluginFilesystem\contents;
64

5+
use RalphJSmit\TallInstall\Actions\TallInstallAction;
6+
77
beforeEach(function () {
88
$this->prefix = __DIR__ . '/../../tmp/laravel-8.x';
99
});

0 commit comments

Comments
 (0)