Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
bnomei committed Nov 7, 2019
2 parents d57f2cb + 9646e39 commit 031ca00
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion classes/CleanCacheFilesJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
final class CleanCacheFilesJob extends JanitorJob
{
/**
* @return bool
* @return array
*/
public function job(): array
{
Expand Down
2 changes: 1 addition & 1 deletion classes/FlushPagesCacheJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
final class FlushPagesCacheJob extends JanitorJob
{
/**
* @return bool
* @return array
*/
public function job(): array
{
Expand Down
2 changes: 1 addition & 1 deletion classes/JanitorJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function page(): ?Page
}

/**
* @return bool
* @return array
*/
abstract public function job(): array;
}
2 changes: 1 addition & 1 deletion classes/WhistleJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
final class WhistleJob extends JanitorJob
{
/**
* @return bool
* @return array
*/
public function job(): array
{
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"author": "Bruno Meilick <[email protected]>",
"scripts": {
"dev": "parcel watch src/index.js --no-source-maps -d ./",
"build": "parcel build src/index.js --no-source-maps --experimental-scope-hoisting -d ./"
"build": "parcel build src/index.js --no-source-maps -d ./",
"build-exp": "parcel build src/index.js --no-source-maps --experimental-scope-hoisting -d ./"
},
"devDependencies": {
"@vue/component-compiler-utils": "^3.0.0",
Expand All @@ -17,5 +18,8 @@
"dependencies": {
"vue": "^2.6.10",
"vue-hot-reload-api": "^2.3.3"
}
},
"posthtml": {
"recognizeSelfClosing": true
}
}

0 comments on commit 031ca00

Please sign in to comment.