remove sideeffect free

This commit is contained in:
cupcakearmy 2022-05-31 15:48:14 +02:00
parent e008f4aaf0
commit 0061331ad5
No known key found for this signature in database
GPG Key ID: 3235314B4D31232F
2 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import 'bulma/css/bulma.css' import 'bulma/css/bulma.css'
import { showAvailableLists, generate } from '../' import { generate, showAvailableLists } from '../'
const input = window.document.getElementById('format') as HTMLInputElement const input = window.document.getElementById('format') as HTMLInputElement
const output = window.document.getElementById('username') as HTMLInputElement const output = window.document.getElementById('username') as HTMLInputElement

View File

@ -1,6 +1,6 @@
{ {
"name": "canihazusername", "name": "canihazusername",
"version": "2.3.1", "version": "2.3.2",
"description": "username generator. typed, simple and customizable", "description": "username generator. typed, simple and customizable",
"type": "module", "type": "module",
"main": "./dist/cjs/index.js", "main": "./dist/cjs/index.js",
@ -17,7 +17,6 @@
} }
} }
}, },
"sideEffects": false,
"files": [ "files": [
"dist" "dist"
], ],