Fix export.

This commit is contained in:
Peter Kaske 2022-04-22 12:34:33 +02:00
parent 3a552c5de9
commit 654a92213d
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ This program is available under Apache License Version 2.0
* So, if for example your route is /user/settings you need to split * So, if for example your route is /user/settings you need to split
* the path to [ 'user', 'settings' ] and feed it to the _lazyImport function. * the path to [ 'user', 'settings' ] and feed it to the _lazyImport function.
*/ */
export default class { export const LazyImports = class {
constructor(lazyMap) { constructor(lazyMap) {
this.lazyMap = lazyMap; this.lazyMap = lazyMap;
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@tp/helpers", "name": "@tp/helpers",
"version": "1.1.1", "version": "1.1.2",
"description": "", "description": "",
"main": "closest.js", "main": "closest.js",
"scripts": { "scripts": {