@allurereport/plugin-slack 3.0.0-beta.9 → 3.0.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.
package/dist/index.d.ts CHANGED
@@ -1,2 +1 @@
1
- import { SlackPlugin } from "./plugin.js";
2
- export default SlackPlugin;
1
+ export { SlackPlugin as default, type SlackPluginOptions } from "./plugin.js";
package/dist/index.js CHANGED
@@ -1,2 +1 @@
1
- import { SlackPlugin } from "./plugin.js";
2
- export default SlackPlugin;
1
+ export { SlackPlugin as default } from "./plugin.js";
package/dist/plugin.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type { AllureStore, Plugin, PluginContext } from "@allurereport/plugin-api";
2
- interface SlackPluginOptions {
2
+ export interface SlackPluginOptions {
3
3
  channel?: string;
4
4
  token?: string;
5
5
  }
@@ -8,4 +8,3 @@ export declare class SlackPlugin implements Plugin {
8
8
  constructor(options?: SlackPluginOptions);
9
9
  done: (context: PluginContext, store: AllureStore) => Promise<void>;
10
10
  }
11
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allurereport/plugin-slack",
3
- "version": "3.0.0-beta.9",
3
+ "version": "3.0.0",
4
4
  "description": "Allure Plugin to Report results to Slack",
5
5
  "keywords": [
6
6
  "allure",
@@ -30,8 +30,8 @@
30
30
  "test": "rimraf ./out && vitest run"
31
31
  },
32
32
  "dependencies": {
33
- "@allurereport/core-api": "3.0.0-beta.9",
34
- "@allurereport/plugin-api": "3.0.0-beta.9"
33
+ "@allurereport/core-api": "3.0.0",
34
+ "@allurereport/plugin-api": "3.0.0"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@stylistic/eslint-plugin": "^2.6.1",
@@ -39,8 +39,8 @@
39
39
  "@types/node": "^20.17.9",
40
40
  "@typescript-eslint/eslint-plugin": "^8.0.0",
41
41
  "@typescript-eslint/parser": "^8.0.0",
42
- "@vitest/runner": "^2.1.8",
43
- "allure-vitest": "^3.0.9",
42
+ "@vitest/runner": "^2.1.9",
43
+ "allure-vitest": "^3.3.3",
44
44
  "eslint": "^8.57.0",
45
45
  "eslint-config-prettier": "^9.1.0",
46
46
  "eslint-plugin-import": "^2.29.1",
@@ -50,6 +50,6 @@
50
50
  "eslint-plugin-prefer-arrow": "^1.2.3",
51
51
  "rimraf": "^6.0.1",
52
52
  "typescript": "^5.6.3",
53
- "vitest": "^2.1.8"
53
+ "vitest": "^2.1.9"
54
54
  }
55
55
  }