@serenityjs/plugins 0.8.0-beta-20250410012746 → 0.8.0-beta-20250412193217

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @serenityjs/plugins
2
2
 
3
- ## 0.8.0-beta-20250410012746
3
+ ## 0.8.0-beta-20250412193217
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -9,9 +9,9 @@
9
9
  ### Patch Changes
10
10
 
11
11
  - Updated dependencies [[`7afde6d`](https://github.com/SerenityJS/serenity/commit/7afde6d98ab6c157ae581593669cc66df78571d2)]:
12
- - @serenityjs/core@0.8.0-beta-20250410012746
13
- - @serenityjs/logger@0.8.0-beta-20250410012746
14
- - @serenityjs/protocol@0.8.0-beta-20250410012746
12
+ - @serenityjs/core@0.8.0-beta-20250412193217
13
+ - @serenityjs/logger@0.8.0-beta-20250412193217
14
+ - @serenityjs/protocol@0.8.0-beta-20250412193217
15
15
 
16
16
  ## 0.7.8
17
17
 
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  ## Introduction
2
- Plugins all developers to create server sided modifications to the base server software. SerenityJS provides a powerfull set of apis to allow full control over your server. We provide a TypeScript and JavaSample plugin template, which can be found [here](https://github.com/SerenityJS/sample-plugin).
2
+ Plugins allow developers to create server sided modifications or extensions to the base server software. SerenityJS provides a powerfull set of tools to allow full control over your server. We provide a TypeScript and JavaSample plugin template, which can be found at our [sample-plugin](https://github.com/SerenityJS/sample-plugin) repository.
3
3
 
4
4
  ## Creating a new Plugin project
5
5
  When creating a new plugin, you will need to have [NodeJS (LTS)](https://nodejs.org/en/), and [Visual Studio Code](https://code.visualstudio.com/) installed, and optionally [Rust](https://www.rust-lang.org/).
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@serenityjs/plugins",
3
3
  "author": "Serenity",
4
4
  "license": "MIT",
5
- "version": "0.8.0-beta-20250410012746",
5
+ "version": "0.8.0-beta-20250412193217",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.mjs",
8
8
  "types": "./dist/index.d.ts",
@@ -20,7 +20,7 @@
20
20
  "typecheck": "tsc --noEmit"
21
21
  },
22
22
  "devDependencies": {
23
- "@serenityjs/internal-config": "0.8.0-beta-20250410012746",
23
+ "@serenityjs/internal-config": "0.8.0-beta-20250412193217",
24
24
  "@swc/core": "1.7.42",
25
25
  "@types/node": "22.8.6",
26
26
  "eslint": "9.13.0",
@@ -29,8 +29,8 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@serenityjs/binarystream": "^2.7.0",
32
- "@serenityjs/core": "0.8.0-beta-20250410012746",
33
- "@serenityjs/logger": "0.8.0-beta-20250410012746",
34
- "@serenityjs/protocol": "0.8.0-beta-20250410012746"
32
+ "@serenityjs/core": "0.8.0-beta-20250412193217",
33
+ "@serenityjs/logger": "0.8.0-beta-20250412193217",
34
+ "@serenityjs/protocol": "0.8.0-beta-20250412193217"
35
35
  }
36
36
  }