mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-19 03:04:05 +00:00
Include lang directory in the dist build (#65)
* Include lang/ dir in the build * Bump version
This commit is contained in:
committed by
GitHub
parent
fa777d673f
commit
1e530e0387
1
Makefile
1
Makefile
@@ -25,6 +25,7 @@ dist-gen: clean composer npm-build
|
||||
@cp -r public/robots.txt InvoiceShelf/public
|
||||
@cp -r public/web.config InvoiceShelf/public
|
||||
@cp -r resources InvoiceShelf
|
||||
@cp -r lang InvoiceShelf
|
||||
@cp -r routes InvoiceShelf
|
||||
@cp -r storage InvoiceShelf
|
||||
@cp -r vendor InvoiceShelf 2> /dev/null || true
|
||||
|
||||
23
database/migrations/2024_05_04_110000_update_version_122.php
Normal file
23
database/migrations/2024_05_04_110000_update_version_122.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use InvoiceShelf\Models\Setting;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Setting::setSetting('version', '1.2.2');
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Setting::setSetting('version', '1.2.1');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user