Skip to content

Commit 8ba23b5

Browse files
committed
wip : move to uikit
1 parent ed16de4 commit 8ba23b5

File tree

554 files changed

+36622
-2290
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

554 files changed

+36622
-2290
lines changed

database/migrations/2017_08_05_194349_create_tasks_table.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ public function up()
1717
$table->increments('id');
1818
$table->string('description');
1919
$table->string('command');
20+
$table->string('parameters');
2021
$table->string('cron')->nullable();
2122
$table->string('timezone')->default('UTC');
2223
$table->boolean('is_active')->default(false);

gulpfile.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ elixir(mix => {
1818
.less('app.less')
1919
.webpack('app.js')
2020
.copy('resources/assets/img', 'public/img')
21+
.copy('node_modules/uikit/src/images', 'public/img')
2122
.copy('public', '../../../public/vendor/totem');
2223
// .copy('public', '../app/public/vendor/horizon');
2324
});

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@
1111
"laravel-elixir": "^6.0.0-14",
1212
"laravel-elixir-vue-2": "^0.2.0",
1313
"laravel-elixir-webpack-official": "^1.0.2",
14-
"phpunserialize": "1.*",
1514
"lodash": "^4.16.2",
1615
"moment": "^2.10.6",
16+
"phpunserialize": "1.*",
17+
"uikit": "^3.0.0-beta.30",
1718
"vue": "^2.2.0"
1819
}
1920
}

0 commit comments

Comments
 (0)