From 1b7f076794c50ff832e05c39b50352d0de6f2168 Mon Sep 17 00:00:00 2001 From: Jan Henry Loewe <kontakt@jloewe.net> Date: Mon, 30 Nov 2020 16:42:36 +0100 Subject: [PATCH] Release v0.0.5 --- .eslintrc.json | 2 +- package.json | 6 +++--- src/Types/IdentificationListType.ts | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index ff46303..3d1bd95 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -4,7 +4,7 @@ "parserOptions": { "project": "./tsconfig.json" }, "env": { "es6": true }, "ignorePatterns": ["node_modules", "dist", "coverage"], - "plugins": ["import", "eslint-comments", "functional"], + "plugins": ["import", "eslint-comments"], "extends": [ "eslint:recommended", "plugin:eslint-comments/recommended", diff --git a/package.json b/package.json index ee2daca..2a14eef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@d-ptb/dcc-js", - "version": "0.0.3", + "version": "0.0.5", "author": "Jan Henry Loewe <kontakt@jloewe.net>", "main": "dist/main/index.js", "typings": "dist/main/index.d.ts", @@ -18,7 +18,7 @@ "test:prettier": "prettier \"src/**/*.ts\" --list-different", "coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" mocha -r ts-node/register tests/**/*.test.ts && nyc report", "prepare": "npm run build", - "prepublishOnly": "npm run lint", + "prepublishOnly": "npm run test", "preversion": "npm run test", "version": "git add -A .", "postversion": "git push && git push --tags" @@ -44,7 +44,7 @@ "prettier": "^2.2.0" }, "publishConfig": { - "@d-ptb:registry": "https://gitlab.com/api/v4/projects/20627932/packages/npm/" + "@d-ptb:registry": "https://gitlab1.ptb.de/api/v4/projects/105/packages/npm/" }, "files": [ "dist/main", diff --git a/src/Types/IdentificationListType.ts b/src/Types/IdentificationListType.ts index 86dcc6e..72ef620 100644 --- a/src/Types/IdentificationListType.ts +++ b/src/Types/IdentificationListType.ts @@ -1,6 +1,6 @@ -import { IdentificationType } from "./IdentificationType"; import { ensureArray } from "../Util"; import { XMLElement } from "../XMLElement"; +import { IdentificationType } from "./IdentificationType"; export class IdentificationListType extends XMLElement { identification: IdentificationType[]; -- GitLab