Skip to content

Commit

Permalink
Merge pull request #235 from richardeschloss/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
richardeschloss authored Oct 1, 2021
2 parents 71b1498 + c4930c7 commit 0a7977f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
# Change Log
All notable changes to this project will be documented in this file.

## 1.1.24 - 2021-10-01
### Fixed
- Namespace regex patterns and documentation links (credit: PitPietro)

## 1.1.23 - 2021-08-29
### Fixed
- Automatic server registration with .ts and .mjs extensions (credit: ohashi14715369)
Expand Down
2 changes: 1 addition & 1 deletion io/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const register = {
const nspFiles = await glob(`${nspDir}/**/*.{js,ts,mjs}`)
const nspDirResolved = pResolve(nspDir).replace(/\\/g, '/')
const namespaces = nspFiles.map(
(f) => f.split(nspDirResolved)[1].split(/.(js|ts|mjs)/)[0]
(f) => f.split(nspDirResolved)[1].split(/\.(js|ts|mjs)$/)[0]
)
namespaces.forEach(async (namespace, idx) => {
const {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nuxt-socket-io",
"version": "1.1.23",
"version": "1.1.24",
"description": "Socket.io client and server module for Nuxt. Just plug it in and GO",
"author": "Richard Schloss",
"main": "io/module.js",
Expand Down

0 comments on commit 0a7977f

Please sign in to comment.