Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kirill-konshin committed Mar 7, 2020
1 parent 9e6d5d9 commit 6c48d17
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/allure-cucumberjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"repository": "https://github.com/allure-framework/allure-js",
"main": "./dist/index.js",
"types": "./dist/types.d.ts",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist ./out",
"lint": "eslint ./src ./features ./index.ts --ext .ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-jasmine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "Ilya Korobitsyn <mail@korobochka.org>",
"repository": "https://github.com/allure-framework/allure-js",
"main": "./dist/index.js",
"types": "./dist/types.d.ts",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist ./out",
"lint": "eslint ./src ./test ./index.ts --ext .ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-jest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"author": "Stanislav Seliverstov <s.seliverstov@gmail.com>",
"repository": "https://github.com/allure-framework/allure-js",
"main": "./dist/index.js",
"types": "./dist/types.d.ts",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist ./out",
"lint": "eslint ./test --ext .ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-js-commons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "Ilya Korobitsyn <mail@korobochka.org>",
"repository": "https://github.com/allure-framework/allure-js",
"main": "./dist/index.js",
"types": "./dist/types.d.ts",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"lint": "eslint ./src ./index.ts --ext .ts",
Expand Down
1 change: 0 additions & 1 deletion packages/allure-js-commons/src/writers/AllureWriter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { existsSync, writeFileSync } from "fs";
import { Category, TestResult, TestResultContainer } from "../model";
import { IAllureWriter } from "./IAllureWriter";
import { IAllureConfig } from "../AllureConfig";
// @ts-ignore
import { stringify } from "properties";

function writeJson(path: string, data: object) {
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-mocha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"allure"
],
"main": "./dist/index.js",
"types": "./dist/types.d.ts",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist ./out",
"compile": "tsc",
Expand Down
1 change: 0 additions & 1 deletion packages/allure-mocha/test/utils/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import jetpack = require("fs-jetpack");
import * as path from "path";
import Mocha from "mocha";
// @ts-ignore
import MochaAllureReporter from "../..";
import { InMemoryAllureWriter, TestResult } from "allure-js-commons";

Expand Down

0 comments on commit 6c48d17

Please sign in to comment.