@playwright-labs/fixture-allure 1.0.0 → 1.0.2

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/CHANGELOG.md +13 -0
  2. package/package.json +18 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,13 @@
1
+ # @playwright-labs/fixture-allure
2
+
3
+ ## 1.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - f352079: add `exports` in package.json file
8
+
9
+ ## 1.0.1
10
+
11
+ ### Patch Changes
12
+
13
+ - b51d4af: update keywords for npmjs
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@playwright-labs/fixture-allure",
3
- "version": "1.0.0",
4
- "description": "",
3
+ "version": "1.0.2",
4
+ "description": "Allure fixture for Playwright",
5
5
  "main": "dist/index.cjs",
6
6
  "types": "dist/index.d.ts",
7
7
  "type": "module",
@@ -9,10 +9,25 @@
9
9
  "playwright",
10
10
  "fixture",
11
11
  "allure",
12
- "automation"
12
+ "automation",
13
+ "testing",
14
+ "fixture",
15
+ "playwright-labs"
13
16
  ],
14
17
  "author": "Vitali Haradkou <vitalicset@yandex.ru>",
15
18
  "license": "MIT",
19
+ "exports": {
20
+ ".": {
21
+ "import": {
22
+ "types": "./dist/index.d.mts",
23
+ "default": "./dist/index.mjs"
24
+ },
25
+ "require": {
26
+ "types": "./dist/index.d.ts",
27
+ "default": "./dist/index.cjs"
28
+ }
29
+ }
30
+ },
16
31
  "devDependencies": {
17
32
  "@playwright/test": "1.57.0",
18
33
  "allure-js-commons": "3.4.5"