File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 22# Change Log
33All notable changes to this project will be documented in this file.
44
5+ ## 1.1.24 - 2021-10-01
6+ ### Fixed
7+ - Namespace regex patterns and documentation links (credit: PitPietro)
8+
59## 1.1.23 - 2021-08-29
610### Fixed
711- Automatic server registration with .ts and .mjs extensions (credit: ohashi14715369)
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ const register = {
4545 const nspFiles = await glob ( `${ nspDir } /**/*.{js,ts,mjs}` )
4646 const nspDirResolved = pResolve ( nspDir ) . replace ( / \\ / g, '/' )
4747 const namespaces = nspFiles . map (
48- ( f ) => f . split ( nspDirResolved ) [ 1 ] . split ( / .( j s | t s | m j s ) / ) [ 0 ]
48+ ( f ) => f . split ( nspDirResolved ) [ 1 ] . split ( / \ .( j s | t s | m j s ) $ / ) [ 0 ]
4949 )
5050 namespaces . forEach ( async ( namespace , idx ) => {
5151 const {
Original file line number Diff line number Diff line change 11{
22 "name" : " nuxt-socket-io" ,
3- "version" : " 1.1.23 " ,
3+ "version" : " 1.1.24 " ,
44 "description" : " Socket.io client and server module for Nuxt. Just plug it in and GO" ,
55 "author" : " Richard Schloss" ,
66 "main" : " io/module.js" ,
You can’t perform that action at this time.
0 commit comments