@rails/actioncable 8.0.300 → 8.1.0-rc1
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.
- package/package.json +5 -3
- package/src/index.js +3 -3
- package/src/subscriptions.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rails/actioncable",
|
|
3
|
-
"version": "8.0
|
|
3
|
+
"version": "8.1.0-rc1",
|
|
4
4
|
"description": "WebSocket framework for Ruby on Rails.",
|
|
5
5
|
"module": "app/assets/javascripts/actioncable.esm.js",
|
|
6
6
|
"main": "app/assets/javascripts/actioncable.js",
|
|
@@ -24,10 +24,12 @@
|
|
|
24
24
|
},
|
|
25
25
|
"homepage": "https://rubyonrails.org/",
|
|
26
26
|
"devDependencies": {
|
|
27
|
+
"@eslint/js": "^9.24.0",
|
|
27
28
|
"@rollup/plugin-commonjs": "^19.0.1",
|
|
28
29
|
"@rollup/plugin-node-resolve": "^11.0.1",
|
|
29
|
-
"eslint": "^
|
|
30
|
-
"eslint-plugin-import": "^2.
|
|
30
|
+
"eslint": "^9.24.0",
|
|
31
|
+
"eslint-plugin-import": "^2.31.0",
|
|
32
|
+
"globals": "^14.0.0",
|
|
31
33
|
"karma": "^6.4.2",
|
|
32
34
|
"karma-chrome-launcher": "^2.2.0",
|
|
33
35
|
"karma-qunit": "^2.1.0",
|
package/src/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import adapters from "./adapters"
|
|
1
2
|
import Connection from "./connection"
|
|
2
3
|
import ConnectionMonitor from "./connection_monitor"
|
|
3
4
|
import Consumer, { createWebSocketURL } from "./consumer"
|
|
4
5
|
import INTERNAL from "./internal"
|
|
6
|
+
import logger from "./logger"
|
|
5
7
|
import Subscription from "./subscription"
|
|
6
|
-
import Subscriptions from "./subscriptions"
|
|
7
8
|
import SubscriptionGuarantor from "./subscription_guarantor"
|
|
8
|
-
import
|
|
9
|
-
import logger from "./logger"
|
|
9
|
+
import Subscriptions from "./subscriptions"
|
|
10
10
|
|
|
11
11
|
export {
|
|
12
12
|
Connection,
|
package/src/subscriptions.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import logger from "./logger"
|
|
1
2
|
import Subscription from "./subscription"
|
|
2
3
|
import SubscriptionGuarantor from "./subscription_guarantor"
|
|
3
|
-
import logger from "./logger"
|
|
4
4
|
|
|
5
5
|
// Collection class for creating (and internally managing) channel subscriptions.
|
|
6
6
|
// The only method intended to be triggered by the user is ActionCable.Subscriptions#create,
|