Skip to content

Commit f52186f

Browse files
authored
Add Laravel Sanctum to Laravel Ecosystem tab & configure PurgeCSS (#68)
Add Laravel Sanctum to Laravel Ecosystem tab, configure PurgeCSS
1 parent ffcb935 commit f52186f

File tree

7 files changed

+1618
-1463
lines changed

7 files changed

+1618
-1463
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to `cybercog/laravel-paket` will be documented in this file.
44

55
## [Unreleased]
66

7+
## [1.6.0]
8+
9+
### Added
10+
11+
- ([#68]) Add Laravel Sanctum to Laravel Ecosystem tab
12+
- ([#68]) Add PurgeCSS
13+
714
## [1.5.2]
815

916
### Added
@@ -70,7 +77,8 @@ All notable changes to `cybercog/laravel-paket` will be documented in this file.
7077

7178
- Initial release
7279

73-
[Unreleased]: https://github.com/cybercog/laravel-paket/compare/1.5.2...master
80+
[Unreleased]: https://github.com/cybercog/laravel-paket/compare/1.6.0...master
81+
[1.6.0]: https://github.com/cybercog/laravel-paket/compare/1.5.2...1.6.0
7482
[1.5.2]: https://github.com/cybercog/laravel-paket/compare/1.5.1...1.5.2
7583
[1.5.1]: https://github.com/cybercog/laravel-paket/compare/1.5.0...1.5.1
7684
[1.5.0]: https://github.com/cybercog/laravel-paket/compare/1.4.0...1.5.0
@@ -79,6 +87,7 @@ All notable changes to `cybercog/laravel-paket` will be documented in this file.
7987
[1.2.0]: https://github.com/cybercog/laravel-paket/compare/1.1.0...1.2.0
8088
[1.1.0]: https://github.com/cybercog/laravel-paket/compare/1.0.0...1.1.0
8189

90+
[#68]: https://github.com/cybercog/laravel-paket/pull/68
8291
[#64]: https://github.com/cybercog/laravel-paket/pull/64
8392
[#61]: https://github.com/cybercog/laravel-paket/pull/61
8493
[#58]: https://github.com/cybercog/laravel-paket/pull/58

public/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/mix-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"/app.js": "/app.js?id=222a852582593d9923dc",
3-
"/app.css": "/app.css?id=746fe87b4886c701e3b3"
2+
"/app.js": "/app.js?id=28423565ab0932446651",
3+
"/app.css": "/app.css?id=4a01632a7c2d69a7bf76"
44
}

resources/js/screens/laravel/index.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@
5757
icon: 'https://laravel.com/img/ecosystem/passport.min.svg',
5858
isDevelopment: false,
5959
},
60+
{
61+
name: 'laravel/sanctum',
62+
title: 'Sanctum',
63+
description: 'Authentication for SPAs',
64+
iconBg: '#28cef0',
65+
icon: 'https://laravel.com/img/ecosystem/passport.min.svg',
66+
isDevelopment: false,
67+
},
6068
{
6169
name: 'laravel/socialite',
6270
title: 'Socialite',

tailwind.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,8 @@ module.exports = {
44
},
55
variants: {},
66
plugins: [],
7+
purge: [
8+
'./resources/js/**/*.vue',
9+
'./resources/js/**/**/*.vue',
10+
],
711
};

yarn.lock

Lines changed: 1592 additions & 1458 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)