Skip to content

Commit e100cf3

Browse files
committed
wip : more css refactoring
1 parent 8ba23b5 commit e100cf3

File tree

188 files changed

+2482
-6381
lines changed

Some content is hidden

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

188 files changed

+2482
-6381
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/vendor
22
/node_modules
33
composer.lock
4+
package-lock.json
45
.DS_Store
56
.idea

database/migrations/2017_08_05_194349_create_tasks_table.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function up()
1717
$table->increments('id');
1818
$table->string('description');
1919
$table->string('command');
20-
$table->string('parameters');
20+
$table->string('parameters')->nullable();
2121
$table->string('cron')->nullable();
2222
$table->string('timezone')->default('UTC');
2323
$table->boolean('is_active')->default(false);

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
"moment": "^2.10.6",
1616
"phpunserialize": "1.*",
1717
"uikit": "^3.0.0-beta.30",
18-
"vue": "^2.2.0"
18+
"vue": "^2.2.0",
19+
"@vuikit/util": "^1.3.0",
20+
"vuikit": "git+https://github.com/vuikit/vuikit.git#next"
1921
}
2022
}

0 commit comments

Comments
 (0)