laravel-echo
Advanced tools
Comparing version 1.5.0 to 1.5.1
{ | ||
"name": "laravel-echo", | ||
"version": "1.5.0", | ||
"version": "1.5.1", | ||
"description": "Laravel Echo library for beautiful Pusher and Socket.IO integration", | ||
"main": "dist/echo.js", | ||
"main": "dist/echo.common.js", | ||
"module": "dist/echo.js", | ||
"scripts": { | ||
@@ -7,0 +8,0 @@ "build": "npm run compile && npm run declarations", |
@@ -6,3 +6,6 @@ import typescript from 'rollup-plugin-typescript'; | ||
input: './src/echo.ts', | ||
output: [{ file: './dist/echo.js', format: 'esm' }], | ||
output: [ | ||
{ file: './dist/echo.js', format: 'esm' }, | ||
{ file: './dist/echo.common.js', format: 'cjs' }, | ||
], | ||
plugins: [ | ||
@@ -9,0 +12,0 @@ typescript(), |
111916
52
3693