diff --git a/package.json b/package.json index ffe4e1a6..83033235 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bitwarden/jslib", - "version": "0.0.13", + "version": "0.0.14", "description": "Common code used across bitwarden JavaScript projects.", "keywords": [ "bitwarden" @@ -22,7 +22,8 @@ "build": "tsc && typedoc --out dist/docs --target es6 --theme minimal --mode file src", "start": "tsc -watch", "lint": "tslint src/**/*.ts || true", - "lint:fix": "tslint src/**/*.ts --fix" + "lint:fix": "tslint src/**/*.ts --fix", + "publish": "npm run build && npm publish --access public" }, "devDependencies": { "rimraf": "^2.6.2", diff --git a/src/abstractions/platformUtils.service.ts b/src/abstractions/platformUtils.service.ts index f4b29c23..7e500f68 100644 --- a/src/abstractions/platformUtils.service.ts +++ b/src/abstractions/platformUtils.service.ts @@ -1,4 +1,4 @@ -import { DeviceType } from '../enums/deviceType.enum'; +import { DeviceType } from '../enums/deviceType'; export interface PlatformUtilsService { getDevice(): DeviceType;