1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02:00

new script for publishing

This commit is contained in:
Kyle Spearrin 2018-01-06 22:19:10 -05:00
parent 2b4cd3fba7
commit 66aa1a783d
2 changed files with 4 additions and 3 deletions

View File

@ -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",

View File

@ -1,4 +1,4 @@
import { DeviceType } from '../enums/deviceType.enum';
import { DeviceType } from '../enums/deviceType';
export interface PlatformUtilsService {
getDevice(): DeviceType;