avo 3.0.6 → 3.0.7

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of avo might be problematic. Click here for more details.

@@ -1,19 +0,0 @@
1
- import 'mapkick/bundle'
2
-
3
- import { Alert, Popover } from 'tailwindcss-stimulus-components'
4
- import { Application } from '@hotwired/stimulus'
5
- import TurboPower from 'turbo_power'
6
-
7
- TurboPower.initialize(Turbo.StreamActions)
8
-
9
- const application = Application.start()
10
-
11
- // Configure Stimulus development experience
12
- application.debug = window?.localStorage.getItem('avo.debug')
13
- window.Stimulus = application
14
-
15
- // Register stimulus-components controller
16
- application.register('alert', Alert)
17
- application.register('popover', Popover)
18
-
19
- export { application }