turbo_reflex 0.0.28 → 0.0.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,4 @@
1
+ import 'turbo_ready'
1
2
  import './turbo'
2
3
  import schema from './schema'
3
4
  import { dispatch, allEvents as events } from './events'
@@ -74,7 +75,7 @@ delegates.register('change', [
74
75
  delegates.register('submit', [`form[${schema.reflexAttribute}]`])
75
76
  delegates.register('click', [`[${schema.reflexAttribute}]`])
76
77
 
77
- export default self.TurboReflex = {
78
+ self.TurboReflex = {
78
79
  logger,
79
80
  schema,
80
81
  registerEventDelegate: delegates.register,
@@ -92,3 +93,5 @@ export default self.TurboReflex = {
92
93
  return state.delta
93
94
  }
94
95
  }
96
+
97
+ export default self.TurboReflex
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TurboReflex
4
- VERSION = "0.0.28"
4
+ VERSION = "0.0.29"
5
5
  end
data/package.json CHANGED
@@ -1,23 +1,25 @@
1
1
  {
2
2
  "name": "turbo_reflex",
3
- "version": "0.0.27",
3
+ "version": "0.0.28",
4
4
  "description": "Reflexes for Turbo Frames that help you build robust reactive applications",
5
5
  "main": "app/javascript/index.js",
6
6
  "repository": "https://github.com/hopsoft/turbo_reflex",
7
7
  "author": "Nate Hopkins (hopsoft) <natehop@gmail.com>",
8
8
  "license": "MIT",
9
+ "dependencies": {
10
+ "turbo_ready": ">= 0.1.3"
11
+ },
9
12
  "peerDependencies": {
10
- "@hotwired/turbo-rails": ">= 7.1",
11
- "turbo_ready": ">= 0.1"
13
+ "@hotwired/turbo-rails": ">= 7.2.0"
12
14
  },
13
15
  "devDependencies": {
14
- "esbuild": "^0.15.7",
16
+ "esbuild": "^0.16.3",
15
17
  "eslint": "^8.19.0",
16
18
  "flowbite": "^1.5.3",
17
19
  "prettier-standard": "^16.4.1",
18
20
  "rustywind": "^0.15.1"
19
21
  },
20
22
  "scripts": {
21
- "build": "esbuild app/javascript/index.js --bundle --minify --sourcemap --format=esm --outfile=app/assets/builds/turbo_reflex.js"
23
+ "build": "esbuild app/javascript/index.js --bundle --minify --sourcemap --format=esm --target=es2017 --analyze --outfile=app/assets/builds/turbo_reflex.js"
22
24
  }
23
25
  }