@pagepocket/write-down-unit 0.12.0 → 0.13.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.
@@ -11,7 +11,7 @@ export type WriteDownUnitOptions = {
11
11
  */
12
12
  export declare class WriteDownUnit extends Unit {
13
13
  readonly id = "writeDown";
14
- readonly kind = "write.down";
14
+ readonly description = "Writing snapshot to disk";
15
15
  private options;
16
16
  constructor(options: WriteDownUnitOptions);
17
17
  run(ctx: UnitContext, rt: UnitRuntime): Promise<{
@@ -9,7 +9,7 @@ export class WriteDownUnit extends Unit {
9
9
  constructor(options) {
10
10
  super();
11
11
  this.id = "writeDown";
12
- this.kind = "write.down";
12
+ this.description = "Writing snapshot to disk";
13
13
  this.options = options;
14
14
  }
15
15
  async run(ctx, rt) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pagepocket/write-down-unit",
3
- "version": "0.12.0",
3
+ "version": "0.13.0",
4
4
  "description": "PagePocket plugin: write snapshot output to fs (raw or zip)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -11,9 +11,9 @@
11
11
  "license": "ISC",
12
12
  "dependencies": {
13
13
  "fflate": "^0.8.2",
14
- "@pagepocket/lib": "0.12.0",
15
- "@pagepocket/uni-fs": "0.12.0",
16
- "@pagepocket/contracts": "0.12.0"
14
+ "@pagepocket/lib": "0.13.0",
15
+ "@pagepocket/contracts": "0.13.0",
16
+ "@pagepocket/uni-fs": "0.13.0"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@types/node": "^20.17.12",