Skip to content

Commit

Permalink
Resolve potential Webpack compile issue (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
OutlawAndy authored Apr 10, 2024
1 parent fb92dcb commit d0b0107
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@rolemodel/turbo-confirm",
"type": "module",
"version": "2.0.0",
"version": "2.0.1",
"description": "Drop-in upgrade for Rails' data-turbo-confirm feature to support custom HTML dialogs.",
"main": "src/index.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { dispatch, TurboConfirmError } from './lib/utils.js'
import { TurboConfirm } from './lib/TurboConfirm'
import { TurboConfirm } from './lib/TurboConfirm.js'

const start = (options) => {
const tc = new TurboConfirm(options)
Expand Down
2 changes: 1 addition & 1 deletion src/lib/TurboConfirm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ConfirmationController from './ConfirmationController'
import ConfirmationController from './ConfirmationController.js'

export class TurboConfirm {
#controller
Expand Down

0 comments on commit d0b0107

Please sign in to comment.