Skip to content

Commit

Permalink
chore: Migrate to use Vite instead of Webpack and update Node depende…
Browse files Browse the repository at this point in the history
…ncies

Signed-off-by: Ferdinand Thiessen <[email protected]>
  • Loading branch information
susnux committed Feb 27, 2024
1 parent c9afec5 commit 0a75cbc
Show file tree
Hide file tree
Showing 17 changed files with 9,885 additions and 27,826 deletions.
3 changes: 0 additions & 3 deletions .eslintrc.js

This file was deleted.

3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["@nextcloud"]
}
3 changes: 0 additions & 3 deletions babel.config.js

This file was deleted.

4 changes: 2 additions & 2 deletions lib/Listener/BeforeTemplateRenderedListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function handle(Event $event): void {
}

if ($this->config->getUserValue($user->getUID(), Application::APP_ID, 'show', '1') !== '0') {
Util::addScript(Application::APP_ID, 'activate');
Util::addScript(Application::APP_ID, Application::APP_ID . '-activate');

$this->jobList->add('OCA\FirstRunWizard\Notification\BackgroundJob', ['uid' => $this->userSession->getUser()->getUID()]);
}
Expand All @@ -102,7 +102,7 @@ public function handle(Event $event): void {
$this->appHint->sendAppHintNotifications();
}

Util::addScript(Application::APP_ID, 'about');
Util::addScript(Application::APP_ID, Application::APP_ID . '-about');

$this->initialState->provideInitialState(
'desktop',
Expand Down
Loading

0 comments on commit 0a75cbc

Please sign in to comment.