@allurereport/plugin-log 3.3.1 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/utils.js +1 -1
  2. package/package.json +17 -28
package/dist/utils.js CHANGED
@@ -1,5 +1,5 @@
1
- import { isStep } from "@allurereport/core-api";
2
1
  import console from "node:console";
2
+ import { isStep } from "@allurereport/core-api";
3
3
  import { gray, green, red, yellow } from "yoctocolors";
4
4
  export const isFailedResult = (result) => {
5
5
  if ("status" in result) {
package/package.json CHANGED
@@ -1,56 +1,45 @@
1
1
  {
2
2
  "name": "@allurereport/plugin-log",
3
- "version": "3.3.1",
3
+ "version": "3.4.0",
4
4
  "description": "Allure Plugin to write report in stdout",
5
5
  "keywords": [
6
6
  "allure",
7
- "testing",
8
- "report",
9
- "plugin",
10
7
  "cli",
11
- "stdout"
8
+ "plugin",
9
+ "report",
10
+ "stdout",
11
+ "testing"
12
12
  ],
13
- "repository": "https://github.com/allure-framework/allure3",
14
13
  "license": "Apache-2.0",
15
14
  "author": "Qameta Software",
15
+ "repository": "https://github.com/allure-framework/allure3",
16
+ "files": [
17
+ "./dist"
18
+ ],
16
19
  "type": "module",
17
- "exports": {
18
- ".": "./dist/index.js"
19
- },
20
20
  "main": "./dist/index.js",
21
21
  "module": "./dist/index.js",
22
22
  "types": "./dist/index.d.ts",
23
- "files": [
24
- "./dist"
25
- ],
23
+ "exports": {
24
+ ".": "./dist/index.js"
25
+ },
26
26
  "scripts": {
27
27
  "build": "run clean && tsc --project ./tsconfig.json",
28
28
  "clean": "rimraf ./dist",
29
- "eslint": "eslint ./src/**/*.{js,jsx,ts,tsx}",
30
- "eslint:format": "eslint --fix ./src/**/*.{js,jsx,ts,tsx}",
31
- "test": "rimraf ./out && vitest run"
29
+ "test": "rimraf ./out && vitest run",
30
+ "lint": "oxlint --import-plugin src test features stories",
31
+ "lint:fix": "oxlint --import-plugin --fix src test features stories"
32
32
  },
33
33
  "dependencies": {
34
- "@allurereport/core-api": "3.3.1",
35
- "@allurereport/plugin-api": "3.3.1",
34
+ "@allurereport/core-api": "3.4.0",
35
+ "@allurereport/plugin-api": "3.4.0",
36
36
  "yoctocolors": "^2.1.1"
37
37
  },
38
38
  "devDependencies": {
39
- "@stylistic/eslint-plugin": "^2.6.1",
40
- "@types/eslint": "^8.56.11",
41
39
  "@types/node": "^20.17.9",
42
- "@typescript-eslint/eslint-plugin": "^8.0.0",
43
- "@typescript-eslint/parser": "^8.0.0",
44
40
  "@vitest/runner": "^2.1.9",
45
41
  "@vitest/snapshot": "^2.1.9",
46
42
  "allure-vitest": "^3.3.3",
47
- "eslint": "^8.57.0",
48
- "eslint-config-prettier": "^9.1.0",
49
- "eslint-plugin-import": "^2.29.1",
50
- "eslint-plugin-jsdoc": "^50.0.0",
51
- "eslint-plugin-n": "^17.10.1",
52
- "eslint-plugin-no-null": "^1.0.2",
53
- "eslint-plugin-prefer-arrow": "^1.2.3",
54
43
  "rimraf": "^6.0.1",
55
44
  "typescript": "^5.6.3",
56
45
  "vitest": "^2.1.9"