Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordizzy <diosmosis@users.noreply.github.com>2021-11-11 10:01:02 +0300
committerGitHub <noreply@github.com>2021-11-11 10:01:02 +0300
commitac3d508c9ac9700c7d3928bd8014a34205f4c296 (patch)
tree4513a42996b36c158bdb7e9f6306225803ba9456 /plugins
parent32d9de6491f9f313d8008a5b853c4369dc9c8ceb (diff)
use .development suffix for watch files and gitignore them so its not needed to constantly rebuild before pushing (#18286)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CoreVue/Commands/Build.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreVue/Commands/Build.php b/plugins/CoreVue/Commands/Build.php
index 1b16640ed8..40093cbc15 100644
--- a/plugins/CoreVue/Commands/Build.php
+++ b/plugins/CoreVue/Commands/Build.php
@@ -88,7 +88,7 @@ class Build extends ConsoleCommand
private function watch($plugins, $printBuildCommand, OutputInterface $output)
{
$commandSingle = "FORCE_COLOR=1 MATOMO_CURRENT_PLUGIN=%1\$s " . self::getVueCliServiceBin() . ' build --mode=development --target lib --name '
- . "%1\$s ./plugins/%1\$s/vue/src/index.ts --dest ./plugins/%1\$s/vue/dist --watch &";
+ . "%1\$s --filename=%1\$s.development --no-clean ./plugins/%1\$s/vue/src/index.ts --dest ./plugins/%1\$s/vue/dist --watch &";
$command = '';
foreach ($plugins as $plugin) {